f88b94a73ef794bb13d0b31fe3f45553804030b3
[profile/ivi/message-port.git] / daemon / dbus-server.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_SERVER_H
25 #define __MSGPORT_DBUS_SERVER_H
26
27 #include <config.h>
28 #include <glib.h>
29 #include <glib-object.h>
30
31 G_BEGIN_DECLS
32
33 #define MSGPORT_TYPE_DBUS_SERVER            (msgport_dbus_server_get_type())
34 #define MSGPORT_DBUS_SERVER(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), MSGPORT_TYPE_DBUS_SERVER, MsgPortDbusServer))
35 #define MSGPORT_DBUS_SERVER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), MSGPORT_TYPE_DBUS_SERVER, MsgPortDbusServerClass))
36 #define MSGPORT_IS_DBUS_SERVER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), MSGPORT_TYPE_DBUS_SERVER))
37 #define MSGPORT_IS_DBUS_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), MSGPORT_TYPE_DBUS_SERVER))
38 #define MSGPORT_DBUS_SERVER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), MSGPORT_TYPE_DBUS_SERVER, MsgPortDbusServerClass))
39
40 typedef struct _MsgPortManager MsgPortManager;
41 typedef struct _MsgPortDbusManager MsgPortDbusManager;
42 typedef struct _MsgPortDbusServer MsgPortDbusServer;
43 typedef struct _MsgPortDbusServerClass MsgPortDbusServerClass;
44 typedef struct _MsgPortDbusServerPrivate MsgPortDbusServerPrivate;
45
46 struct _MsgPortDbusServer
47 {
48     GObject parent;
49
50     /* priv */
51     MsgPortDbusServerPrivate *priv;
52 };
53
54 struct _MsgPortDbusServerClass
55 {
56     GObjectClass parent_class;
57 };
58
59 GType msgport_dbus_server_get_type();
60
61 const gchar *
62 msgport_dbus_server_get_address (MsgPortDbusServer *server) G_GNUC_CONST;
63
64 MsgPortDbusServer * msgport_dbus_server_new ();
65
66 MsgPortManager    * msgport_dbus_server_get_manager (MsgPortDbusServer *server);
67
68 MsgPortDbusManager *
69 msgport_dbus_server_get_dbus_manager_by_app_id (MsgPortDbusServer *server, const gchar *app_id);
70
71 #endif /* __MSGPORT_DBUS_SERVER_H */