1 /* -*- mode: C; c-file-style: "gnu" -*- */
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
26 #include <dbus/dbus.h>
28 #include "dbus-print-message.h"
31 usage (char *name, int ecode)
33 fprintf (stderr, "Usage: %s [--help] [--system | --session] [--dest=NAME] [--type=TYPE] [--print-reply] [--reply-timeout=MSEC] <destination object path> <message name> [contents ...]\n", name);
38 main (int argc, char *argv[])
40 DBusConnection *connection;
47 DBusBusType type = DBUS_BUS_SESSION;
48 const char *dest = NULL;
49 const char *name = NULL;
50 const char *path = NULL;
51 int message_type = DBUS_MESSAGE_TYPE_SIGNAL;
52 const char *type_str = NULL;
60 for (i = 1; i < argc && name == NULL; i++)
64 if (strcmp (arg, "--system") == 0)
65 type = DBUS_BUS_SYSTEM;
66 else if (strcmp (arg, "--session") == 0)
67 type = DBUS_BUS_SESSION;
68 else if (strcmp (arg, "--print-reply") == 0)
71 message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
73 else if (strstr (arg, "--reply-timeout=") == arg)
75 reply_timeout = strtol (strchr (arg, '=') + 1,
78 else if (strstr (arg, "--dest=") == arg)
79 dest = strchr (arg, '=') + 1;
80 else if (strstr (arg, "--type=") == arg)
81 type_str = strchr (arg, '=') + 1;
82 else if (!strcmp(arg, "--help"))
84 else if (arg[0] == '-')
86 else if (path == NULL)
88 else if (name == NULL)
99 message_type = dbus_message_type_from_string (type_str);
100 if (!(message_type == DBUS_MESSAGE_TYPE_METHOD_CALL ||
101 message_type == DBUS_MESSAGE_TYPE_SIGNAL))
103 fprintf (stderr, "Message type \"%s\" is not supported\n",
109 dbus_error_init (&error);
110 connection = dbus_bus_get (type, &error);
111 if (connection == NULL)
113 fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
114 (type == DBUS_BUS_SYSTEM) ? "system" : "session",
116 dbus_error_free (&error);
120 if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
124 last_dot = strrchr (name, '.');
125 if (last_dot == NULL)
127 fprintf (stderr, "Must use org.mydomain.Interface.Method notation, no dot in \"%s\"\n",
133 message = dbus_message_new_method_call (NULL,
138 else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
142 last_dot = strrchr (name, '.');
143 if (last_dot == NULL)
145 fprintf (stderr, "Must use org.mydomain.Interface.Signal notation, no dot in \"%s\"\n",
151 message = dbus_message_new_signal (path, name, last_dot + 1);
155 fprintf (stderr, "Internal error, unknown message type\n");
161 fprintf (stderr, "Couldn't allocate D-BUS message\n");
165 if (dest && !dbus_message_set_destination (message, dest))
167 fprintf (stderr, "Not enough memory\n");
171 dbus_message_iter_init_append (message, &iter);
178 dbus_uint32_t uint32;
182 dbus_bool_t v_BOOLEAN;
184 type = DBUS_TYPE_INVALID;
186 c = strchr (arg, ':');
190 fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
196 if (arg[0] == 0 || !strcmp (arg, "string"))
197 type = DBUS_TYPE_STRING;
198 else if (!strcmp (arg, "int32"))
199 type = DBUS_TYPE_INT32;
200 else if (!strcmp (arg, "uint32"))
201 type = DBUS_TYPE_UINT32;
202 else if (!strcmp (arg, "double"))
203 type = DBUS_TYPE_DOUBLE;
204 else if (!strcmp (arg, "byte"))
205 type = DBUS_TYPE_BYTE;
206 else if (!strcmp (arg, "boolean"))
207 type = DBUS_TYPE_BOOLEAN;
210 fprintf (stderr, "%s: Unknown type \"%s\"\n", argv[0], arg);
214 /* FIXME - we are ignoring OOM returns on all these functions */
218 byte = strtoul (c, NULL, 0);
219 dbus_message_iter_append_basic (&iter, DBUS_TYPE_BYTE, &byte);
222 case DBUS_TYPE_DOUBLE:
223 d = strtod (c, NULL);
224 dbus_message_iter_append_basic (&iter, DBUS_TYPE_DOUBLE, &d);
227 case DBUS_TYPE_INT32:
228 int32 = strtol (c, NULL, 0);
229 dbus_message_iter_append_basic (&iter, DBUS_TYPE_INT32, &int32);
232 case DBUS_TYPE_UINT32:
233 uint32 = strtoul (c, NULL, 0);
234 dbus_message_iter_append_basic (&iter, DBUS_TYPE_UINT32, &uint32);
237 case DBUS_TYPE_STRING:
238 dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &c);
241 case DBUS_TYPE_BOOLEAN:
242 if (strcmp(c, "true") == 0)
245 dbus_message_iter_append_basic (&iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
247 else if (strcmp(c, "false") == 0)
250 dbus_message_iter_append_basic (&iter, DBUS_TYPE_BOOLEAN, &v_BOOLEAN);
254 fprintf (stderr, "%s: Expected \"true\" or \"false\" instead of \"%s\"\n", argv[0], c);
260 fprintf (stderr, "%s: Unsupported data type\n", argv[0]);
269 dbus_error_init (&error);
270 reply = dbus_connection_send_with_reply_and_block (connection,
271 message, reply_timeout,
273 if (dbus_error_is_set (&error))
275 fprintf (stderr, "Error: %s\n",
282 print_message (reply);
283 dbus_message_unref (reply);
288 dbus_connection_send (connection, message, NULL);
289 dbus_connection_flush (connection);
292 dbus_message_unref (message);
294 dbus_connection_disconnect (connection);