Files
jami-daemon/bin/dbus/dbusclient.h
AGS5 b7d4ab38d0 plugin: add plugin to dbus interface
Change-Id: I0bdffd53e9ba9463e3daacbc0641ab82e1ba89dd
2020-06-05 10:17:10 -04:00

72 lines
2.2 KiB
C++

/*
* Copyright (C) 2004-2020 Savoir-faire Linux Inc.
*
* Author: Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
* Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
#include "dring/def.h"
#include <memory>
class DBusConfigurationManager;
class DBusCallManager;
class DBusNetworkManager;
class DBusInstance;
class DBusPresenceManager;
class DBusPluginManagerInterface;
#ifdef ENABLE_VIDEO
class DBusVideoManager;
#endif
namespace DBus {
class BusDispatcher;
class DefaultTimeout;
}
class DRING_PUBLIC DBusClient {
public:
DBusClient(int flags, bool persistent);
~DBusClient();
int event_loop() noexcept;
int exit() noexcept;
private:
int initLibrary(int flags);
void finiLibrary() noexcept;
std::unique_ptr<DBus::BusDispatcher> dispatcher_;
std::unique_ptr<DBus::DefaultTimeout> timeout_;
std::unique_ptr<DBusCallManager> callManager_;
std::unique_ptr<DBusConfigurationManager> configurationManager_;
std::unique_ptr<DBusPresenceManager> presenceManager_;
std::unique_ptr<DBusInstance> instanceManager_;
std::unique_ptr<DBusPluginManagerInterface> pluginManagerInterface_;
#ifdef ENABLE_VIDEO
std::unique_ptr<DBusVideoManager> videoManager_;
#endif
};