Fix invalid licenses
[platform/framework/web/crosswalk-tizen.git] / src / common / dbus_client.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16
17 #ifndef WRT_COMMON_DBUS_CLIENT_H_
18 #define WRT_COMMON_DBUS_CLIENT_H_
19
20 #include <glib.h>
21 #include <gio/gio.h>
22
23 #include <string>
24 #include <functional>
25 #include <map>
26
27 namespace wrt {
28
29 class DBusClient {
30  public:
31   typedef std::function<void(const std::string& signal,
32                              GVariant* parameters)> SignalCallback;
33
34   DBusClient();
35   virtual ~DBusClient();
36
37   bool Connect(const std::string& address);
38   bool ConnectByName(const std::string& name);
39
40   GVariant* Call(const std::string& iface, const std::string& method,
41                  GVariant* parameters, const GVariantType* reply_type);
42
43   void SetSignalCallback(const std::string& iface, SignalCallback func);
44   SignalCallback GetSignalCallback(const std::string& iface);
45
46  private:
47   GDBusConnection* connection_;
48   guint signal_subscription_id_;
49   std::map<std::string, SignalCallback> signal_callbacks_;
50 };
51
52 }  // namespace wrt
53
54 #endif  // WRT_COMMON_DBUS_CLIENT_H_