1 <?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
6 This file is part of systemd.
8 Copyright 2014 Zbigniew Jędrzejewski-Szmek
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 <refentry id="sd_bus_message_append" conditional="ENABLE_KDBUS"
25 xmlns:xi="http://www.w3.org/2001/XInclude">
28 <title>sd_bus_message_append</title>
29 <productname>systemd</productname>
33 <contrib>A monkey with a typewriter</contrib>
34 <firstname>Zbigniew</firstname>
35 <surname>Jędrzejewski-Szmek</surname>
36 <email>zbyszek@in.waw.pl</email>
42 <refentrytitle>sd_bus_message_append</refentrytitle>
43 <manvolnum>3</manvolnum>
47 <refname>sd_bus_message_append</refname>
49 <refpurpose>Attach parts of message based on a format string</refpurpose>
54 <funcsynopsisinfo>#include <systemd/sd-bus.h></funcsynopsisinfo>
57 <funcdef>int sd_bus_message_append</funcdef>
58 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
59 <paramdef>const char *<parameter>types</parameter></paramdef>
60 <paramdef>...</paramdef>
66 <title>Description</title>
68 <para>The <function>sd_bus_message_append</function> function appends
69 a sequence of items to message <parameter>m</parameter>. The
70 format string <parameter>types</parameter> describes the types of
71 arguments that follow.</para>
73 <para>The format string is composed of the elements shown in the
74 table below. It contains zero or more single "complete types".
75 Each complete type may be one of the basic types or a fully
76 described container type. A container type may be a structure, a
77 variant type code, an array with its element type, or a dictionary
78 with its entry type. The format string is
79 <constant>NUL</constant>-terminated.</para>
81 <para>In case of a basic type, one argument of the corresponding
82 type is expected.</para>
84 <para>A structure is denoted by a sequence of complete types
85 between <literal>(</literal> and <literal>)</literal>. This
86 sequence cannot be empty — it must contain at least one type.
87 Arguments corresponding to this nested sequence follow the same
88 rules as if they were not nested.</para>
90 <para>A variant is denoted by <literal>v</literal>. Correspoding
91 arguments must include a format string denoting a complete type,
92 and following that, arguments corresponding to the specified type.
95 <para>An array is denoted by <literal>a</literal> followed by a
96 complete type. Corresponding arguments must include the size of
97 the array, and then repeated this number of times, arguments
98 corresponding to the nested type.</para>
100 <para>A dictionary is an array of dictionary entries, denoted by
101 <literal>a</literal> followed by a pair of complete types between
102 <literal>{</literal> and <literal>}</literal>. The first of those
103 types must be a basic type. Corresponding arguments must include
104 the size of the dictionary, and then repeated this number of
105 times, arguments corresponding to each of the two nested
109 <title>Item format specifiers</title>
112 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers'])//colspec" />
113 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers']//thead)" />
116 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers']//tbody/*)" />
119 <entry><literal>a</literal></entry>
120 <entry><constant>SD_BUS_TYPE_ARRAY</constant></entry>
122 <entry>determined by array type and size</entry>
126 <entry><literal>v</literal></entry>
127 <entry><constant>SD_BUS_TYPE_VARIANT</constant></entry>
128 <entry>variant</entry>
129 <entry>determined by the type argument</entry>
133 <entry><literal>(</literal></entry>
134 <entry><constant>SD_BUS_TYPE_STRUCT_BEGIN</constant></entry>
135 <entry>array start</entry>
136 <entry morerows="1">determined by the nested types</entry>
139 <entry><literal>)</literal></entry>
140 <entry><constant>SD_BUS_TYPE_STRUCT_END</constant></entry>
141 <entry>array end</entry>
145 <entry><literal>{</literal></entry>
146 <entry><constant>SD_BUS_TYPE_DICT_ENTRY_BEGIN</constant></entry>
147 <entry>dictionary entry start</entry>
148 <entry morerows="1">determined by the nested types</entry>
151 <entry><literal>}</literal></entry>
152 <entry><constant>SD_BUS_TYPE_DICT_ENTRY_END</constant></entry>
153 <entry>dictionary entry end</entry>
161 <title>Types string grammar</title>
163 <programlisting>types ::= complete_type*
164 complete_type ::= basic_type | variant | structure | array | dictionary
165 basic_type ::= "y" | "n" | "q" | "u" | "i" | "x" | "t" | "d" |
169 structure ::= "(" complete_type+ ")"
170 array ::= "a" complete_type
171 dictionary ::= "a" "{" basic_type complete_type "}"
176 <title>Examples</title>
178 <para>Append a single basic type (the string <literal>a string</literal>):
181 <programlisting>sd_bus_message *m;
183 sd_bus_message_append(m, "s", "a string");</programlisting>
185 <para>Append all types of integers:</para>
187 <programlisting>uint8_t y = 1;
195 sd_bus_message_append(m, "ynqiuxtd", y, n, q, i, u, x, t, d);</programlisting>
197 <para>Append a structure composed of string and a D-Bus path:</para>
199 <programlisting>sd_bus_message_append(m, "(so)", "a string", "/a/path");
202 <para>Append an array of UNIX file descriptors:</para>
204 <programlisting>sd_bus_message_append(m, "ah", 3, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO);
207 <para>Append a variant, with the real type "g" (signature),
208 and value "sdbusisgood":</para>
210 <programlisting>sd_bus_message_append(m, "v", "g", "sdbusisgood");</programlisting>
212 <para>Append a dictionary containing the mapping {1=>"a", 2=>"b", 3=>""}:
215 <programlisting>sd_bus_message_append(m, "a{is}", 3, 1, "a", 2, "b", 3, NULL);
220 <title>Return Value</title>
222 <para>On success, this call returns 0 or a positive
223 integer. On failure, this call returns a negative
224 errno-style error code.</para>
227 <xi:include href="sd_bus_message_append_basic.xml" xpointer="errors" />
232 <para><function>sd_bus_open_user()</function> and other functions
233 described here are available as a shared library, which can be
234 compiled and linked to with the
235 <constant>libsystemd-bus</constant> <citerefentry project='die-net'><refentrytitle>pkg-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
240 <title>See Also</title>
243 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
244 <citerefentry><refentrytitle>sd-bus</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
245 <citerefentry><refentrytitle>sd_bus_new</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
246 <citerefentry><refentrytitle>sd_bus_ref</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
247 <citerefentry><refentrytitle>sd_bus_unref</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
248 <citerefentry><refentrytitle>ssh</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
249 <citerefentry><refentrytitle>systemd-machined.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
250 <citerefentry><refentrytitle>machinectl</refentrytitle><manvolnum>1</manvolnum></citerefentry>