/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * Version: MPL 1.1 / GPLv3+ / LGPLv3+ * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License or as specified alternatively below. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * Major Contributor(s): * Copyright (C) 2012 Red Hat, Inc., Eike Rathke * * All Rights Reserved. * * For minor contributions see the git repository. * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 3 or later (the "GPLv3+"), or * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable * instead of those above. */ #ifndef INCLUDED_TUBES_MANAGER_HXX #define INCLUDED_TUBES_MANAGER_HXX #include #include #include #include #include // For testing purposes, we might need more in future. #define LIBO_TUBES_DBUS_INTERFACE "org.libreoffice.calc" #define LIBO_TUBES_DBUS_MSG_METHOD "LibOMsg" #define LIBO_TUBES_DBUS_PATH "/org/libreoffice/calc" namespace osl { class Mutex; } class Collaboration; class TeleConference; class TeleManagerImpl; typedef struct _TpAccount TpAccount; typedef struct _TpContact TpContact; typedef ::std::pair< TpAccount *, TpContact * > AccountContactPair; typedef ::std::vector< AccountContactPair > AccountContactPairV; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /** Interface to Telepathy DBus Tubes. Fragile, not working yet. Accounts need to have been setup within Empathy already. */ class TeleManager { TeleManager(); ~TeleManager(); public: /** Prepare tube manager with account and service to be offered/listened to. */ TUBES_DLLPUBLIC static bool init( bool bListen ); TUBES_DLLPUBLIC static void finalize(); /** True if there has been tube channel received and is still not used. */ TUBES_DLLPUBLIC static bool hasWaitingConference(); /** Get a conference with current UUID to set a session. */ TUBES_DLLPUBLIC static TeleConference* getConference(); /** Connect to DBus, create and prepare the Telepathy Account Manager. */ static bool createAccountManager(); /** Setup client handlers. */ static bool registerClients(); /** Fetches the contact list. Is non-functional until createAccountManager(). */ // exported for unit test TUBES_DLLPUBLIC static AccountContactPairV getContacts(); /** Start a demo session where all local documents are shared to each other */ static TeleConference* startDemoSession(); /** Start a group session in a MUC. @param pAccount The account to use. This must be a valid Jabber account. @param rConferenceRoom The MUC to be created/joined, e.g. "LibreOffice". If empty, the conference's UUID is used. @param rConferenceServer Server to create the MUC on, e.g. "conference.example.org". If empty, only the conference's UUID is used and rConferenceRoom is ignored, hopefully resulting in a local DBus tube. */ static TeleConference* startGroupSession( TpAccount *pAccount, const rtl::OUString& rConferenceRoom, const rtl::OUString& rConferenceServer ); /** Start a session with a buddy. @param pAccount The account to use. This must be a valid Jabber account. @param pBuddy The buddy to be connected. Must be a contact of pAccount. */ // exported for unit test TUBES_DLLPUBLIC static TeleConference* startBuddySession( TpAccount *pAccount, TpContact *pBuddy ); static void registerCollaboration( Collaboration* pCollaboration ); static void unregisterCollaboration( Collaboration* pCollaboration ); static bool existsCollaboration( Collaboration* pCollaboration ); /** Display contact list dialog for all documents. */ static void displayAllContacts(); static void registerDemoConference( TeleConference* pConference ); static void unregisterDemoConference( TeleConference* pConference ); /** Broadcast packet to all conferences. Used for demo mode. */ static void broadcastPacket( const OString& rPacket ); static void setCurrentUuid( const OString& rUuid ); static rtl::OString createUuid(); // Only for callbacks. static void addConference( TeleConference* pConference ); /// "LibreOfficeWhatEver" static rtl::OString getFullClientName(); /// "org.libreoffice.calcWhatEver" static rtl::OString getFullServiceName(); /// "/org/libreoffice/calcWhatEver" static rtl::OString getFullObjectPath(); /** Add a suffix to the client name and DBus tube names, e.g. "WhatEver" Normally the client name is LibreOffice and the DBus tube service name is something like org.libreoffice.calc, this modifies the names to "LibreOffice"+pName and "org.libreoffice.calc"+pName to make tests not interfere with the real world. This is not to be used otherwise. If used it must be called before the first TeleManager is instanciated and connects. */ // exported for unit test TUBES_DLLPUBLIC static void addSuffixToNames( const char* pName ); private: static TeleManagerImpl* pImpl; static ::osl::Mutex& GetMutex(); }; #endif // INCLUDED_TUBES_MANAGER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */