summaryrefslogtreecommitdiffstats
path: root/tools/print-introspect.c
blob: 91052cf658404bcc5d7e584a9ebc8a9a64a0d6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* -*- mode: C; c-file-style: "gnu" -*- */
/* gather-introspect.c  Dump introspection data from service to stdout
 *
 * Copyright (C) 2005  Red Hat, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <dbus/dbus-glib.h>

static void
usage (char *name, int ecode)
{
  fprintf (stderr, "Usage: %s <service> <destination object path>\n", name);
  exit (ecode);
}

int
main (int argc, char *argv[])
{
  DBusGConnection *connection;
  DBusGProxy *proxy;
  GError *error;
  const char *service;
  const char *path;
  char *introspect_data;
  
  if (argc != 3)
    usage (argv[0], 1);

  service = argv[1];
  path = argv[2];

  g_type_init ();

  error = NULL;
  connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
  if (connection == NULL)
    {
      fprintf (stderr, "Failed to open connection to session bus: %s\n",
               error->message);
      g_clear_error (&error);
      exit (1);
    }

  proxy = dbus_g_proxy_new_for_name (connection,
				     service, path,
				     DBUS_INTERFACE_INTROSPECTABLE);
  if (!dbus_g_proxy_call (proxy, "Introspect",  &error,
			  G_TYPE_INVALID,
			  G_TYPE_STRING, &introspect_data,
			  G_TYPE_INVALID))
    {
      fprintf (stderr, "Failed to get introspection data: %s\n",
               error->message);
      g_clear_error (&error);
      exit (1);
    }
      
  printf ("%s", introspect_data);
  g_free (introspect_data);

  g_object_unref (proxy);

  exit (0);
}