2003-08-30 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / tools / dbus-send.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-send.c  Utility program to send messages from the command line
3  *
4  * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include <dbus/dbus.h>
27
28 #include "dbus-print-message.h"
29
30 static void
31 usage (char *name, int ecode)
32 {
33   fprintf (stderr, "Usage: %s [--help] [--system | --session] [--dest=SERVICE] [--type=TYPE] [--print-reply] <destination object path> <message name> [contents ...]\n", name);
34   exit (ecode);
35 }
36
37 int
38 main (int argc, char *argv[])
39 {
40   DBusConnection *connection;
41   DBusError error;
42   DBusMessage *message;
43   int print_reply;
44   DBusMessageIter iter;
45   int i;
46   DBusBusType type = DBUS_BUS_SESSION;
47   const char *dest = DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST;
48   const char *name = NULL;
49   const char *path = NULL;
50   int message_type = DBUS_MESSAGE_TYPE_SIGNAL;
51   const char *type_str = NULL;
52   
53   if (argc < 3)
54     usage (argv[0], 1);
55
56   print_reply = FALSE;
57   
58   for (i = 1; i < argc && name == NULL; i++)
59     {
60       char *arg = argv[i];
61
62       if (strcmp (arg, "--system") == 0)
63         type = DBUS_BUS_SYSTEM;
64       else if (strcmp (arg, "--session") == 0)
65         type = DBUS_BUS_SESSION;
66       else if (strcmp (arg, "--print-reply") == 0)
67         print_reply = TRUE;
68       else if (strstr (arg, "--dest=") == arg)
69         dest = strchr (arg, '=') + 1;
70       else if (strstr (arg, "--type=") == arg)
71         type_str = strchr (arg, '=') + 1;
72       else if (!strcmp(arg, "--help"))
73         usage (argv[0], 0);
74       else if (arg[0] == '-')
75         usage (argv[0], 1);
76       else if (path == NULL)
77         path = arg;
78       else if (name == NULL)
79         name = arg;
80       else
81         usage (argv[0], 1);
82     }
83
84   if (name == NULL)
85     usage (argv[0], 1);
86
87   if (type_str != NULL)
88     {
89       if (strcmp (type_str, "method_call") == 0)
90         message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
91       else if (strcmp (type_str, "signal") == 0)
92         message_type = DBUS_MESSAGE_TYPE_SIGNAL;
93       else
94         {
95           fprintf (stderr, "Message type \"%s\" is not supported\n",
96                    type_str);
97           exit (1);
98         }
99     }
100   
101   dbus_error_init (&error);
102   connection = dbus_bus_get (type, &error);
103   if (connection == NULL)
104     {
105       fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
106                (type == DBUS_BUS_SYSTEM) ? "system" : "session",
107                error.message);
108       dbus_error_free (&error);
109       exit (1);
110     }
111
112   if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
113     {
114       char *last_dot;
115
116       last_dot = strrchr (name, '.');
117       if (last_dot == NULL)
118         {
119           fprintf (stderr, "Must use org.mydomain.Interface.Method notation, no dot in \"%s\"\n",
120                    name);
121           exit (1);
122         }
123       *last_dot = '\0';
124       
125       message = dbus_message_new_method_call (NULL,
126                                               path,
127                                               name,
128                                               last_dot + 1);
129     }
130   else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
131     {
132       char *last_dot;
133
134       last_dot = strrchr (name, '.');
135       if (last_dot == NULL)
136         {
137           fprintf (stderr, "Must use org.mydomain.Interface.Signal notation, no dot in \"%s\"\n",
138                    name);
139           exit (1);
140         }
141       *last_dot = '\0';
142       
143       message = dbus_message_new_signal (path, name, last_dot + 1);
144     }
145   else
146     {
147       fprintf (stderr, "Internal error, unknown message type\n");
148       exit (1);
149     }
150
151   if (message == NULL)
152     {
153       fprintf (stderr, "Couldn't allocate D-BUS message\n");
154       exit (1);
155     }
156
157   if (dest && !dbus_message_set_destination (message, dest))
158     {
159       fprintf (stderr, "Not enough memory\n");
160       exit (1);
161     }
162   
163   dbus_message_append_iter_init (message, &iter);
164
165   while (i < argc)
166     {
167       char *arg;
168       char *c;
169       int type;
170       dbus_uint32_t uint32;
171       dbus_int32_t int32;
172       double d;
173       unsigned char byte;
174
175       type = DBUS_TYPE_INVALID;
176       arg = argv[i++];
177       c = strchr (arg, ':');
178
179       if (c == NULL)
180         {
181           fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
182           exit (1);
183         }
184
185       *(c++) = 0;
186
187       if (arg[0] == 0 || !strcmp (arg, "string"))
188         type = DBUS_TYPE_STRING;
189       else if (!strcmp (arg, "int32"))
190         type = DBUS_TYPE_INT32;
191       else if (!strcmp (arg, "uint32"))
192         type = DBUS_TYPE_UINT32;
193       else if (!strcmp (arg, "double"))
194         type = DBUS_TYPE_DOUBLE;
195       else if (!strcmp (arg, "byte"))
196         type = DBUS_TYPE_BYTE;
197       else if (!strcmp (arg, "boolean"))
198         type = DBUS_TYPE_BOOLEAN;
199       else
200         {
201           fprintf (stderr, "%s: Unknown type \"%s\"\n", argv[0], arg);
202           exit (1);
203         }
204
205       /* FIXME - we are ignoring OOM returns on all these functions */
206       switch (type)
207         {
208         case DBUS_TYPE_BYTE:
209           byte = strtoul (c, NULL, 0);
210           dbus_message_iter_append_byte (&iter, byte);
211           break;
212
213         case DBUS_TYPE_DOUBLE:
214           d = strtod (c, NULL);
215           dbus_message_iter_append_double (&iter, d);
216           break;
217
218         case DBUS_TYPE_INT32:
219           int32 = strtol (c, NULL, 0);
220           dbus_message_iter_append_int32 (&iter, int32);
221           break;
222
223         case DBUS_TYPE_UINT32:
224           uint32 = strtoul (c, NULL, 0);
225           dbus_message_iter_append_uint32 (&iter, uint32);
226           break;
227
228         case DBUS_TYPE_STRING:
229           dbus_message_iter_append_string (&iter, c);
230           break;
231
232         default:
233           fprintf (stderr, "%s: Unsupported data type\n", argv[0]);
234           exit (1);
235         }
236     }
237
238   if (print_reply)
239     {
240       DBusMessage *reply;
241
242       dbus_error_init (&error);
243       reply = dbus_connection_send_with_reply_and_block (connection,
244                                                          message, -1,
245                                                          &error);
246       if (dbus_error_is_set (&error))
247         {
248           fprintf (stderr, "Error: %s\n",
249                    error.message);
250           exit (1);
251         }
252
253       if (reply)
254         {
255           print_message (reply);
256           dbus_message_unref (reply);
257         }
258     }
259   else
260     {
261       dbus_connection_send (connection, message, NULL);
262       dbus_connection_flush (connection);
263     }
264
265   dbus_message_unref (message);
266
267   dbus_connection_disconnect (connection);
268
269   exit (0);
270 }