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=SERVICE] [--type=TYPE] [--print-reply] <destination object path> <message name> [contents ...]\n", name);
38 main (int argc, char *argv[])
40 DBusConnection *connection;
46 DBusBusType type = DBUS_BUS_SESSION;
47 const char *dest = NULL;
48 const char *name = NULL;
49 const char *path = NULL;
50 int message_type = DBUS_MESSAGE_TYPE_SIGNAL;
51 const char *type_str = NULL;
58 for (i = 1; i < argc && name == NULL; i++)
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)
69 message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
71 else if (strstr (arg, "--dest=") == arg)
72 dest = strchr (arg, '=') + 1;
73 else if (strstr (arg, "--type=") == arg)
74 type_str = strchr (arg, '=') + 1;
75 else if (!strcmp(arg, "--help"))
77 else if (arg[0] == '-')
79 else if (path == NULL)
81 else if (name == NULL)
92 message_type = dbus_message_type_from_string (type_str);
93 if (!(message_type == DBUS_MESSAGE_TYPE_METHOD_CALL ||
94 message_type == DBUS_MESSAGE_TYPE_SIGNAL))
96 fprintf (stderr, "Message type \"%s\" is not supported\n",
102 dbus_error_init (&error);
103 connection = dbus_bus_get (type, &error);
104 if (connection == NULL)
106 fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
107 (type == DBUS_BUS_SYSTEM) ? "system" : "session",
109 dbus_error_free (&error);
113 if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
117 last_dot = strrchr (name, '.');
118 if (last_dot == NULL)
120 fprintf (stderr, "Must use org.mydomain.Interface.Method notation, no dot in \"%s\"\n",
126 message = dbus_message_new_method_call (NULL,
131 else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
135 last_dot = strrchr (name, '.');
136 if (last_dot == NULL)
138 fprintf (stderr, "Must use org.mydomain.Interface.Signal notation, no dot in \"%s\"\n",
144 message = dbus_message_new_signal (path, name, last_dot + 1);
148 fprintf (stderr, "Internal error, unknown message type\n");
154 fprintf (stderr, "Couldn't allocate D-BUS message\n");
158 if (dest && !dbus_message_set_destination (message, dest))
160 fprintf (stderr, "Not enough memory\n");
164 dbus_message_append_iter_init (message, &iter);
171 dbus_uint32_t uint32;
176 type = DBUS_TYPE_INVALID;
178 c = strchr (arg, ':');
182 fprintf (stderr, "%s: Data item \"%s\" is badly formed\n", argv[0], arg);
188 if (arg[0] == 0 || !strcmp (arg, "string"))
189 type = DBUS_TYPE_STRING;
190 else if (!strcmp (arg, "int32"))
191 type = DBUS_TYPE_INT32;
192 else if (!strcmp (arg, "uint32"))
193 type = DBUS_TYPE_UINT32;
194 else if (!strcmp (arg, "double"))
195 type = DBUS_TYPE_DOUBLE;
196 else if (!strcmp (arg, "byte"))
197 type = DBUS_TYPE_BYTE;
198 else if (!strcmp (arg, "boolean"))
199 type = DBUS_TYPE_BOOLEAN;
202 fprintf (stderr, "%s: Unknown type \"%s\"\n", argv[0], arg);
206 /* FIXME - we are ignoring OOM returns on all these functions */
210 byte = strtoul (c, NULL, 0);
211 dbus_message_iter_append_byte (&iter, byte);
214 case DBUS_TYPE_DOUBLE:
215 d = strtod (c, NULL);
216 dbus_message_iter_append_double (&iter, d);
219 case DBUS_TYPE_INT32:
220 int32 = strtol (c, NULL, 0);
221 dbus_message_iter_append_int32 (&iter, int32);
224 case DBUS_TYPE_UINT32:
225 uint32 = strtoul (c, NULL, 0);
226 dbus_message_iter_append_uint32 (&iter, uint32);
229 case DBUS_TYPE_STRING:
230 dbus_message_iter_append_string (&iter, c);
233 case DBUS_TYPE_BOOLEAN:
234 if (strcmp(c, "true") == 0)
235 dbus_message_iter_append_boolean (&iter, TRUE);
236 else if (strcmp(c, "false") == 0)
237 dbus_message_iter_append_boolean (&iter, FALSE);
240 fprintf (stderr, "%s: Expected \"true\" or \"false\" instead of \"%s\"\n", argv[0], c);
246 fprintf (stderr, "%s: Unsupported data type\n", argv[0]);
255 dbus_error_init (&error);
256 reply = dbus_connection_send_with_reply_and_block (connection,
259 if (dbus_error_is_set (&error))
261 fprintf (stderr, "Error: %s\n",
268 print_message (reply);
269 dbus_message_unref (reply);
274 dbus_connection_send (connection, message, NULL);
275 dbus_connection_flush (connection);
278 dbus_message_unref (message);
280 dbus_connection_disconnect (connection);