1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/*
* Copyright © 2013 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3,
* as published by the Free Software Foundation.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Thomas Voß <thomas.voss@canonical.com>
*/
#include <core/dbus/bus.h>
#include <core/dbus/object.h>
#include <core/dbus/service.h>
#include <core/dbus/signal.h>
#include <core/dbus/asio/executor.h>
#include <core/dbus/types/stl/tuple.h>
#include <core/dbus/types/stl/vector.h>
#include <core/dbus/types/struct.h>
#include <sys/types.h>
#include <signal.h>
namespace dbus = core::dbus;
namespace
{
dbus::Bus::Ptr the_session_bus()
{
static dbus::Bus::Ptr session_bus = std::make_shared<dbus::Bus>(dbus::WellKnownBus::session);
return session_bus;
}
}
namespace org
{
namespace ofono
{
struct MessageManager
{
struct Signals
{
struct IncomingMessage
{
static std::string name()
{
return "IncomingMessage";
};
typedef MessageManager Interface;
typedef std::tuple<std::string, std::map<std::string, dbus::types::Variant>> ArgumentType;
};
};
};
struct VoiceCallManager
{
struct Signals
{
struct CallAdded
{
static std::string name()
{
return "CallAdded";
};
typedef VoiceCallManager Interface;
typedef std::tuple<dbus::types::ObjectPath, std::map<std::string, dbus::types::Variant>> ArgumentType;
};
};
};
}
}
namespace core { namespace dbus { namespace traits {
template<>
struct Service<org::ofono::MessageManager>
{
static std::string interface_name() { return "org.ofono.MessageManager"; }
};
template<>
struct Service<org::ofono::VoiceCallManager>
{
static std::string interface_name() { return "org.ofono.VoiceCallManager"; }
};
}}}
int main(int, char**)
{
auto bus = the_session_bus();
bus->install_executor(core::dbus::asio::make_executor(bus));
std::thread t {std::bind(&dbus::Bus::run, bus)};
auto ofono = dbus::Service::use_service(bus, "org.ofono");
auto obj = ofono->object_for_path(dbus::types::ObjectPath("/org/ofono"));
/*auto incoming_message_signal = obj->get_signal<org::ofono::MessageManager::Signals::IncomingMessage>();
incoming_message_signal->connect([](const std::tuple<std::string, std::map<std::string, dbus::types::Variant<dbus::types::Any>>>& arg)
{
std::cout << "Incoming message: " << std::get<0>(arg) << std::endl;
});
auto call_added_signal = obj->get_signal<org::ofono::VoiceCallManager::Signals::CallAdded>();
call_added_signal->connect([](const std::tuple<dbus::types::ObjectPath, std::map<std::string, dbus::types::Variant<dbus::types::Any>>>& arg)
{
std::cout << "Call added: " << std::get<0>(arg) << std::endl;
});*/
sigset_t signal_set;
sigemptyset(&signal_set);
sigaddset(&signal_set, SIGINT);
int signal;
sigwait(&signal_set, &signal);
if (t.joinable())
t.join();
return EXIT_SUCCESS;
}
|