fidl_driver_multiname_test/
fidl_driver_multiname_test.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_driver_multiname_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct TestAddDeviceMarker;
16
17impl fidl::endpoints::ProtocolMarker for TestAddDeviceMarker {
18 type Proxy = TestAddDeviceProxy;
19 type RequestStream = TestAddDeviceRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = TestAddDeviceSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) TestAddDevice";
24}
25pub type TestAddDeviceAddDeviceResult = Result<(), i32>;
26
27pub trait TestAddDeviceProxyInterface: Send + Sync {
28 type AddDeviceResponseFut: std::future::Future<Output = Result<TestAddDeviceAddDeviceResult, fidl::Error>>
29 + Send;
30 fn r#add_device(&self) -> Self::AddDeviceResponseFut;
31}
32#[derive(Debug)]
33#[cfg(target_os = "fuchsia")]
34pub struct TestAddDeviceSynchronousProxy {
35 client: fidl::client::sync::Client,
36}
37
38#[cfg(target_os = "fuchsia")]
39impl fidl::endpoints::SynchronousProxy for TestAddDeviceSynchronousProxy {
40 type Proxy = TestAddDeviceProxy;
41 type Protocol = TestAddDeviceMarker;
42
43 fn from_channel(inner: fidl::Channel) -> Self {
44 Self::new(inner)
45 }
46
47 fn into_channel(self) -> fidl::Channel {
48 self.client.into_channel()
49 }
50
51 fn as_channel(&self) -> &fidl::Channel {
52 self.client.as_channel()
53 }
54}
55
56#[cfg(target_os = "fuchsia")]
57impl TestAddDeviceSynchronousProxy {
58 pub fn new(channel: fidl::Channel) -> Self {
59 let protocol_name = <TestAddDeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
60 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
61 }
62
63 pub fn into_channel(self) -> fidl::Channel {
64 self.client.into_channel()
65 }
66
67 pub fn wait_for_event(
70 &self,
71 deadline: zx::MonotonicInstant,
72 ) -> Result<TestAddDeviceEvent, fidl::Error> {
73 TestAddDeviceEvent::decode(self.client.wait_for_event(deadline)?)
74 }
75
76 pub fn r#add_device(
77 &self,
78 ___deadline: zx::MonotonicInstant,
79 ) -> Result<TestAddDeviceAddDeviceResult, fidl::Error> {
80 let _response = self.client.send_query::<
81 fidl::encoding::EmptyPayload,
82 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
83 >(
84 (),
85 0x2b067d85a87c9503,
86 fidl::encoding::DynamicFlags::empty(),
87 ___deadline,
88 )?;
89 Ok(_response.map(|x| x))
90 }
91}
92
93#[cfg(target_os = "fuchsia")]
94impl From<TestAddDeviceSynchronousProxy> for zx::Handle {
95 fn from(value: TestAddDeviceSynchronousProxy) -> Self {
96 value.into_channel().into()
97 }
98}
99
100#[cfg(target_os = "fuchsia")]
101impl From<fidl::Channel> for TestAddDeviceSynchronousProxy {
102 fn from(value: fidl::Channel) -> Self {
103 Self::new(value)
104 }
105}
106
107#[derive(Debug, Clone)]
108pub struct TestAddDeviceProxy {
109 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
110}
111
112impl fidl::endpoints::Proxy for TestAddDeviceProxy {
113 type Protocol = TestAddDeviceMarker;
114
115 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
116 Self::new(inner)
117 }
118
119 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
120 self.client.into_channel().map_err(|client| Self { client })
121 }
122
123 fn as_channel(&self) -> &::fidl::AsyncChannel {
124 self.client.as_channel()
125 }
126}
127
128impl TestAddDeviceProxy {
129 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
131 let protocol_name = <TestAddDeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
132 Self { client: fidl::client::Client::new(channel, protocol_name) }
133 }
134
135 pub fn take_event_stream(&self) -> TestAddDeviceEventStream {
141 TestAddDeviceEventStream { event_receiver: self.client.take_event_receiver() }
142 }
143
144 pub fn r#add_device(
145 &self,
146 ) -> fidl::client::QueryResponseFut<
147 TestAddDeviceAddDeviceResult,
148 fidl::encoding::DefaultFuchsiaResourceDialect,
149 > {
150 TestAddDeviceProxyInterface::r#add_device(self)
151 }
152}
153
154impl TestAddDeviceProxyInterface for TestAddDeviceProxy {
155 type AddDeviceResponseFut = fidl::client::QueryResponseFut<
156 TestAddDeviceAddDeviceResult,
157 fidl::encoding::DefaultFuchsiaResourceDialect,
158 >;
159 fn r#add_device(&self) -> Self::AddDeviceResponseFut {
160 fn _decode(
161 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
162 ) -> Result<TestAddDeviceAddDeviceResult, fidl::Error> {
163 let _response = fidl::client::decode_transaction_body::<
164 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
165 fidl::encoding::DefaultFuchsiaResourceDialect,
166 0x2b067d85a87c9503,
167 >(_buf?)?;
168 Ok(_response.map(|x| x))
169 }
170 self.client
171 .send_query_and_decode::<fidl::encoding::EmptyPayload, TestAddDeviceAddDeviceResult>(
172 (),
173 0x2b067d85a87c9503,
174 fidl::encoding::DynamicFlags::empty(),
175 _decode,
176 )
177 }
178}
179
180pub struct TestAddDeviceEventStream {
181 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
182}
183
184impl std::marker::Unpin for TestAddDeviceEventStream {}
185
186impl futures::stream::FusedStream for TestAddDeviceEventStream {
187 fn is_terminated(&self) -> bool {
188 self.event_receiver.is_terminated()
189 }
190}
191
192impl futures::Stream for TestAddDeviceEventStream {
193 type Item = Result<TestAddDeviceEvent, fidl::Error>;
194
195 fn poll_next(
196 mut self: std::pin::Pin<&mut Self>,
197 cx: &mut std::task::Context<'_>,
198 ) -> std::task::Poll<Option<Self::Item>> {
199 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
200 &mut self.event_receiver,
201 cx
202 )?) {
203 Some(buf) => std::task::Poll::Ready(Some(TestAddDeviceEvent::decode(buf))),
204 None => std::task::Poll::Ready(None),
205 }
206 }
207}
208
209#[derive(Debug)]
210pub enum TestAddDeviceEvent {}
211
212impl TestAddDeviceEvent {
213 fn decode(
215 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
216 ) -> Result<TestAddDeviceEvent, fidl::Error> {
217 let (bytes, _handles) = buf.split_mut();
218 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
219 debug_assert_eq!(tx_header.tx_id, 0);
220 match tx_header.ordinal {
221 _ => Err(fidl::Error::UnknownOrdinal {
222 ordinal: tx_header.ordinal,
223 protocol_name: <TestAddDeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
224 }),
225 }
226 }
227}
228
229pub struct TestAddDeviceRequestStream {
231 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
232 is_terminated: bool,
233}
234
235impl std::marker::Unpin for TestAddDeviceRequestStream {}
236
237impl futures::stream::FusedStream for TestAddDeviceRequestStream {
238 fn is_terminated(&self) -> bool {
239 self.is_terminated
240 }
241}
242
243impl fidl::endpoints::RequestStream for TestAddDeviceRequestStream {
244 type Protocol = TestAddDeviceMarker;
245 type ControlHandle = TestAddDeviceControlHandle;
246
247 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
248 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
249 }
250
251 fn control_handle(&self) -> Self::ControlHandle {
252 TestAddDeviceControlHandle { inner: self.inner.clone() }
253 }
254
255 fn into_inner(
256 self,
257 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
258 {
259 (self.inner, self.is_terminated)
260 }
261
262 fn from_inner(
263 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
264 is_terminated: bool,
265 ) -> Self {
266 Self { inner, is_terminated }
267 }
268}
269
270impl futures::Stream for TestAddDeviceRequestStream {
271 type Item = Result<TestAddDeviceRequest, fidl::Error>;
272
273 fn poll_next(
274 mut self: std::pin::Pin<&mut Self>,
275 cx: &mut std::task::Context<'_>,
276 ) -> std::task::Poll<Option<Self::Item>> {
277 let this = &mut *self;
278 if this.inner.check_shutdown(cx) {
279 this.is_terminated = true;
280 return std::task::Poll::Ready(None);
281 }
282 if this.is_terminated {
283 panic!("polled TestAddDeviceRequestStream after completion");
284 }
285 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
286 |bytes, handles| {
287 match this.inner.channel().read_etc(cx, bytes, handles) {
288 std::task::Poll::Ready(Ok(())) => {}
289 std::task::Poll::Pending => return std::task::Poll::Pending,
290 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
291 this.is_terminated = true;
292 return std::task::Poll::Ready(None);
293 }
294 std::task::Poll::Ready(Err(e)) => {
295 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
296 e.into(),
297 ))))
298 }
299 }
300
301 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
303
304 std::task::Poll::Ready(Some(match header.ordinal {
305 0x2b067d85a87c9503 => {
306 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
307 let mut req = fidl::new_empty!(
308 fidl::encoding::EmptyPayload,
309 fidl::encoding::DefaultFuchsiaResourceDialect
310 );
311 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
312 let control_handle =
313 TestAddDeviceControlHandle { inner: this.inner.clone() };
314 Ok(TestAddDeviceRequest::AddDevice {
315 responder: TestAddDeviceAddDeviceResponder {
316 control_handle: std::mem::ManuallyDrop::new(control_handle),
317 tx_id: header.tx_id,
318 },
319 })
320 }
321 _ => Err(fidl::Error::UnknownOrdinal {
322 ordinal: header.ordinal,
323 protocol_name:
324 <TestAddDeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
325 }),
326 }))
327 },
328 )
329 }
330}
331
332#[derive(Debug)]
333pub enum TestAddDeviceRequest {
334 AddDevice { responder: TestAddDeviceAddDeviceResponder },
335}
336
337impl TestAddDeviceRequest {
338 #[allow(irrefutable_let_patterns)]
339 pub fn into_add_device(self) -> Option<(TestAddDeviceAddDeviceResponder)> {
340 if let TestAddDeviceRequest::AddDevice { responder } = self {
341 Some((responder))
342 } else {
343 None
344 }
345 }
346
347 pub fn method_name(&self) -> &'static str {
349 match *self {
350 TestAddDeviceRequest::AddDevice { .. } => "add_device",
351 }
352 }
353}
354
355#[derive(Debug, Clone)]
356pub struct TestAddDeviceControlHandle {
357 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
358}
359
360impl fidl::endpoints::ControlHandle for TestAddDeviceControlHandle {
361 fn shutdown(&self) {
362 self.inner.shutdown()
363 }
364 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
365 self.inner.shutdown_with_epitaph(status)
366 }
367
368 fn is_closed(&self) -> bool {
369 self.inner.channel().is_closed()
370 }
371 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
372 self.inner.channel().on_closed()
373 }
374
375 #[cfg(target_os = "fuchsia")]
376 fn signal_peer(
377 &self,
378 clear_mask: zx::Signals,
379 set_mask: zx::Signals,
380 ) -> Result<(), zx_status::Status> {
381 use fidl::Peered;
382 self.inner.channel().signal_peer(clear_mask, set_mask)
383 }
384}
385
386impl TestAddDeviceControlHandle {}
387
388#[must_use = "FIDL methods require a response to be sent"]
389#[derive(Debug)]
390pub struct TestAddDeviceAddDeviceResponder {
391 control_handle: std::mem::ManuallyDrop<TestAddDeviceControlHandle>,
392 tx_id: u32,
393}
394
395impl std::ops::Drop for TestAddDeviceAddDeviceResponder {
399 fn drop(&mut self) {
400 self.control_handle.shutdown();
401 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
403 }
404}
405
406impl fidl::endpoints::Responder for TestAddDeviceAddDeviceResponder {
407 type ControlHandle = TestAddDeviceControlHandle;
408
409 fn control_handle(&self) -> &TestAddDeviceControlHandle {
410 &self.control_handle
411 }
412
413 fn drop_without_shutdown(mut self) {
414 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
416 std::mem::forget(self);
418 }
419}
420
421impl TestAddDeviceAddDeviceResponder {
422 pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
426 let _result = self.send_raw(result);
427 if _result.is_err() {
428 self.control_handle.shutdown();
429 }
430 self.drop_without_shutdown();
431 _result
432 }
433
434 pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
436 let _result = self.send_raw(result);
437 self.drop_without_shutdown();
438 _result
439 }
440
441 fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
442 self.control_handle
443 .inner
444 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
445 result,
446 self.tx_id,
447 0x2b067d85a87c9503,
448 fidl::encoding::DynamicFlags::empty(),
449 )
450 }
451}
452
453mod internal {
454 use super::*;
455}