daemon initial implementation
[platform/core/appfw/message-port-dbus.git] / daemon / dbus-service.h
1 /* vi: set et sw=4 ts=4 cino=t0,(0: */
2 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 /*
4  * Copyright (C) 2013 Intel Corporation.
5  *
6  * Contact: Amarnath Valluri <amarnath.valluri@linux.intel.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23
24 #ifndef _MSGPORT_DBUS_SERVICE_H
25 #define _MSGPORT_DBUS_SERVICE_H
26
27 #include <glib.h>
28 #include <gio/gio.h>
29 #include <glib-object.h>
30 #include "service.h"
31 #include "dbus-manager.h"
32
33 G_BEGIN_DECLS
34
35 #define MSGPORT_TYPE_DBUS_SERVICE (msgport_dbus_service_get_type())
36 #define MSGPORT_DBUS_SERVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), MSGPORT_TYPE_DBUS_SERVICE, MsgPortDbusService))
37 #define MSGPORT_DBUS_SERVICE_CLASS(obj)  (G_TYPE_CHECK_CLASS_CAST((kls), MSGPORT_TYPE_DBUS_SERVICE, MsgPortDbusServiceClass))
38 #define MSGPORT_IS_DBUS_SERVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), MSGPORT_TYPE_DBUS_SERVICE))
39 #define MSGPORT_IS_DBUS_SERVICE_CLASS(kls) (G_TYPE_CHECK_CLASS_TYPE((kls), MSGPORT_TYPE_DBUS_SERVICE))
40
41 typedef struct _MsgPortDbusService MsgPortDbusService;
42 typedef struct _MsgPortDbusServiceClass MsgPortDbusServiceClass;
43 typedef struct _MsgPortDbusServicePrivate MsgPortDbusServicePrivate;
44
45 struct _MsgPortDbusService
46 {
47     GObject parent;
48
49     /* private */
50     MsgPortDbusServicePrivate *priv;
51 };
52
53 struct _MsgPortDbusServiceClass
54 {
55     GObjectClass parenet_class;
56 };
57
58 GType msgport_dbus_service_get_type (void);
59
60 MsgPortDbusService *
61 msgport_dbus_service_new (MsgPortDbusManager *owner, const gchar *name, gboolean is_trusted);
62
63 const gchar *
64 msgport_dbus_service_get_object_path (MsgPortDbusService *dbus_service);
65
66 GDBusConnection *
67 msgport_dbus_service_get_connection (MsgPortDbusService *dbus_service);
68
69 MsgPortService *
70 msgport_dbus_service_get_service (MsgPortDbusService *dbus_service);
71
72 MsgPortDbusManager *
73 msgport_dbus_service_get_owner (MsgPortDbusService *dbus_service);
74
75 const gchar *
76 msgport_dbus_service_get_app_id (MsgPortDbusService *dbus_service);
77
78 const gchar *
79 msgport_dbus_service_get_port_name (MsgPortDbusService *dbus_service);
80
81 gboolean
82 msgport_dbus_service_get_is_trusted (MsgPortDbusService *dbus_service);
83
84 gboolean
85 msgport_dbus_service_send_message (MsgPortDbusService *dbus_service,
86                                    GVariant *data,
87                                    const gchar *from);
88
89 G_END_DECLS
90
91 #endif /* _MSGPORT_DBUS_SERVICE_H */
92