mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
135 lines
4.4 KiB
C++
135 lines
4.4 KiB
C++
/*
|
|
* core.h
|
|
* Copyright (C) 2010-2018 Belledonne Communications SARL
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _L_CORE_H_
|
|
#define _L_CORE_H_
|
|
|
|
#include <list>
|
|
|
|
#include "object/object.h"
|
|
|
|
#include "linphone/types.h"
|
|
|
|
// =============================================================================
|
|
|
|
L_DECL_C_STRUCT(LinphoneCore);
|
|
|
|
LINPHONE_BEGIN_NAMESPACE
|
|
|
|
class Address;
|
|
class Call;
|
|
class ChatRoomId;
|
|
class CorePrivate;
|
|
class IdentityAddress;
|
|
class AbstractChatRoom;
|
|
|
|
class LINPHONE_PUBLIC Core : public Object {
|
|
friend class BasicToClientGroupChatRoom;
|
|
friend class BasicToClientGroupChatRoomPrivate;
|
|
friend class CallPrivate;
|
|
friend class CallSession;
|
|
friend class ChatMessagePrivate;
|
|
friend class ChatRoom;
|
|
friend class ChatRoomPrivate;
|
|
friend class ClientGroupChatRoom;
|
|
friend class ClientGroupChatRoomPrivate;
|
|
friend class ClientGroupToBasicChatRoomPrivate;
|
|
friend class LocalConferenceEventHandlerPrivate;
|
|
friend class MainDb;
|
|
friend class MainDbChatMessageKey;
|
|
friend class MainDbEventKey;
|
|
friend class MediaSessionPrivate;
|
|
friend class RemoteConferenceEventHandler;
|
|
friend class ServerGroupChatRoom;
|
|
friend class ServerGroupChatRoomPrivate;
|
|
|
|
public:
|
|
L_OVERRIDE_SHARED_FROM_THIS(Core);
|
|
|
|
~Core ();
|
|
|
|
// Return a new Core instance. Entry point of Linphone.
|
|
static std::shared_ptr<Core> create (LinphoneCore *cCore);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// C-Core.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// TODO: Remove me later.
|
|
LinphoneCore *getCCore () const;
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Call.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
bool areSoundResourcesLocked () const;
|
|
std::shared_ptr<Call> getCallByRemoteAddress (const Address &addr) const;
|
|
const std::list<std::shared_ptr<Call>> &getCalls () const;
|
|
unsigned int getCallCount () const;
|
|
std::shared_ptr<Call> getCurrentCall () const;
|
|
LinphoneStatus pauseAllCalls ();
|
|
void soundcardHintCheck ();
|
|
LinphoneStatus terminateAllCalls ();
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// ChatRoom.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
const std::list<std::shared_ptr<AbstractChatRoom>> &getChatRooms () const;
|
|
|
|
std::shared_ptr<AbstractChatRoom> findChatRoom (const ChatRoomId &chatRoomId) const;
|
|
std::list<std::shared_ptr<AbstractChatRoom>> findChatRooms (const IdentityAddress &peerAddress) const;
|
|
|
|
std::shared_ptr<AbstractChatRoom> findOneToOneChatRoom (
|
|
const IdentityAddress &localAddress,
|
|
const IdentityAddress &participantAddress
|
|
) const;
|
|
|
|
std::shared_ptr<AbstractChatRoom> createClientGroupChatRoom (const std::string &subject);
|
|
std::shared_ptr<AbstractChatRoom> createClientGroupChatRoom (
|
|
const std::string &subject,
|
|
const IdentityAddress &localAddress
|
|
);
|
|
|
|
std::shared_ptr<AbstractChatRoom> getOrCreateBasicChatRoom (const ChatRoomId &chatRoomId, bool isRtt = false);
|
|
|
|
// TODO: Remove me in the future, a chatroom is identified by a local and peer address now!
|
|
std::shared_ptr<AbstractChatRoom> getOrCreateBasicChatRoom (const IdentityAddress &peerAddress, bool isRtt = false);
|
|
|
|
std::shared_ptr<AbstractChatRoom> getOrCreateBasicChatRoomFromUri (const std::string &uri, bool isRtt = false);
|
|
|
|
static void deleteChatRoom (const std::shared_ptr<const AbstractChatRoom> &chatRoom);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Paths.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
std::string getDataPath() const;
|
|
std::string getConfigPath() const;
|
|
|
|
private:
|
|
Core ();
|
|
|
|
L_DECLARE_PRIVATE(Core);
|
|
L_DISABLE_COPY(Core);
|
|
};
|
|
|
|
LINPHONE_END_NAMESPACE
|
|
|
|
#endif // ifndef _L_CORE_H_
|