linphone-desktop/src/components/core/CoreManager.hpp
2018-01-26 15:59:54 +01:00

179 lines
4.9 KiB
C++

/*
* CoreManager.hpp
* Copyright (C) 2017-2018 Belledonne Communications, Grenoble, France
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Created on: February 2, 2017
* Author: Ronan Abhamon
*/
#ifndef CORE_MANAGER_H_
#define CORE_MANAGER_H_
#include <QFutureWatcher>
#include "../calls/CallsListModel.hpp"
#include "../chat/ChatModel.hpp"
#include "../contacts/ContactsListModel.hpp"
#include "../settings/AccountSettingsModel.hpp"
#include "../settings/SettingsModel.hpp"
#include "../sip-addresses/SipAddressesModel.hpp"
#include "CoreHandlers.hpp"
// =============================================================================
class QTimer;
class CoreManager : public QObject {
Q_OBJECT;
Q_PROPERTY(QString version READ getVersion CONSTANT);
Q_PROPERTY(QString downloadUrl READ getDownloadUrl CONSTANT);
public:
~CoreManager () = default;
bool started () const {
return mStarted;
}
std::shared_ptr<linphone::Core> getCore () {
Q_CHECK_PTR(mCore);
return mCore;
}
std::shared_ptr<CoreHandlers> getHandlers () {
Q_CHECK_PTR(mHandlers);
return mHandlers;
}
std::shared_ptr<ChatModel> getChatModelFromSipAddress (const QString &sipAddress);
// ---------------------------------------------------------------------------
// Video render lock.
// ---------------------------------------------------------------------------
void lockVideoRender () {
mMutexVideoRender.lock();
}
void unlockVideoRender () {
mMutexVideoRender.unlock();
}
// ---------------------------------------------------------------------------
// Singleton models.
// ---------------------------------------------------------------------------
CallsListModel *getCallsListModel () const {
Q_CHECK_PTR(mCallsListModel);
return mCallsListModel;
}
ContactsListModel *getContactsListModel () const {
Q_CHECK_PTR(mContactsListModel);
return mContactsListModel;
}
SipAddressesModel *getSipAddressesModel () const {
Q_CHECK_PTR(mSipAddressesModel);
return mSipAddressesModel;
}
SettingsModel *getSettingsModel () const {
Q_CHECK_PTR(mSettingsModel);
return mSettingsModel;
}
AccountSettingsModel *getAccountSettingsModel () const {
Q_CHECK_PTR(mAccountSettingsModel);
return mAccountSettingsModel;
}
// ---------------------------------------------------------------------------
// Initialization.
// ---------------------------------------------------------------------------
static void init (QObject *parent, const QString &configPath);
static void uninit ();
static CoreManager *getInstance () {
Q_CHECK_PTR(mInstance);
return mInstance;
}
// ---------------------------------------------------------------------------
// Must be used in a qml scene.
// Warning: The ownership of `VcardModel` is `QQmlEngine::JavaScriptOwnership` by default.
Q_INVOKABLE VcardModel *createDetachedVcardModel () const;
Q_INVOKABLE void forceRefreshRegisters ();
Q_INVOKABLE void sendLogs () const;
Q_INVOKABLE void cleanLogs () const;
signals:
void coreCreated ();
void coreStarted ();
void chatModelCreated (const std::shared_ptr<ChatModel> &chatModel);
void logsUploaded (const QString &url);
private:
CoreManager (QObject *parent, const QString &configPath);
void setDatabasesPaths ();
void setOtherPaths ();
void setResourcesPaths ();
void createLinphoneCore (const QString &configPath);
void migrate ();
QString getVersion () const;
void iterate ();
void handleLogsUploadStateChanged (linphone::CoreLogCollectionUploadState state, const std::string &info);
static QString getDownloadUrl ();
std::shared_ptr<linphone::Core> mCore;
std::shared_ptr<CoreHandlers> mHandlers;
bool mStarted = false;
CallsListModel *mCallsListModel = nullptr;
ContactsListModel *mContactsListModel = nullptr;
SipAddressesModel *mSipAddressesModel = nullptr;
SettingsModel *mSettingsModel = nullptr;
AccountSettingsModel *mAccountSettingsModel = nullptr;
QHash<QString, std::weak_ptr<ChatModel> > mChatModels;
QTimer *mCbsTimer = nullptr;
QFuture<void> mPromiseBuild;
QFutureWatcher<void> mPromiseWatcher;
QMutex mMutexVideoRender;
static CoreManager *mInstance;
};
#endif // CORE_MANAGER_H_