mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Add Async/Sync functions to post lambda on model thread. Fix missing defines on headers. Move Login c++ logic into core for MVVM. Write async login. Auto core iterate (30ms). Clean exit by stopping core before deletion.
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2010-2024 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone-desktop
|
|
* (see https://www.linphone.org).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef CORE_MODEL_H_
|
|
#define CORE_MODEL_H_
|
|
|
|
#include <QObject>
|
|
#include <QSharedPointer>
|
|
#include <QString>
|
|
#include <QThread>
|
|
#include <QTimer>
|
|
#include <linphone++/linphone.hh>
|
|
|
|
#include "model/logger/LoggerModel.hpp"
|
|
|
|
// =============================================================================
|
|
|
|
class CoreModel : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
CoreModel(const QString &configPath, QThread * parent);
|
|
~CoreModel();
|
|
static QSharedPointer<CoreModel> create(const QString &configPath, QThread * parent);
|
|
static QSharedPointer<CoreModel> getInstance();
|
|
|
|
std::shared_ptr<linphone::Core> getCore();
|
|
|
|
void start();
|
|
void setConfigPath(QString path);
|
|
|
|
|
|
bool mEnd = false;
|
|
|
|
std::shared_ptr<linphone::Core> mCore;
|
|
std::shared_ptr<LoggerModel> mLogger;
|
|
|
|
signals:
|
|
void loggerInitialized();
|
|
private:
|
|
QString mConfigPath;
|
|
QTimer *mIterateTimer = nullptr;
|
|
|
|
void setPathBeforeCreation();
|
|
void setPathsAfterCreation();
|
|
void setPathAfterStart();
|
|
|
|
static QSharedPointer<CoreModel> gCoreModel;
|
|
};
|
|
|
|
#endif
|