1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-send.c Utility program to send messages from the command line
4 * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
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.
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.
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
27 #include <dbus/dbus.h>
29 #include "dbus-print-message.h"
31 static const char *appname;
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);
41 append_arg (DBusMessageIter *iter, int type, const char *value)
51 dbus_bool_t v_BOOLEAN;
53 /* FIXME - we are ignoring OOM returns on all these functions */
57 byte = strtoul (value, NULL, 0);
58 dbus_message_iter_append_basic (iter, DBUS_TYPE_BYTE, &byte);
61 case DBUS_TYPE_DOUBLE:
62 d = strtod (value, NULL);
63 dbus_message_iter_append_basic (iter, DBUS_TYPE_DOUBLE, &d);
67 int16 = strtol (value, NULL, 0);
68 dbus_message_iter_append_basic (iter, DBUS_TYPE_INT16, &int16);
71 case DBUS_TYPE_UINT16:
72 uint16 = strtoul (value, NULL, 0);
73 dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT16, &uint16);
77 int32 = strtol (value, NULL, 0);
78 dbus_message_iter_append_basic (iter, DBUS_TYPE_INT32, &int32);
81 case DBUS_TYPE_UINT32:
82 uint32 = strtoul (value, NULL, 0);
83 dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT32, &uint32);
87 int64 = strtoll (value, NULL, 0);
88 dbus_message_iter_append_basic (iter, DBUS_TYPE_INT64, &int64);
91 case DBUS_TYPE_UINT64:
92 uint64 = strtoull (value, NULL, 0);
93 dbus_message_iter_append_basic (iter, DBUS_TYPE_UINT64, &uint64);
96 case DBUS_TYPE_STRING:
97 dbus_message_iter_append_basic (iter, DBUS_TYPE_STRING, &value);
100 case DBUS_TYPE_OBJECT_PATH:
101 dbus_message_iter_append_basic (iter, DBUS_TYPE_OBJECT_PATH, &value);
104 case DBUS_TYPE_BOOLEAN:
105 if (strcmp (value, "true") == 0)
108 dbus_message_iter_append_basic (iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
110 else if (strcmp (value, "false") == 0)
113 dbus_message_iter_append_basic (iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
117 fprintf (stderr, "%s: Expected \"true\" or \"false\" instead of \"%s\"\n", appname, value);
123 fprintf (stderr, "%s: Unsupported data type %c\n", appname, (char) type);
129 append_array (DBusMessageIter *iter, int type, const char *value)
132 char *dupval = strdup (value);
134 val = strtok (dupval, ",");
137 append_arg (iter, type, val);
138 val = strtok (NULL, ",");
144 append_dict (DBusMessageIter *iter, int keytype, int valtype, const char *value)
147 char *dupval = strdup (value);
149 val = strtok (dupval, ",");
152 DBusMessageIter subiter;
158 dbus_message_iter_open_container (iter,
159 DBUS_TYPE_DICT_ENTRY,
163 append_arg (&subiter, keytype, val);
164 val = strtok (NULL, ",");
167 fprintf (stderr, "%s: Malformed dictionary\n", appname);
170 append_arg (&subiter, valtype, val);
172 dbus_message_iter_close_container (iter, &subiter);
173 val = strtok (NULL, ",");
179 type_from_name (const char *arg)
182 if (!strcmp (arg, "string"))
183 type = DBUS_TYPE_STRING;
184 else if (!strcmp (arg, "int16"))
185 type = DBUS_TYPE_INT16;
186 else if (!strcmp (arg, "uint16"))
187 type = DBUS_TYPE_UINT16;
188 else if (!strcmp (arg, "int32"))
189 type = DBUS_TYPE_INT32;
190 else if (!strcmp (arg, "uint32"))
191 type = DBUS_TYPE_UINT32;
192 else if (!strcmp (arg, "int64"))
193 type = DBUS_TYPE_INT64;
194 else if (!strcmp (arg, "uint64"))
195 type = DBUS_TYPE_UINT64;
196 else if (!strcmp (arg, "double"))
197 type = DBUS_TYPE_DOUBLE;
198 else if (!strcmp (arg, "byte"))
199 type = DBUS_TYPE_BYTE;
200 else if (!strcmp (arg, "boolean"))
201 type = DBUS_TYPE_BOOLEAN;
202 else if (!strcmp (arg, "objpath"))
203 type = DBUS_TYPE_OBJECT_PATH;
206 fprintf (stderr, "%s: Unknown type \"%s\"\n", appname, arg);
213 main (int argc, char *argv[])
215 DBusConnection *connection;
217 DBusMessage *message;
219 int print_reply_literal;
221 DBusMessageIter iter;
223 DBusBusType type = DBUS_BUS_SESSION;
224 const char *dest = NULL;
225 const char *name = NULL;
226 const char *path = NULL;
227 int message_type = DBUS_MESSAGE_TYPE_SIGNAL;
228 const char *type_str = NULL;
236 print_reply_literal = FALSE;
239 for (i = 1; i < argc && name == NULL; i++)
243 if (strcmp (arg, "--system") == 0)
244 type = DBUS_BUS_SYSTEM;
245 else if (strcmp (arg, "--session") == 0)
246 type = DBUS_BUS_SESSION;
247 else if (strncmp (arg, "--print-reply", 13) == 0)
250 message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
251 if (*(arg + 13) != '\0')
252 print_reply_literal = TRUE;
254 else if (strstr (arg, "--reply-timeout=") == arg)
256 reply_timeout = strtol (strchr (arg, '=') + 1,
259 else if (strstr (arg, "--dest=") == arg)
260 dest = strchr (arg, '=') + 1;
261 else if (strstr (arg, "--type=") == arg)
262 type_str = strchr (arg, '=') + 1;
263 else if (!strcmp(arg, "--help"))
265 else if (arg[0] == '-')
267 else if (path == NULL)
269 else if (name == NULL)
278 if (type_str != NULL)
280 message_type = dbus_message_type_from_string (type_str);
281 if (!(message_type == DBUS_MESSAGE_TYPE_METHOD_CALL ||
282 message_type == DBUS_MESSAGE_TYPE_SIGNAL))
284 fprintf (stderr, "Message type \"%s\" is not supported\n",
290 dbus_error_init (&error);
291 connection = dbus_bus_get (type, &error);
292 if (connection == NULL)
294 fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
295 (type == DBUS_BUS_SYSTEM) ? "system" : "session",
297 dbus_error_free (&error);
301 if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
305 last_dot = strrchr (name, '.');
306 if (last_dot == NULL)
308 fprintf (stderr, "Must use org.mydomain.Interface.Method notation, no dot in \"%s\"\n",
314 message = dbus_message_new_method_call (NULL,
318 dbus_message_set_auto_start (message, TRUE);
320 else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
324 last_dot = strrchr (name, '.');
325 if (last_dot == NULL)
327 fprintf (stderr, "Must use org.mydomain.Interface.Signal notation, no dot in \"%s\"\n",
333 message = dbus_message_new_signal (path, name, last_dot + 1);
337 fprintf (stderr, "Internal error, unknown message type\n");
343 fprintf (stderr, "Couldn't allocate D-Bus message\n");
347 if (dest && !dbus_message_set_destination (message, dest))
349 fprintf (stderr, "Not enough memory\n");
353 dbus_message_iter_init_append (message, &iter);
362 DBusMessageIter *target_iter;
363 DBusMessageIter container_iter;
365 type = DBUS_TYPE_INVALID;
367 c = strchr (arg, ':');
371 fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
377 container_type = DBUS_TYPE_INVALID;
379 if (strcmp (arg, "variant") == 0)
380 container_type = DBUS_TYPE_VARIANT;
381 else if (strcmp (arg, "array") == 0)
382 container_type = DBUS_TYPE_ARRAY;
383 else if (strcmp (arg, "dict") == 0)
384 container_type = DBUS_TYPE_DICT_ENTRY;
386 if (container_type != DBUS_TYPE_INVALID)
389 c = strchr (arg, ':');
392 fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
399 type = DBUS_TYPE_STRING;
401 type = type_from_name (arg);
403 if (container_type == DBUS_TYPE_DICT_ENTRY)
410 fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
414 secondary_type = type_from_name (arg);
415 sig[0] = DBUS_DICT_ENTRY_BEGIN_CHAR;
417 sig[2] = secondary_type;
418 sig[3] = DBUS_DICT_ENTRY_END_CHAR;
420 dbus_message_iter_open_container (&iter,
424 target_iter = &container_iter;
426 else if (container_type != DBUS_TYPE_INVALID)
431 dbus_message_iter_open_container (&iter,
435 target_iter = &container_iter;
440 if (container_type == DBUS_TYPE_ARRAY)
442 append_array (target_iter, type, c);
444 else if (container_type == DBUS_TYPE_DICT_ENTRY)
446 append_dict (target_iter, type, secondary_type, c);
449 append_arg (target_iter, type, c);
451 if (container_type != DBUS_TYPE_INVALID)
453 dbus_message_iter_close_container (&iter,
462 dbus_error_init (&error);
463 reply = dbus_connection_send_with_reply_and_block (connection,
464 message, reply_timeout,
466 if (dbus_error_is_set (&error))
468 fprintf (stderr, "Error %s: %s\n",
476 print_message (reply, print_reply_literal);
477 dbus_message_unref (reply);
482 dbus_connection_send (connection, message, NULL);
483 dbus_connection_flush (connection);
486 dbus_message_unref (message);
488 dbus_connection_unref (connection);