2003-03-12 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / bus / main.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* main.c  main() for message bus
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #include "bus.h"
24 #include "loop.h"
25 #include <dbus/dbus-internals.h>
26
27 int
28 main (int argc, char **argv)
29 {
30   BusContext *context;
31   DBusError error;
32   const char *paths[] = { NULL, NULL };
33   
34   if (argc < 3)
35     {
36       /* FIXME obviously just for testing */
37       _dbus_warn ("Give the server address as an argument and activation directory as args\n");
38       return 1;
39     }
40
41   paths[0] = argv[2];
42   
43   dbus_error_init (&error);
44   context = bus_context_new (argv[1], paths, &error);
45   if (context == NULL)
46     {
47       _dbus_warn ("Failed to start message bus: %s\n",
48                   error.message);
49       dbus_error_free (&error);
50       return 1;
51     }
52
53   _dbus_verbose ("We are on D-Bus...\n");
54   bus_loop_run ();
55   
56   bus_context_shutdown (context);
57   bus_context_unref (context);
58
59   return 0;
60 }