fidl_test_persistence_factory/
fidl_test_persistence_factory.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_test_persistence_factory_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ControllerMarker;
16
17impl fidl::endpoints::ProtocolMarker for ControllerMarker {
18 type Proxy = ControllerProxy;
19 type RequestStream = ControllerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ControllerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "test.persistence.factory.Controller";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ControllerMarker {}
26
27pub trait ControllerProxyInterface: Send + Sync {
28 type SetUpdateCompletedResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
29 fn r#set_update_completed(&self) -> Self::SetUpdateCompletedResponseFut;
30}
31#[derive(Debug)]
32#[cfg(target_os = "fuchsia")]
33pub struct ControllerSynchronousProxy {
34 client: fidl::client::sync::Client,
35}
36
37#[cfg(target_os = "fuchsia")]
38impl fidl::endpoints::SynchronousProxy for ControllerSynchronousProxy {
39 type Proxy = ControllerProxy;
40 type Protocol = ControllerMarker;
41
42 fn from_channel(inner: fidl::Channel) -> Self {
43 Self::new(inner)
44 }
45
46 fn into_channel(self) -> fidl::Channel {
47 self.client.into_channel()
48 }
49
50 fn as_channel(&self) -> &fidl::Channel {
51 self.client.as_channel()
52 }
53}
54
55#[cfg(target_os = "fuchsia")]
56impl ControllerSynchronousProxy {
57 pub fn new(channel: fidl::Channel) -> Self {
58 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
59 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
60 }
61
62 pub fn into_channel(self) -> fidl::Channel {
63 self.client.into_channel()
64 }
65
66 pub fn wait_for_event(
69 &self,
70 deadline: zx::MonotonicInstant,
71 ) -> Result<ControllerEvent, fidl::Error> {
72 ControllerEvent::decode(self.client.wait_for_event(deadline)?)
73 }
74
75 pub fn r#set_update_completed(
77 &self,
78 ___deadline: zx::MonotonicInstant,
79 ) -> Result<(), fidl::Error> {
80 let _response = self.client.send_query::<
81 fidl::encoding::EmptyPayload,
82 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
83 >(
84 (),
85 0x5484f071a04be31,
86 fidl::encoding::DynamicFlags::FLEXIBLE,
87 ___deadline,
88 )?
89 .into_result::<ControllerMarker>("set_update_completed")?;
90 Ok(_response)
91 }
92}
93
94#[cfg(target_os = "fuchsia")]
95impl From<ControllerSynchronousProxy> for zx::Handle {
96 fn from(value: ControllerSynchronousProxy) -> Self {
97 value.into_channel().into()
98 }
99}
100
101#[cfg(target_os = "fuchsia")]
102impl From<fidl::Channel> for ControllerSynchronousProxy {
103 fn from(value: fidl::Channel) -> Self {
104 Self::new(value)
105 }
106}
107
108#[derive(Debug, Clone)]
109pub struct ControllerProxy {
110 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
111}
112
113impl fidl::endpoints::Proxy for ControllerProxy {
114 type Protocol = ControllerMarker;
115
116 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
117 Self::new(inner)
118 }
119
120 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
121 self.client.into_channel().map_err(|client| Self { client })
122 }
123
124 fn as_channel(&self) -> &::fidl::AsyncChannel {
125 self.client.as_channel()
126 }
127}
128
129impl ControllerProxy {
130 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
132 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
133 Self { client: fidl::client::Client::new(channel, protocol_name) }
134 }
135
136 pub fn take_event_stream(&self) -> ControllerEventStream {
142 ControllerEventStream { event_receiver: self.client.take_event_receiver() }
143 }
144
145 pub fn r#set_update_completed(
147 &self,
148 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
149 ControllerProxyInterface::r#set_update_completed(self)
150 }
151}
152
153impl ControllerProxyInterface for ControllerProxy {
154 type SetUpdateCompletedResponseFut =
155 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
156 fn r#set_update_completed(&self) -> Self::SetUpdateCompletedResponseFut {
157 fn _decode(
158 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
159 ) -> Result<(), fidl::Error> {
160 let _response = fidl::client::decode_transaction_body::<
161 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
162 fidl::encoding::DefaultFuchsiaResourceDialect,
163 0x5484f071a04be31,
164 >(_buf?)?
165 .into_result::<ControllerMarker>("set_update_completed")?;
166 Ok(_response)
167 }
168 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
169 (),
170 0x5484f071a04be31,
171 fidl::encoding::DynamicFlags::FLEXIBLE,
172 _decode,
173 )
174 }
175}
176
177pub struct ControllerEventStream {
178 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
179}
180
181impl std::marker::Unpin for ControllerEventStream {}
182
183impl futures::stream::FusedStream for ControllerEventStream {
184 fn is_terminated(&self) -> bool {
185 self.event_receiver.is_terminated()
186 }
187}
188
189impl futures::Stream for ControllerEventStream {
190 type Item = Result<ControllerEvent, fidl::Error>;
191
192 fn poll_next(
193 mut self: std::pin::Pin<&mut Self>,
194 cx: &mut std::task::Context<'_>,
195 ) -> std::task::Poll<Option<Self::Item>> {
196 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
197 &mut self.event_receiver,
198 cx
199 )?) {
200 Some(buf) => std::task::Poll::Ready(Some(ControllerEvent::decode(buf))),
201 None => std::task::Poll::Ready(None),
202 }
203 }
204}
205
206#[derive(Debug)]
207pub enum ControllerEvent {
208 #[non_exhaustive]
209 _UnknownEvent {
210 ordinal: u64,
212 },
213}
214
215impl ControllerEvent {
216 fn decode(
218 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
219 ) -> Result<ControllerEvent, fidl::Error> {
220 let (bytes, _handles) = buf.split_mut();
221 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
222 debug_assert_eq!(tx_header.tx_id, 0);
223 match tx_header.ordinal {
224 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
225 Ok(ControllerEvent::_UnknownEvent { ordinal: tx_header.ordinal })
226 }
227 _ => Err(fidl::Error::UnknownOrdinal {
228 ordinal: tx_header.ordinal,
229 protocol_name: <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
230 }),
231 }
232 }
233}
234
235pub struct ControllerRequestStream {
237 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
238 is_terminated: bool,
239}
240
241impl std::marker::Unpin for ControllerRequestStream {}
242
243impl futures::stream::FusedStream for ControllerRequestStream {
244 fn is_terminated(&self) -> bool {
245 self.is_terminated
246 }
247}
248
249impl fidl::endpoints::RequestStream for ControllerRequestStream {
250 type Protocol = ControllerMarker;
251 type ControlHandle = ControllerControlHandle;
252
253 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
254 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
255 }
256
257 fn control_handle(&self) -> Self::ControlHandle {
258 ControllerControlHandle { inner: self.inner.clone() }
259 }
260
261 fn into_inner(
262 self,
263 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
264 {
265 (self.inner, self.is_terminated)
266 }
267
268 fn from_inner(
269 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
270 is_terminated: bool,
271 ) -> Self {
272 Self { inner, is_terminated }
273 }
274}
275
276impl futures::Stream for ControllerRequestStream {
277 type Item = Result<ControllerRequest, fidl::Error>;
278
279 fn poll_next(
280 mut self: std::pin::Pin<&mut Self>,
281 cx: &mut std::task::Context<'_>,
282 ) -> std::task::Poll<Option<Self::Item>> {
283 let this = &mut *self;
284 if this.inner.check_shutdown(cx) {
285 this.is_terminated = true;
286 return std::task::Poll::Ready(None);
287 }
288 if this.is_terminated {
289 panic!("polled ControllerRequestStream after completion");
290 }
291 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
292 |bytes, handles| {
293 match this.inner.channel().read_etc(cx, bytes, handles) {
294 std::task::Poll::Ready(Ok(())) => {}
295 std::task::Poll::Pending => return std::task::Poll::Pending,
296 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
297 this.is_terminated = true;
298 return std::task::Poll::Ready(None);
299 }
300 std::task::Poll::Ready(Err(e)) => {
301 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
302 e.into(),
303 ))))
304 }
305 }
306
307 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
309
310 std::task::Poll::Ready(Some(match header.ordinal {
311 0x5484f071a04be31 => {
312 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
313 let mut req = fidl::new_empty!(
314 fidl::encoding::EmptyPayload,
315 fidl::encoding::DefaultFuchsiaResourceDialect
316 );
317 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
318 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
319 Ok(ControllerRequest::SetUpdateCompleted {
320 responder: ControllerSetUpdateCompletedResponder {
321 control_handle: std::mem::ManuallyDrop::new(control_handle),
322 tx_id: header.tx_id,
323 },
324 })
325 }
326 _ if header.tx_id == 0
327 && header
328 .dynamic_flags()
329 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
330 {
331 Ok(ControllerRequest::_UnknownMethod {
332 ordinal: header.ordinal,
333 control_handle: ControllerControlHandle { inner: this.inner.clone() },
334 method_type: fidl::MethodType::OneWay,
335 })
336 }
337 _ if header
338 .dynamic_flags()
339 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
340 {
341 this.inner.send_framework_err(
342 fidl::encoding::FrameworkErr::UnknownMethod,
343 header.tx_id,
344 header.ordinal,
345 header.dynamic_flags(),
346 (bytes, handles),
347 )?;
348 Ok(ControllerRequest::_UnknownMethod {
349 ordinal: header.ordinal,
350 control_handle: ControllerControlHandle { inner: this.inner.clone() },
351 method_type: fidl::MethodType::TwoWay,
352 })
353 }
354 _ => Err(fidl::Error::UnknownOrdinal {
355 ordinal: header.ordinal,
356 protocol_name:
357 <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
358 }),
359 }))
360 },
361 )
362 }
363}
364
365#[derive(Debug)]
367pub enum ControllerRequest {
368 SetUpdateCompleted { responder: ControllerSetUpdateCompletedResponder },
370 #[non_exhaustive]
372 _UnknownMethod {
373 ordinal: u64,
375 control_handle: ControllerControlHandle,
376 method_type: fidl::MethodType,
377 },
378}
379
380impl ControllerRequest {
381 #[allow(irrefutable_let_patterns)]
382 pub fn into_set_update_completed(self) -> Option<(ControllerSetUpdateCompletedResponder)> {
383 if let ControllerRequest::SetUpdateCompleted { responder } = self {
384 Some((responder))
385 } else {
386 None
387 }
388 }
389
390 pub fn method_name(&self) -> &'static str {
392 match *self {
393 ControllerRequest::SetUpdateCompleted { .. } => "set_update_completed",
394 ControllerRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
395 "unknown one-way method"
396 }
397 ControllerRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
398 "unknown two-way method"
399 }
400 }
401 }
402}
403
404#[derive(Debug, Clone)]
405pub struct ControllerControlHandle {
406 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
407}
408
409impl fidl::endpoints::ControlHandle for ControllerControlHandle {
410 fn shutdown(&self) {
411 self.inner.shutdown()
412 }
413 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
414 self.inner.shutdown_with_epitaph(status)
415 }
416
417 fn is_closed(&self) -> bool {
418 self.inner.channel().is_closed()
419 }
420 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
421 self.inner.channel().on_closed()
422 }
423
424 #[cfg(target_os = "fuchsia")]
425 fn signal_peer(
426 &self,
427 clear_mask: zx::Signals,
428 set_mask: zx::Signals,
429 ) -> Result<(), zx_status::Status> {
430 use fidl::Peered;
431 self.inner.channel().signal_peer(clear_mask, set_mask)
432 }
433}
434
435impl ControllerControlHandle {}
436
437#[must_use = "FIDL methods require a response to be sent"]
438#[derive(Debug)]
439pub struct ControllerSetUpdateCompletedResponder {
440 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
441 tx_id: u32,
442}
443
444impl std::ops::Drop for ControllerSetUpdateCompletedResponder {
448 fn drop(&mut self) {
449 self.control_handle.shutdown();
450 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
452 }
453}
454
455impl fidl::endpoints::Responder for ControllerSetUpdateCompletedResponder {
456 type ControlHandle = ControllerControlHandle;
457
458 fn control_handle(&self) -> &ControllerControlHandle {
459 &self.control_handle
460 }
461
462 fn drop_without_shutdown(mut self) {
463 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
465 std::mem::forget(self);
467 }
468}
469
470impl ControllerSetUpdateCompletedResponder {
471 pub fn send(self) -> Result<(), fidl::Error> {
475 let _result = self.send_raw();
476 if _result.is_err() {
477 self.control_handle.shutdown();
478 }
479 self.drop_without_shutdown();
480 _result
481 }
482
483 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
485 let _result = self.send_raw();
486 self.drop_without_shutdown();
487 _result
488 }
489
490 fn send_raw(&self) -> Result<(), fidl::Error> {
491 self.control_handle.inner.send::<fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>>(
492 fidl::encoding::Flexible::new(()),
493 self.tx_id,
494 0x5484f071a04be31,
495 fidl::encoding::DynamicFlags::FLEXIBLE,
496 )
497 }
498}
499
500mod internal {
501 use super::*;
502}