Bug 16838: Use bash instead of sh to avoid breaking on Ubuntu
[platform/upstream/dbus.git] / tools / dbus-send.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
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 <config.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include <dbus/dbus.h>
28
29 #include "dbus-print-message.h"
30
31 static const char *appname;
32
33 static void
34 usage (int ecode)
35 {
36   fprintf (stderr, "Usage: %s [--help] [--system | --session] [--dest=NAME] [--type=TYPE] [--print-reply=(literal)] [--reply-timeout=MSEC] <destination object path> <message name> [contents ...]\n", appname);
37   exit (ecode);
38 }
39
40 static void
41 append_arg (DBusMessageIter *iter, int type, const char *value)
42 {
43   dbus_uint16_t uint16;
44   dbus_int16_t int16;
45   dbus_uint32_t uint32;
46   dbus_int32_t int32;
47   dbus_uint64_t uint64;
48   dbus_int64_t int64;
49   double d;
50   unsigned char byte;
51   dbus_bool_t v_BOOLEAN;
52   
53   /* FIXME - we are ignoring OOM returns on all these functions */
54   switch (type)
55     {
56     case DBUS_TYPE_BYTE:
57       byte = strtoul (value, NULL, 0);
58       dbus_message_iter_append_basic (iter, DBUS_TYPE_BYTE, &byte);
59       break;
60
61     case DBUS_TYPE_DOUBLE:
62       d = strtod (value, NULL);
63       dbus_message_iter_append_basic (iter, DBUS_TYPE_DOUBLE, &d);
64       break;
65
66     case DBUS_TYPE_INT16:
67       int16 = strtol (value, NULL, 0);
68       dbus_message_iter_append_basic (iter, DBUS_TYPE_INT16, &int16);
69       break;
70
71     case DBUS_TYPE_UINT16:
72       uint16 = strtoul (value, NULL, 0);
73       dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT16, &uint16);
74       break;
75
76     case DBUS_TYPE_INT32:
77       int32 = strtol (value, NULL, 0);
78       dbus_message_iter_append_basic (iter, DBUS_TYPE_INT32, &int32);
79       break;
80
81     case DBUS_TYPE_UINT32:
82       uint32 = strtoul (value, NULL, 0);
83       dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT32, &uint32);
84       break;
85
86     case DBUS_TYPE_INT64:
87       int64 = strtoll (value, NULL, 0);
88       dbus_message_iter_append_basic (iter, DBUS_TYPE_INT64, &int64);
89       break;
90
91     case DBUS_TYPE_UINT64:
92       uint64 = strtoull (value, NULL, 0);
93       dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT64, &uint64);
94       break;
95
96     case DBUS_TYPE_STRING:
97       dbus_message_iter_append_basic (iter, DBUS_TYPE_STRING, &value);
98       break;
99
100     case DBUS_TYPE_OBJECT_PATH:
101       dbus_message_iter_append_basic (iter, DBUS_TYPE_OBJECT_PATH, &value);
102       break;
103
104     case DBUS_TYPE_BOOLEAN:
105       if (strcmp (value, "true") == 0)
106         {
107           v_BOOLEAN = TRUE;
108           dbus_message_iter_append_basic (iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
109         }
110       else if (strcmp (value, "false") == 0)
111         {
112           v_BOOLEAN = FALSE;
113           dbus_message_iter_append_basic (iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
114         }
115       else
116         {
117           fprintf (stderr, "%s: Expected \"true\" or \"false\" instead of \"%s\"\n", appname, value);
118           exit (1);
119         }
120       break;
121
122     default:
123       fprintf (stderr, "%s: Unsupported data type %c\n", appname, (char) type);
124       exit (1);
125     }
126 }
127
128 static void
129 append_array (DBusMessageIter *iter, int type, const char *value)
130 {
131   const char *val;
132   char *dupval = strdup (value);
133
134   val = strtok (dupval, ",");
135   while (val != NULL)
136     {
137       append_arg (iter, type, val);
138       val = strtok (NULL, ",");
139     }
140   free (dupval);
141 }
142
143 static void
144 append_dict (DBusMessageIter *iter, int keytype, int valtype, const char *value)
145 {
146   const char *val;
147   char *dupval = strdup (value);
148
149   val = strtok (dupval, ",");
150   while (val != NULL)
151     {
152       DBusMessageIter subiter;
153       
154       dbus_message_iter_open_container (iter,
155                                         DBUS_TYPE_DICT_ENTRY,
156                                         NULL,
157                                         &subiter);
158
159       append_arg (&subiter, keytype, val);
160       val = strtok (NULL, ",");
161       if (val == NULL)
162         {
163           fprintf (stderr, "%s: Malformed dictionary\n", appname);
164           exit (1);
165         }
166       append_arg (&subiter, valtype, val);
167
168       dbus_message_iter_close_container (iter, &subiter);
169       val = strtok (NULL, ",");
170     } 
171   free (dupval);
172 }
173
174 static int
175 type_from_name (const char *arg)
176 {
177   int type;
178   if (!strcmp (arg, "string"))
179     type = DBUS_TYPE_STRING;
180   else if (!strcmp (arg, "int16"))
181     type = DBUS_TYPE_INT16;
182   else if (!strcmp (arg, "uint16"))
183     type = DBUS_TYPE_UINT16;
184   else if (!strcmp (arg, "int32"))
185     type = DBUS_TYPE_INT32;
186   else if (!strcmp (arg, "uint32"))
187     type = DBUS_TYPE_UINT32;
188   else if (!strcmp (arg, "int64"))
189     type = DBUS_TYPE_INT64;
190   else if (!strcmp (arg, "uint64"))
191     type = DBUS_TYPE_UINT64;
192   else if (!strcmp (arg, "double"))
193     type = DBUS_TYPE_DOUBLE;
194   else if (!strcmp (arg, "byte"))
195     type = DBUS_TYPE_BYTE;
196   else if (!strcmp (arg, "boolean"))
197     type = DBUS_TYPE_BOOLEAN;
198   else if (!strcmp (arg, "objpath"))
199     type = DBUS_TYPE_OBJECT_PATH;
200   else
201     {
202       fprintf (stderr, "%s: Unknown type \"%s\"\n", appname, arg);
203       exit (1);
204     }
205   return type;
206 }
207
208 int
209 main (int argc, char *argv[])
210 {
211   DBusConnection *connection;
212   DBusError error;
213   DBusMessage *message;
214   int print_reply;
215   int print_reply_literal;
216   int reply_timeout;
217   DBusMessageIter iter;
218   int i;
219   DBusBusType type = DBUS_BUS_SESSION;
220   const char *dest = NULL;
221   const char *name = NULL;
222   const char *path = NULL;
223   int message_type = DBUS_MESSAGE_TYPE_SIGNAL;
224   const char *type_str = NULL;
225
226   appname = argv[0];
227   
228   if (argc < 3)
229     usage (1);
230
231   print_reply = FALSE;
232   print_reply_literal = FALSE;
233   reply_timeout = -1;
234   
235   for (i = 1; i < argc && name == NULL; i++)
236     {
237       char *arg = argv[i];
238
239       if (strcmp (arg, "--system") == 0)
240         type = DBUS_BUS_SYSTEM;
241       else if (strcmp (arg, "--session") == 0)
242         type = DBUS_BUS_SESSION;
243       else if (strncmp (arg, "--print-reply", 13) == 0)
244         {
245           print_reply = TRUE;
246           message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
247           if (*(arg + 13) != '\0')
248             print_reply_literal = TRUE;
249         }
250       else if (strstr (arg, "--reply-timeout=") == arg)
251         {
252           reply_timeout = strtol (strchr (arg, '=') + 1,
253                                   NULL, 10);
254         }
255       else if (strstr (arg, "--dest=") == arg)
256         dest = strchr (arg, '=') + 1;
257       else if (strstr (arg, "--type=") == arg)
258         type_str = strchr (arg, '=') + 1;
259       else if (!strcmp(arg, "--help"))
260         usage (0);
261       else if (arg[0] == '-')
262         usage (1);
263       else if (path == NULL)
264         path = arg;
265       else if (name == NULL)
266         name = arg;
267       else
268         usage (1);
269     }
270
271   if (name == NULL)
272     usage (1);
273
274   if (type_str != NULL)
275     {
276       message_type = dbus_message_type_from_string (type_str);
277       if (!(message_type == DBUS_MESSAGE_TYPE_METHOD_CALL ||
278             message_type == DBUS_MESSAGE_TYPE_SIGNAL))
279         {
280           fprintf (stderr, "Message type \"%s\" is not supported\n",
281                    type_str);
282           exit (1);
283         }
284     }
285   
286   dbus_error_init (&error);
287   connection = dbus_bus_get (type, &error);
288   if (connection == NULL)
289     {
290       fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
291                (type == DBUS_BUS_SYSTEM) ? "system" : "session",
292                error.message);
293       dbus_error_free (&error);
294       exit (1);
295     }
296
297   if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
298     {
299       char *last_dot;
300
301       last_dot = strrchr (name, '.');
302       if (last_dot == NULL)
303         {
304           fprintf (stderr, "Must use org.mydomain.Interface.Method notation, no dot in \"%s\"\n",
305                    name);
306           exit (1);
307         }
308       *last_dot = '\0';
309       
310       message = dbus_message_new_method_call (NULL,
311                                               path,
312                                               name,
313                                               last_dot + 1);
314       dbus_message_set_auto_start (message, TRUE);
315     }
316   else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
317     {
318       char *last_dot;
319
320       last_dot = strrchr (name, '.');
321       if (last_dot == NULL)
322         {
323           fprintf (stderr, "Must use org.mydomain.Interface.Signal notation, no dot in \"%s\"\n",
324                    name);
325           exit (1);
326         }
327       *last_dot = '\0';
328       
329       message = dbus_message_new_signal (path, name, last_dot + 1);
330     }
331   else
332     {
333       fprintf (stderr, "Internal error, unknown message type\n");
334       exit (1);
335     }
336
337   if (message == NULL)
338     {
339       fprintf (stderr, "Couldn't allocate D-Bus message\n");
340       exit (1);
341     }
342
343   if (dest && !dbus_message_set_destination (message, dest))
344     {
345       fprintf (stderr, "Not enough memory\n");
346       exit (1);
347     }
348   
349   dbus_message_iter_init_append (message, &iter);
350
351   while (i < argc)
352     {
353       char *arg;
354       char *c;
355       int type;
356       int secondary_type;
357       int container_type;
358       DBusMessageIter *target_iter;
359       DBusMessageIter container_iter;
360
361       type = DBUS_TYPE_INVALID;
362       arg = argv[i++];
363       c = strchr (arg, ':');
364
365       if (c == NULL)
366         {
367           fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
368           exit (1);
369         }
370
371       *(c++) = 0;
372
373       container_type = DBUS_TYPE_INVALID;
374
375       if (strcmp (arg, "variant") == 0)
376         container_type = DBUS_TYPE_VARIANT;
377       else if (strcmp (arg, "array") == 0)
378         container_type = DBUS_TYPE_ARRAY;
379       else if (strcmp (arg, "dict") == 0)
380         container_type = DBUS_TYPE_DICT_ENTRY;
381
382       if (container_type != DBUS_TYPE_INVALID)
383         {
384           arg = c;
385           c = strchr (arg, ':');
386           if (c == NULL)
387             {
388               fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
389               exit (1);
390             }
391           *(c++) = 0;
392         }
393
394       if (arg[0] == 0)
395         type = DBUS_TYPE_STRING;
396       else
397         type = type_from_name (arg);
398
399       if (container_type == DBUS_TYPE_DICT_ENTRY)
400         {
401           char sig[5];
402           arg = c;
403           c = strchr (c, ':');
404           if (c == NULL)
405             {
406               fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
407               exit (1);
408             }
409           *(c++) = 0;
410           secondary_type = type_from_name (arg);
411           sig[0] = DBUS_DICT_ENTRY_BEGIN_CHAR;
412           sig[1] = type;
413           sig[2] = secondary_type;
414           sig[3] = DBUS_DICT_ENTRY_END_CHAR;
415           sig[4] = '\0';
416           dbus_message_iter_open_container (&iter,
417                                             DBUS_TYPE_ARRAY,
418                                             sig,
419                                             &container_iter);
420           target_iter = &container_iter;
421         }
422       else if (container_type != DBUS_TYPE_INVALID)
423         {
424           char sig[2];
425           sig[0] = type;
426           sig[1] = '\0';
427           dbus_message_iter_open_container (&iter,
428                                             container_type,
429                                             sig,
430                                             &container_iter);
431           target_iter = &container_iter;
432         }
433       else
434         target_iter = &iter;
435
436       if (container_type == DBUS_TYPE_ARRAY)
437         {
438           append_array (target_iter, type, c);
439         }
440       else if (container_type == DBUS_TYPE_DICT_ENTRY)
441         {
442           append_dict (target_iter, type, secondary_type, c);
443         }
444       else
445         append_arg (target_iter, type, c);
446
447       if (container_type != DBUS_TYPE_INVALID)
448         {
449           dbus_message_iter_close_container (&iter,
450                                              &container_iter);
451         }
452     }
453
454   if (print_reply)
455     {
456       DBusMessage *reply;
457
458       dbus_error_init (&error);
459       reply = dbus_connection_send_with_reply_and_block (connection,
460                                                          message, reply_timeout,
461                                                          &error);
462       if (dbus_error_is_set (&error))
463         {
464           fprintf (stderr, "Error %s: %s\n",
465                    error.name,
466                    error.message);
467           exit (1);
468         }
469
470       if (reply)
471         {
472           print_message (reply, print_reply_literal);
473           dbus_message_unref (reply);
474         }
475     }
476   else
477     {
478       dbus_connection_send (connection, message, NULL);
479       dbus_connection_flush (connection);
480     }
481
482   dbus_message_unref (message);
483
484   dbus_connection_unref (connection);
485
486   exit (0);
487 }