1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
<template name="file-header">
/*
Generated by sbus code generator
Copyright (C) 2017 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ${file-guard}
#define ${file-guard}
#include <errno.h>
#include <talloc.h>
#include <tevent.h>
#include "${sbus-path}/sbus.h"
#include "${header:client_properties}"
<loop name="custom-type-header">
#include "${custom-type-header}"
</loop>
</template>
<template name="method-caller">
struct tevent_req *
sbus_call_${token}_send
(TALLOC_CTX *mem_ctx,
struct sbus_connection *conn,
<toggle name="if-raw-input">
DBusMessage *raw_message);
<or>
const char *busname,
const char *object_path<loop name="in">,
${type} arg_${name}</loop>);
</toggle>
errno_t
sbus_call_${token}_recv
(<toggle name="if-use-talloc">TALLOC_CTX *mem_ctx,
struct tevent_req *req<or>struct tevent_req *req</toggle><toggle name="if-raw-output">,
DBusMessage **_reply);
<or><loop name="out">,
${type} _${name}</loop>);
</toggle>
</template>
<template name="signal-caller">
void
sbus_emit_${token}
(struct sbus_connection *conn,
<toggle name="if-raw-input">
DBusMessage *raw_message);
<or>
const char *object_path<loop name="in">,
${type} arg_${name}</loop>);
</toggle>
</template>
<template name="property-caller">
<toggle name="get-static">
struct tevent_req *
sbus_get_${token}_send
(TALLOC_CTX *mem_ctx,
struct sbus_connection *conn,
const char *busname,
const char *object_path);
errno_t
sbus_get_${token}_recv
(struct tevent_req *req,
${output-type} _value);
</toggle>
<toggle name="get-talloc">
struct tevent_req *
sbus_get_${token}_send
(TALLOC_CTX *mem_ctx,
struct sbus_connection *conn,
const char *busname,
const char *object_path);
errno_t
sbus_get_${token}_recv
(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
${output-type} _value);
</toggle>
<toggle name="set">
struct tevent_req *
sbus_set_${token}_send
(TALLOC_CTX *mem_ctx,
struct sbus_connection *conn,
const char *busname,
const char *object_path,
${input-type} value);
errno_t
sbus_set_${token}_recv
(struct tevent_req *req);
</toggle>
</template>
<template name="getall-caller">
struct tevent_req *
sbus_getall_${token}_send
(TALLOC_CTX *mem_ctx,
struct sbus_connection *conn,
const char *busname,
const char *object_path);
errno_t
sbus_getall_${token}_recv
(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
struct sbus_all_${token} **_properties);
</template>
<template name="file-footer">
#endif /* ${file-guard} */
</template>
|