]> git.meshlink.io Git - catta/blob - daemon/main.c
* Split out a fair bit of avahi-core into avahi-common for use by the client library
[catta] / daemon / main.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <avahi-core/core.h>
27
28 #define DBUS_API_SUBJECT_TO_CHANGE
29 #include <dbus/dbus.h>
30 #include <dbus/dbus-glib-lowlevel.h>
31
32 #define DBUS_SERVICE_AVAHI "org.freedesktop.Avahi"
33
34 static DBusHandlerResult
35 do_register (DBusConnection *conn, DBusMessage *message)
36 {
37         DBusError error;
38         char *s;
39
40         dbus_error_init (&error);
41
42         dbus_message_get_args (message, &error,
43                         DBUS_TYPE_STRING, &s,
44                         DBUS_TYPE_INVALID);
45
46         if (dbus_error_is_set (&error))
47         {
48                 g_warning ("Error parsing register attempt");
49                 dbus_error_free (&error);
50
51                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
52         }
53
54         g_message ("Register received from: %s", s);
55
56         return DBUS_HANDLER_RESULT_HANDLED;
57 }
58
59 static DBusHandlerResult
60 signal_filter (DBusConnection *conn, DBusMessage *message, void *user_data)
61 {
62         GMainLoop *loop = user_data;
63         DBusError error;
64
65         dbus_error_init (&error);
66
67         g_message ("dbus: interface=%s, path=%s, member=%s",
68                         dbus_message_get_interface (message),
69                         dbus_message_get_path (message),
70                         dbus_message_get_member (message));
71
72         if (dbus_message_is_signal (message, DBUS_INTERFACE_LOCAL,
73                                 "Disconnected"))
74         {
75                 /* No, we shouldn't quit, but until we get somewhere
76                  * usefull such that we can restore our state, we will */
77                 g_warning ("Disconnnected from d-bus");
78
79                 g_main_loop_quit (loop);
80                 return DBUS_HANDLER_RESULT_HANDLED;
81         } else if (dbus_message_is_method_call (message, DBUS_SERVICE_AVAHI,
82                                 "Register"))
83         {
84                 return do_register (conn, message);
85         } else if (dbus_message_is_signal (message, DBUS_SERVICE_DBUS,
86                                 "NameAcquired"))
87         {
88                 char *name;
89
90                 dbus_message_get_args (message, &error,
91                                 DBUS_TYPE_STRING, &name,
92                                 DBUS_TYPE_INVALID);
93
94                 if (dbus_error_is_set (&error))
95                 {
96                         g_warning ("Error parsing NameAcquired message");
97                         dbus_error_free (&error);
98
99                         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
100                 }
101
102                 g_message ("dbus: NameAcquired (%s)", name);
103
104                 return DBUS_HANDLER_RESULT_HANDLED;
105         }
106
107         g_message ("dbus: missed event");
108
109         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
110 }
111                 
112 int main(int argc, char *argv[]) {
113     GMainLoop *loop = NULL;
114     DBusConnection *bus;
115     DBusError error;
116
117     loop = g_main_loop_new(NULL, FALSE);
118
119     dbus_error_init (&error);
120
121     bus = dbus_bus_get (DBUS_BUS_SYSTEM, &error);
122
123     if (bus == NULL)
124     {
125             g_warning ("dbus_bus_get(): %s", error.message);
126             dbus_error_free (&error);
127
128             return -1;
129     }
130
131     dbus_connection_setup_with_g_main (bus, NULL);
132
133     dbus_bus_request_name (bus, DBUS_SERVICE_AVAHI, 0, &error);
134
135     if (dbus_error_is_set (&error))
136     {
137             g_warning ("dbus_bus_request_name (): %s", error.message);
138             dbus_error_free (&error);
139
140             return -1;
141     }
142
143     dbus_connection_add_filter (bus, signal_filter, loop, NULL);
144     dbus_bus_add_match (bus,
145                     "type='method_call',interface='org.freedesktop.Avahi'",
146                     &error);
147
148     if (dbus_error_is_set (&error))
149     {
150             g_warning ("dbus_bus_add_match (): %s", error.message);
151             dbus_error_free (&error);
152
153             return -1;
154     }
155
156     g_main_loop_run(loop);
157     g_main_loop_unref(loop);
158     
159     return 0;
160 }