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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
// This file was automatically generated by ros2msg_to_rs (https://github.com/tier4/ros2msg_to_rs).
use super::super::super::*;
use super::super::*;
use crate::msg::common_interfaces::*;
use crate::msg::*;
use crate::rcl;

extern "C" {
    fn std_srvs__srv__SetBool_Request__init(msg: *mut SetBoolRequest) -> bool;
    fn std_srvs__srv__SetBool_Request__fini(msg: *mut SetBoolRequest);
    fn std_srvs__srv__SetBool_Request__Sequence__init(
        msg: *mut SetBoolRequestSeqRaw,
        size: usize,
    ) -> bool;
    fn std_srvs__srv__SetBool_Request__Sequence__fini(msg: *mut SetBoolRequestSeqRaw);
    fn std_srvs__srv__SetBool_Response__init(msg: *mut SetBoolResponse) -> bool;
    fn std_srvs__srv__SetBool_Response__fini(msg: *mut SetBoolResponse);
    fn std_srvs__srv__SetBool_Response__Sequence__init(
        msg: *mut SetBoolResponseSeqRaw,
        size: usize,
    ) -> bool;
    fn std_srvs__srv__SetBool_Response__Sequence__fini(msg: *mut SetBoolResponseSeqRaw);
    fn rosidl_typesupport_c__get_service_type_support_handle__std_srvs__srv__SetBool(
    ) -> *const rcl::rosidl_service_type_support_t;
    fn rosidl_typesupport_c__get_message_type_support_handle__std_srvs__srv__SetBool_Request(
    ) -> *const rcl::rosidl_message_type_support_t;
    fn rosidl_typesupport_c__get_message_type_support_handle__std_srvs__srv__SetBool_Response(
    ) -> *const rcl::rosidl_message_type_support_t;
}

#[repr(C)]
#[derive(Debug)]
pub struct SetBoolRequest {
    pub data: bool,
}

#[repr(C)]
#[derive(Debug)]
pub struct SetBoolResponse {
    pub success: bool,
    pub message: crate::msg::RosString<0>,
}

impl SetBoolRequest {
    pub fn new() -> Option<Self> {
        let mut msg: Self = unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        if unsafe { std_srvs__srv__SetBool_Request__init(&mut msg) } {
            Some(msg)
        } else {
            None
        }
    }
}

impl Drop for SetBoolRequest {
    fn drop(&mut self) {
        unsafe { std_srvs__srv__SetBool_Request__fini(self) };
    }
}

#[repr(C)]
#[derive(Debug)]
struct SetBoolRequestSeqRaw {
    data: *mut SetBoolRequest,
    size: usize,
    capacity: usize,
}

/// Sequence of SetBoolRequest.
/// `N` is the maximum number of elements.
/// If `N` is `0`, the size is unlimited.
#[repr(C)]
#[derive(Debug)]
pub struct SetBoolRequestSeq<const N: usize> {
    data: *mut SetBoolRequest,
    size: usize,
    capacity: usize,
}

impl<const N: usize> SetBoolRequestSeq<N> {
    /// Create a sequence of.
    /// `N` represents the maximum number of elements.
    /// If `N` is `0`, the sequence is unlimited.
    pub fn new(size: usize) -> Option<Self> {
        if N != 0 && size > N {
            // the size exceeds in the maximum number
            return None;
        }

        let mut msg: SetBoolRequestSeqRaw =
            unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        if unsafe { std_srvs__srv__SetBool_Request__Sequence__init(&mut msg, size) } {
            Some(Self {
                data: msg.data,
                size: msg.size,
                capacity: msg.capacity,
            })
        } else {
            None
        }
    }

    pub fn null() -> Self {
        let msg: SetBoolRequestSeqRaw = unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        Self {
            data: msg.data,
            size: msg.size,
            capacity: msg.capacity,
        }
    }

    pub fn as_slice(&self) -> &[SetBoolRequest] {
        if self.data.is_null() {
            &[]
        } else {
            let s = unsafe { std::slice::from_raw_parts(self.data, self.size) };
            s
        }
    }

    pub fn as_slice_mut(&mut self) -> &mut [SetBoolRequest] {
        if self.data.is_null() {
            &mut []
        } else {
            let s = unsafe { std::slice::from_raw_parts_mut(self.data, self.size) };
            s
        }
    }

    pub fn iter(&self) -> std::slice::Iter<'_, SetBoolRequest> {
        self.as_slice().iter()
    }

    pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, SetBoolRequest> {
        self.as_slice_mut().iter_mut()
    }

    pub fn len(&self) -> usize {
        self.as_slice().len()
    }

    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }
}

