]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/sd_bus_message_append.xml
verify: use manager_load_startable_unit_or_warn() to load units for verification
[thirdparty/systemd.git] / man / sd_bus_message_append.xml
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">
4
5 <!--
6 SPDX-License-Identifier: LGPL-2.1+
7
8 This file is part of systemd.
9
10 Copyright 2014 Zbigniew Jędrzejewski-Szmek
11
12 systemd is free software; you can redistribute it and/or modify it
13 under the terms of the GNU Lesser General Public License as published by
14 the Free Software Foundation; either version 2.1 of the License, or
15 (at your option) any later version.
16
17 systemd is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 -->
25
26 <refentry id="sd_bus_message_append"
27 xmlns:xi="http://www.w3.org/2001/XInclude">
28
29 <refentryinfo>
30 <title>sd_bus_message_append</title>
31 <productname>systemd</productname>
32
33 <authorgroup>
34 <author>
35 <contrib>A monkey with a typewriter</contrib>
36 <firstname>Zbigniew</firstname>
37 <surname>Jędrzejewski-Szmek</surname>
38 <email>zbyszek@in.waw.pl</email>
39 </author>
40 </authorgroup>
41 </refentryinfo>
42
43 <refmeta>
44 <refentrytitle>sd_bus_message_append</refentrytitle>
45 <manvolnum>3</manvolnum>
46 </refmeta>
47
48 <refnamediv>
49 <refname>sd_bus_message_append</refname>
50 <refname>sd_bus_message_appendv</refname>
51
52 <refpurpose>Attach fields to a D-Bus message based on a type
53 string</refpurpose>
54 </refnamediv>
55
56 <refsynopsisdiv>
57 <funcsynopsis>
58 <funcsynopsisinfo>#include &lt;systemd/sd-bus.h&gt;</funcsynopsisinfo>
59
60 <funcprototype>
61 <funcdef>int sd_bus_message_append</funcdef>
62 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
63 <paramdef>const char *<parameter>types</parameter></paramdef>
64 <paramdef></paramdef>
65 </funcprototype>
66
67 <funcprototype>
68 <funcdef>int sd_bus_message_appendv</funcdef>
69 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
70 <paramdef>const char *<parameter>types</parameter></paramdef>
71 <paramdef>va_list <parameter>ap</parameter></paramdef>
72 </funcprototype>
73
74 </funcsynopsis>
75 </refsynopsisdiv>
76
77 <refsect1>
78 <title>Description</title>
79
80 <para>The <function>sd_bus_message_append()</function> function
81 appends a sequence of fields to the D-Bus message object
82 <parameter>m</parameter>. The type string
83 <parameter>types</parameter> describes the types of the field
84 arguments that follow. For each type specified in the type string,
85 one or more arguments need to be specified, in the same order as
86 declared in the type string.</para>
87
88 <para>The type string is composed of the elements shown in the
89 table below. It contains zero or more single "complete types".
90 Each complete type may be one of the basic types or a fully
91 described container type. A container type may be a structure with
92 the contained types, a variant, an array with its element type, or
93 a dictionary entry with the contained types. The type string is
94 <constant>NUL</constant>-terminated.</para>
95
96 <para>In case of a basic type, one argument of the corresponding
97 type is expected.</para>
98
99 <para>A structure is denoted by a sequence of complete types
100 between <literal>(</literal> and <literal>)</literal>. This
101 sequence cannot be empty — it must contain at least one type.
102 Arguments corresponding to this nested sequence follow the same
103 rules as if they were not nested.</para>
104
105 <para>A variant is denoted by <literal>v</literal>. Corresponding
106 arguments must begin with a type string denoting a complete type,
107 and following that, arguments corresponding to the specified type.
108 </para>
109
110 <para>An array is denoted by <literal>a</literal> followed by a
111 complete type. Corresponding arguments must begin with the number of
112 entries in the array, followed by the entries themselves,
113 matching the element type of the array.</para>
114
115 <para>A dictionary is an array of dictionary entries, denoted by
116 <literal>a</literal> followed by a pair of complete types between
117 <literal>{</literal> and <literal>}</literal>. The first of those
118 types must be a basic type. Corresponding arguments must begin
119 with the number of dictionary entries, followed by a pair of
120 values for each entry matching the element type of
121 the dictionary entries.</para>
122
123 <para>The <function>sd_bus_message_appendv()</function> is equivalent to
124 the function <function>sd_bus_message_append()</function>,
125 except that it is called with a <literal>va_list</literal> instead of
126 a variable number of arguments. This function does not call the
127 <function>va_end()</function> macro. Because it invokes the
128 <function>va_arg()</function> macro, the value of ap
129 is undefined after the call.</para>
130
131 <para>For further details on the D-Bus type system, please consult
132 the <ulink
133 url="http://dbus.freedesktop.org/doc/dbus-specification.html#type-system">D-Bus
134 Specification</ulink>.</para>
135
136 <table>
137 <title>Item type specifiers</title>
138
139 <tgroup cols='5'>
140 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers'])//colspec" />
141 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers']//thead)" />
142
143 <tbody>
144 <xi:include href="sd_bus_message_append_basic.xml" xpointer="xpointer(//table[@id='format-specifiers']//tbody/*)" />
145
146 <row>
147 <entry><literal>a</literal></entry>
148 <entry><constant>SD_BUS_TYPE_ARRAY</constant></entry>
149 <entry>array</entry>
150 <entry>determined by array type and size</entry>
151 <entry>int, followed by array contents</entry>
152 </row>
153
154 <row>
155 <entry><literal>v</literal></entry>
156 <entry><constant>SD_BUS_TYPE_VARIANT</constant></entry>
157 <entry>variant</entry>
158 <entry>determined by the type argument</entry>
159 <entry>signature string, followed by variant contents</entry>
160 </row>
161
162 <row>
163 <entry><literal>(</literal></entry>
164 <entry><constant>SD_BUS_TYPE_STRUCT_BEGIN</constant></entry>
165 <entry>array start</entry>
166 <entry morerows="1">determined by the nested types</entry>
167 <entry morerows="1">structure contents</entry>
168 </row>
169 <row>
170 <entry><literal>)</literal></entry>
171 <entry><constant>SD_BUS_TYPE_STRUCT_END</constant></entry>
172 <entry>array end</entry>
173 </row>
174
175 <row>
176 <entry><literal>{</literal></entry>
177 <entry><constant>SD_BUS_TYPE_DICT_ENTRY_BEGIN</constant></entry>
178 <entry>dictionary entry start</entry>
179 <entry morerows="1">determined by the nested types</entry>
180 <entry morerows="1">dictionary contents</entry>
181 </row>
182 <row>
183 <entry><literal>}</literal></entry>
184 <entry><constant>SD_BUS_TYPE_DICT_ENTRY_END</constant></entry>
185 <entry>dictionary entry end</entry>
186 </row>
187 </tbody>
188 </tgroup>
189 </table>
190
191 <para>For types "s" and "g" (unicode string or signature), the pointer may be
192 <constant>NULL</constant>, which is equivalent to an empty string. See
193 <citerefentry><refentrytitle>sd_bus_message_append_basic</refentrytitle><manvolnum>3</manvolnum></citerefentry>
194 for the precise interpretation of those and other types.</para>
195
196 </refsect1>
197
198 <refsect1>
199 <title>Types String Grammar</title>
200
201 <programlisting>types ::= complete_type*
202 complete_type ::= basic_type | variant | structure | array | dictionary
203 basic_type ::= "y" | "n" | "q" | "u" | "i" | "x" | "t" | "d" |
204 "b" | "h" |
205 "s" | "o" | "g"
206 variant ::= "v"
207 structure ::= "(" complete_type+ ")"
208 array ::= "a" complete_type
209 dictionary ::= "a" "{" basic_type complete_type "}"
210 </programlisting>
211 </refsect1>
212
213 <refsect1>
214 <title>Examples</title>
215
216 <para>Append a single basic type (the string <literal>a string</literal>):
217 </para>
218
219 <programlisting>sd_bus_message *m;
220
221 sd_bus_message_append(m, "s", "a string");</programlisting>
222
223 <para>Append all types of integers:</para>
224
225 <programlisting>uint8_t y = 1;
226 int16_t n = 2;
227 uint16_t q = 3;
228 int32_t i = 4;
229 uint32_t u = 5;
230 int32_t x = 6;
231 uint32_t t = 7;
232 double d = 8.0;
233 sd_bus_message_append(m, "ynqiuxtd", y, n, q, i, u, x, t, d);</programlisting>
234
235 <para>Append a structure composed of a string and a D-Bus path:</para>
236
237 <programlisting>sd_bus_message_append(m, "(so)", "a string", "/a/path");
238 </programlisting>
239
240 <para>Append an array of UNIX file descriptors:</para>
241
242 <programlisting>sd_bus_message_append(m, "ah", 3, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO);
243 </programlisting>
244
245 <para>Append a variant, with the real type "g" (signature),
246 and value "sdbusisgood":</para>
247
248 <programlisting>sd_bus_message_append(m, "v", "g", "sdbusisgood");</programlisting>
249
250 <para>Append a dictionary containing the mapping {1=>"a", 2=>"b", 3=>""}:
251 </para>
252
253 <programlisting>sd_bus_message_append(m, "a{is}", 3, 1, "a", 2, "b", 3, NULL);
254 </programlisting>
255 </refsect1>
256
257 <refsect1>
258 <title>Return Value</title>
259
260 <para>On success, these functions return 0 or a positive
261 integer. On failure, these functions return a negative
262 errno-style error code.</para>
263 </refsect1>
264
265 <xi:include href="sd_bus_message_append_basic.xml" xpointer="errors" />
266
267 <refsect1>
268 <title>Notes</title>
269
270 <para><function>sd_bus_open_user()</function> and other functions
271 described here are available as a shared library, which can be
272 compiled and linked to with the
273 <constant>libsystemd-bus</constant> <citerefentry project='die-net'><refentrytitle>pkg-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
274 file.</para>
275 </refsect1>
276
277 <refsect1>
278 <title>See Also</title>
279
280 <para>
281 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
282 <citerefentry><refentrytitle>sd-bus</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
283 <citerefentry><refentrytitle>sd_bus_message_append_basic</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
284 <citerefentry><refentrytitle>sd_bus_message_append_array</refentrytitle><manvolnum>3</manvolnum></citerefentry>
285 </para>
286 </refsect1>
287
288 </refentry>