2003-05-16 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / tools / dbus-print-message.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-print-message.h  Utility function to print out a message
3  *
4  * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
5  * Copyright (C) 2003 Red Hat, Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22 #include "dbus-print-message.h"
23
24 void
25 print_message (DBusMessage *message)
26 {
27   DBusMessageIter iter;
28   const char *sender;
29
30   sender = dbus_message_get_sender (message); 
31   
32   printf ("message name=%s; sender=%s\n",
33           dbus_message_get_name (message),
34           sender ? sender : "(no sender)");
35   
36   dbus_message_iter_init (message, &iter);
37
38   do
39     {
40       int type = dbus_message_iter_get_arg_type (&iter);
41       char *str;
42       dbus_uint32_t uint32;
43       dbus_int32_t int32;
44       double d;
45       unsigned char byte;
46
47       if (type == DBUS_TYPE_INVALID)
48         break;
49
50       switch (type)
51         {
52         case DBUS_TYPE_STRING:
53           str = dbus_message_iter_get_string (&iter);
54           printf ("string:%s\n", str);
55           break;
56
57         case DBUS_TYPE_INT32:
58           int32 = dbus_message_iter_get_int32 (&iter);
59           printf ("int32:%d\n", int32);
60           break;
61
62         case DBUS_TYPE_UINT32:
63           uint32 = dbus_message_iter_get_uint32 (&iter);
64           printf ("int32:%u\n", uint32);
65           break;
66
67         case DBUS_TYPE_DOUBLE:
68           d = dbus_message_iter_get_double (&iter);
69           printf ("double:%f\n", d);
70           break;
71
72         case DBUS_TYPE_BYTE:
73           byte = dbus_message_iter_get_byte (&iter);
74           printf ("byte:%d\n", byte);
75           break;
76
77         default:
78           printf ("(unknown arg type %d)\n", type);
79           break;
80         }
81     } while (dbus_message_iter_next (&iter));
82 }
83