impl<const N: usize> Drop for SetBoolRequestSeq<N> {
    fn drop(&mut self) {
        let mut msg = SetBoolRequestSeqRaw {
            data: self.data,
            size: self.size,
            capacity: self.capacity,
        };
        unsafe { std_srvs__srv__SetBool_Request__Sequence__fini(&mut msg) };
    }
}

unsafe impl<const N: usize> Send for SetBoolRequestSeq<N> {}
unsafe impl<const N: usize> Sync for SetBoolRequestSeq<N> {}

impl SetBoolResponse {
    pub fn new() -> Option<Self> {
        let mut msg: Self = unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        if unsafe { std_srvs__srv__SetBool_Response__init(&mut msg) } {
            Some(msg)
        } else {
            None
        }
    }
}

impl Drop for SetBoolResponse {
    fn drop(&mut self) {
        unsafe { std_srvs__srv__SetBool_Response__fini(self) };
    }
}

#[repr(C)]
#[derive(Debug)]
struct SetBoolResponseSeqRaw {
    data: *mut SetBoolResponse,
    size: usize,
    capacity: usize,
}

/// Sequence of SetBoolResponse.
/// `N` is the maximum number of elements.
/// If `N` is `0`, the size is unlimited.
#[repr(C)]
#[derive(Debug)]
pub struct SetBoolResponseSeq<const N: usize> {
    data: *mut SetBoolResponse,
    size: usize,
    capacity: usize,
}

impl<const N: usize> SetBoolResponseSeq<N> {
    /// Create a sequence of.
    /// `N` represents the maximum number of elements.
    /// If `N` is `0`, the sequence is unlimited.
    pub fn new(size: usize) -> Option<Self> {
        if N != 0 && size > N {
            // the size exceeds in the maximum number
            return None;
        }

        let mut msg: SetBoolResponseSeqRaw =
            unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        if unsafe { std_srvs__srv__SetBool_Response__Sequence__init(&mut msg, size) } {
            Some(Self {
                data: msg.data,
                size: msg.size,
                capacity: msg.capacity,
            })
        } else {
            None
        }
    }

    pub fn null() -> Self {
        let msg: SetBoolResponseSeqRaw = unsafe { std::mem::MaybeUninit::zeroed().assume_init() };
        Self {
            data: msg.data,
            size: msg.size,
            capacity: msg.capacity,
        }
    }

    pub fn as_slice(&self) -> &[SetBoolResponse] {
        if self.data.is_null() {
            &[]
        } else {
            let s = unsafe { std::slice::from_raw_parts(self.data, self.size) };
            s
        }
    }

    pub fn as_slice_mut(&mut self) -> &mut [SetBoolResponse] {
        if self.data.is_null() {
            &mut []
        } else {
            let s = unsafe { std::slice::from_raw_parts_mut(self.data, self.size) };
            s
        }
    }

    pub fn iter(&self) -> std::slice::Iter<'_, SetBoolResponse> {
        self.as_slice().iter()
    }

    pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, SetBoolResponse> {
        self.as_slice_mut().iter_mut()
    }

    pub fn len(&self) -> usize {
        self.as_slice().len()
    }

    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }
}

impl<const N: usize> Drop for SetBoolResponseSeq<N> {
    fn drop(&mut self) {
        let mut msg = SetBoolResponseSeqRaw {
            data: self.data,
            size: self.size,
            capacity: self.capacity,
        };
        unsafe { std_srvs__srv__SetBool_Response__Sequence__fini(&mut msg) };
    }
}

unsafe impl<const N: usize> Send for SetBoolResponseSeq<N> {}
unsafe impl<const N: usize> Sync for SetBoolResponseSeq<N> {}

pub struct SetBool;

impl ServiceMsg for SetBool {
    type Request = SetBoolRequest;
    type Response = SetBoolResponse;
    fn type_support() -> *const rcl::rosidl_service_type_support_t {
        unsafe { rosidl_typesupport_c__get_service_type_support_handle__std_srvs__srv__SetBool() }
    }
}

impl TypeSupport for SetBoolRequest {
    fn type_support() -> *const rcl::rosidl_message_type_support_t {
        unsafe {
            rosidl_typesupport_c__get_message_type_support_handle__std_srvs__srv__SetBool_Request()
        }
    }
}

impl TypeSupport for SetBoolResponse {
    fn type_support() -> *const rcl::rosidl_message_type_support_t {
        unsafe {
            rosidl_typesupport_c__get_message_type_support_handle__std_srvs__srv__SetBool_Response()
        }
    }
}