1#![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_fuchsia_hardware_sensors_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct DriverMarker;
16
17impl fidl::endpoints::ProtocolMarker for DriverMarker {
18 type Proxy = DriverProxy;
19 type RequestStream = DriverRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = DriverSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.hardware.sensors.Driver";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for DriverMarker {}
26pub type DriverActivateSensorResult = Result<(), ActivateSensorError>;
27pub type DriverDeactivateSensorResult = Result<(), DeactivateSensorError>;
28pub type DriverConfigureSensorRateResult = Result<(), ConfigureSensorRateError>;
29
30pub trait DriverProxyInterface: Send + Sync {
31 type GetSensorsListResponseFut: std::future::Future<
32 Output = Result<Vec<fidl_fuchsia_sensors_types::SensorInfo>, fidl::Error>,
33 > + Send;
34 fn r#get_sensors_list(&self) -> Self::GetSensorsListResponseFut;
35 type ActivateSensorResponseFut: std::future::Future<Output = Result<DriverActivateSensorResult, fidl::Error>>
36 + Send;
37 fn r#activate_sensor(&self, sensor_id: i32) -> Self::ActivateSensorResponseFut;
38 type DeactivateSensorResponseFut: std::future::Future<Output = Result<DriverDeactivateSensorResult, fidl::Error>>
39 + Send;
40 fn r#deactivate_sensor(&self, sensor_id: i32) -> Self::DeactivateSensorResponseFut;
41 type ConfigureSensorRateResponseFut: std::future::Future<Output = Result<DriverConfigureSensorRateResult, fidl::Error>>
42 + Send;
43 fn r#configure_sensor_rate(
44 &self,
45 sensor_id: i32,
46 sensor_rate_config: &fidl_fuchsia_sensors_types::SensorRateConfig,
47 ) -> Self::ConfigureSensorRateResponseFut;
48}
49#[derive(Debug)]
50#[cfg(target_os = "fuchsia")]
51pub struct DriverSynchronousProxy {
52 client: fidl::client::sync::Client,
53}
54
55#[cfg(target_os = "fuchsia")]
56impl fidl::endpoints::SynchronousProxy for DriverSynchronousProxy {
57 type Proxy = DriverProxy;
58 type Protocol = DriverMarker;
59
60 fn from_channel(inner: fidl::Channel) -> Self {
61 Self::new(inner)
62 }
63
64 fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 fn as_channel(&self) -> &fidl::Channel {
69 self.client.as_channel()
70 }
71}
72
73#[cfg(target_os = "fuchsia")]
74impl DriverSynchronousProxy {
75 pub fn new(channel: fidl::Channel) -> Self {
76 let protocol_name = <DriverMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
77 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
78 }
79
80 pub fn into_channel(self) -> fidl::Channel {
81 self.client.into_channel()
82 }
83
84 pub fn wait_for_event(
87 &self,
88 deadline: zx::MonotonicInstant,
89 ) -> Result<DriverEvent, fidl::Error> {
90 DriverEvent::decode(self.client.wait_for_event(deadline)?)
91 }
92
93 pub fn r#get_sensors_list(
95 &self,
96 ___deadline: zx::MonotonicInstant,
97 ) -> Result<Vec<fidl_fuchsia_sensors_types::SensorInfo>, fidl::Error> {
98 let _response = self.client.send_query::<
99 fidl::encoding::EmptyPayload,
100 fidl::encoding::FlexibleType<DriverGetSensorsListResponse>,
101 >(
102 (),
103 0x6a30da06929d426b,
104 fidl::encoding::DynamicFlags::FLEXIBLE,
105 ___deadline,
106 )?
107 .into_result::<DriverMarker>("get_sensors_list")?;
108 Ok(_response.sensor_list)
109 }
110
111 pub fn r#activate_sensor(
113 &self,
114 mut sensor_id: i32,
115 ___deadline: zx::MonotonicInstant,
116 ) -> Result<DriverActivateSensorResult, fidl::Error> {
117 let _response =
118 self.client
119 .send_query::<DriverActivateSensorRequest, fidl::encoding::FlexibleResultType<
120 fidl::encoding::EmptyStruct,
121 ActivateSensorError,
122 >>(
123 (sensor_id,),
124 0x6ff16c620f9f3c5b,
125 fidl::encoding::DynamicFlags::FLEXIBLE,
126 ___deadline,
127 )?
128 .into_result::<DriverMarker>("activate_sensor")?;
129 Ok(_response.map(|x| x))
130 }
131
132 pub fn r#deactivate_sensor(
134 &self,
135 mut sensor_id: i32,
136 ___deadline: zx::MonotonicInstant,
137 ) -> Result<DriverDeactivateSensorResult, fidl::Error> {
138 let _response =
139 self.client
140 .send_query::<DriverDeactivateSensorRequest, fidl::encoding::FlexibleResultType<
141 fidl::encoding::EmptyStruct,
142 DeactivateSensorError,
143 >>(
144 (sensor_id,),
145 0x64f003527d44ec55,
146 fidl::encoding::DynamicFlags::FLEXIBLE,
147 ___deadline,
148 )?
149 .into_result::<DriverMarker>("deactivate_sensor")?;
150 Ok(_response.map(|x| x))
151 }
152
153 pub fn r#configure_sensor_rate(
155 &self,
156 mut sensor_id: i32,
157 mut sensor_rate_config: &fidl_fuchsia_sensors_types::SensorRateConfig,
158 ___deadline: zx::MonotonicInstant,
159 ) -> Result<DriverConfigureSensorRateResult, fidl::Error> {
160 let _response = self
161 .client
162 .send_query::<DriverConfigureSensorRateRequest, fidl::encoding::FlexibleResultType<
163 fidl::encoding::EmptyStruct,
164 ConfigureSensorRateError,
165 >>(
166 (sensor_id, sensor_rate_config),
167 0x78a264bc9c645045,
168 fidl::encoding::DynamicFlags::FLEXIBLE,
169 ___deadline,
170 )?
171 .into_result::<DriverMarker>("configure_sensor_rate")?;
172 Ok(_response.map(|x| x))
173 }
174}
175
176#[cfg(target_os = "fuchsia")]
177impl From<DriverSynchronousProxy> for zx::Handle {
178 fn from(value: DriverSynchronousProxy) -> Self {
179 value.into_channel().into()
180 }
181}
182
183#[cfg(target_os = "fuchsia")]
184impl From<fidl::Channel> for DriverSynchronousProxy {
185 fn from(value: fidl::Channel) -> Self {
186 Self::new(value)
187 }
188}
189
190#[derive(Debug, Clone)]
191pub struct DriverProxy {
192 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
193}
194
195impl fidl::endpoints::Proxy for DriverProxy {
196 type Protocol = DriverMarker;
197
198 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
199 Self::new(inner)
200 }
201
202 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
203 self.client.into_channel().map_err(|client| Self { client })
204 }
205
206 fn as_channel(&self) -> &::fidl::AsyncChannel {
207 self.client.as_channel()
208 }
209}
210
211impl DriverProxy {
212 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
214 let protocol_name = <DriverMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
215 Self { client: fidl::client::Client::new(channel, protocol_name) }
216 }
217
218 pub fn take_event_stream(&self) -> DriverEventStream {
224 DriverEventStream { event_receiver: self.client.take_event_receiver() }
225 }
226
227 pub fn r#get_sensors_list(
229 &self,
230 ) -> fidl::client::QueryResponseFut<
231 Vec<fidl_fuchsia_sensors_types::SensorInfo>,
232 fidl::encoding::DefaultFuchsiaResourceDialect,
233 > {
234 DriverProxyInterface::r#get_sensors_list(self)
235 }
236
237 pub fn r#activate_sensor(
239 &self,
240 mut sensor_id: i32,
241 ) -> fidl::client::QueryResponseFut<
242 DriverActivateSensorResult,
243 fidl::encoding::DefaultFuchsiaResourceDialect,
244 > {
245 DriverProxyInterface::r#activate_sensor(self, sensor_id)
246 }
247
248 pub fn r#deactivate_sensor(
250 &self,
251 mut sensor_id: i32,
252 ) -> fidl::client::QueryResponseFut<
253 DriverDeactivateSensorResult,
254 fidl::encoding::DefaultFuchsiaResourceDialect,
255 > {
256 DriverProxyInterface::r#deactivate_sensor(self, sensor_id)
257 }
258
259 pub fn r#configure_sensor_rate(
261 &self,
262 mut sensor_id: i32,
263 mut sensor_rate_config: &fidl_fuchsia_sensors_types::SensorRateConfig,
264 ) -> fidl::client::QueryResponseFut<
265 DriverConfigureSensorRateResult,
266 fidl::encoding::DefaultFuchsiaResourceDialect,
267 > {
268 DriverProxyInterface::r#configure_sensor_rate(self, sensor_id, sensor_rate_config)
269 }
270}
271
272impl DriverProxyInterface for DriverProxy {
273 type GetSensorsListResponseFut = fidl::client::QueryResponseFut<
274 Vec<fidl_fuchsia_sensors_types::SensorInfo>,
275 fidl::encoding::DefaultFuchsiaResourceDialect,
276 >;
277 fn r#get_sensors_list(&self) -> Self::GetSensorsListResponseFut {
278 fn _decode(
279 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
280 ) -> Result<Vec<fidl_fuchsia_sensors_types::SensorInfo>, fidl::Error> {
281 let _response = fidl::client::decode_transaction_body::<
282 fidl::encoding::FlexibleType<DriverGetSensorsListResponse>,
283 fidl::encoding::DefaultFuchsiaResourceDialect,
284 0x6a30da06929d426b,
285 >(_buf?)?
286 .into_result::<DriverMarker>("get_sensors_list")?;
287 Ok(_response.sensor_list)
288 }
289 self.client.send_query_and_decode::<
290 fidl::encoding::EmptyPayload,
291 Vec<fidl_fuchsia_sensors_types::SensorInfo>,
292 >(
293 (),
294 0x6a30da06929d426b,
295 fidl::encoding::DynamicFlags::FLEXIBLE,
296 _decode,
297 )
298 }
299
300 type ActivateSensorResponseFut = fidl::client::QueryResponseFut<
301 DriverActivateSensorResult,
302 fidl::encoding::DefaultFuchsiaResourceDialect,
303 >;
304 fn r#activate_sensor(&self, mut sensor_id: i32) -> Self::ActivateSensorResponseFut {
305 fn _decode(
306 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
307 ) -> Result<DriverActivateSensorResult, fidl::Error> {
308 let _response = fidl::client::decode_transaction_body::<
309 fidl::encoding::FlexibleResultType<
310 fidl::encoding::EmptyStruct,
311 ActivateSensorError,
312 >,
313 fidl::encoding::DefaultFuchsiaResourceDialect,
314 0x6ff16c620f9f3c5b,
315 >(_buf?)?
316 .into_result::<DriverMarker>("activate_sensor")?;
317 Ok(_response.map(|x| x))
318 }
319 self.client
320 .send_query_and_decode::<DriverActivateSensorRequest, DriverActivateSensorResult>(
321 (sensor_id,),
322 0x6ff16c620f9f3c5b,
323 fidl::encoding::DynamicFlags::FLEXIBLE,
324 _decode,
325 )
326 }
327
328 type DeactivateSensorResponseFut = fidl::client::QueryResponseFut<
329 DriverDeactivateSensorResult,
330 fidl::encoding::DefaultFuchsiaResourceDialect,
331 >;
332 fn r#deactivate_sensor(&self, mut sensor_id: i32) -> Self::DeactivateSensorResponseFut {
333 fn _decode(
334 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
335 ) -> Result<DriverDeactivateSensorResult, fidl::Error> {
336 let _response = fidl::client::decode_transaction_body::<
337 fidl::encoding::FlexibleResultType<
338 fidl::encoding::EmptyStruct,
339 DeactivateSensorError,
340 >,
341 fidl::encoding::DefaultFuchsiaResourceDialect,
342 0x64f003527d44ec55,
343 >(_buf?)?
344 .into_result::<DriverMarker>("deactivate_sensor")?;
345 Ok(_response.map(|x| x))
346 }
347 self.client
348 .send_query_and_decode::<DriverDeactivateSensorRequest, DriverDeactivateSensorResult>(
349 (sensor_id,),
350 0x64f003527d44ec55,
351 fidl::encoding::DynamicFlags::FLEXIBLE,
352 _decode,
353 )
354 }
355
356 type ConfigureSensorRateResponseFut = fidl::client::QueryResponseFut<
357 DriverConfigureSensorRateResult,
358 fidl::encoding::DefaultFuchsiaResourceDialect,
359 >;
360 fn r#configure_sensor_rate(
361 &self,
362 mut sensor_id: i32,
363 mut sensor_rate_config: &fidl_fuchsia_sensors_types::SensorRateConfig,
364 ) -> Self::ConfigureSensorRateResponseFut {
365 fn _decode(
366 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
367 ) -> Result<DriverConfigureSensorRateResult, fidl::Error> {
368 let _response = fidl::client::decode_transaction_body::<
369 fidl::encoding::FlexibleResultType<
370 fidl::encoding::EmptyStruct,
371 ConfigureSensorRateError,
372 >,
373 fidl::encoding::DefaultFuchsiaResourceDialect,
374 0x78a264bc9c645045,
375 >(_buf?)?
376 .into_result::<DriverMarker>("configure_sensor_rate")?;
377 Ok(_response.map(|x| x))
378 }
379 self.client.send_query_and_decode::<
380 DriverConfigureSensorRateRequest,
381 DriverConfigureSensorRateResult,
382 >(
383 (sensor_id, sensor_rate_config,),
384 0x78a264bc9c645045,
385 fidl::encoding::DynamicFlags::FLEXIBLE,
386 _decode,
387 )
388 }
389}
390
391pub struct DriverEventStream {
392 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
393}
394
395impl std::marker::Unpin for DriverEventStream {}
396
397impl futures::stream::FusedStream for DriverEventStream {
398 fn is_terminated(&self) -> bool {
399 self.event_receiver.is_terminated()
400 }
401}
402
403impl futures::Stream for DriverEventStream {
404 type Item = Result<DriverEvent, fidl::Error>;
405
406 fn poll_next(
407 mut self: std::pin::Pin<&mut Self>,
408 cx: &mut std::task::Context<'_>,
409 ) -> std::task::Poll<Option<Self::Item>> {
410 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
411 &mut self.event_receiver,
412 cx
413 )?) {
414 Some(buf) => std::task::Poll::Ready(Some(DriverEvent::decode(buf))),
415 None => std::task::Poll::Ready(None),
416 }
417 }
418}
419
420#[derive(Debug)]
421pub enum DriverEvent {
422 OnSensorEvent {
423 event: fidl_fuchsia_sensors_types::SensorEvent,
424 },
425 #[non_exhaustive]
426 _UnknownEvent {
427 ordinal: u64,
429 },
430}
431
432impl DriverEvent {
433 #[allow(irrefutable_let_patterns)]
434 pub fn into_on_sensor_event(self) -> Option<fidl_fuchsia_sensors_types::SensorEvent> {
435 if let DriverEvent::OnSensorEvent { event } = self {
436 Some((event))
437 } else {
438 None
439 }
440 }
441
442 fn decode(
444 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
445 ) -> Result<DriverEvent, fidl::Error> {
446 let (bytes, _handles) = buf.split_mut();
447 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
448 debug_assert_eq!(tx_header.tx_id, 0);
449 match tx_header.ordinal {
450 0x2aaf0636bb3e1df9 => {
451 let mut out = fidl::new_empty!(
452 DriverOnSensorEventRequest,
453 fidl::encoding::DefaultFuchsiaResourceDialect
454 );
455 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DriverOnSensorEventRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
456 Ok((DriverEvent::OnSensorEvent { event: out.event }))
457 }
458 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
459 Ok(DriverEvent::_UnknownEvent { ordinal: tx_header.ordinal })
460 }
461 _ => Err(fidl::Error::UnknownOrdinal {
462 ordinal: tx_header.ordinal,
463 protocol_name: <DriverMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
464 }),
465 }
466 }
467}
468
469pub struct DriverRequestStream {
471 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
472 is_terminated: bool,
473}
474
475impl std::marker::Unpin for DriverRequestStream {}
476
477impl futures::stream::FusedStream for DriverRequestStream {
478 fn is_terminated(&self) -> bool {
479 self.is_terminated
480 }
481}
482
483impl fidl::endpoints::RequestStream for DriverRequestStream {
484 type Protocol = DriverMarker;
485 type ControlHandle = DriverControlHandle;
486
487 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
488 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
489 }
490
491 fn control_handle(&self) -> Self::ControlHandle {
492 DriverControlHandle { inner: self.inner.clone() }
493 }
494
495 fn into_inner(
496 self,
497 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
498 {
499 (self.inner, self.is_terminated)
500 }
501
502 fn from_inner(
503 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
504 is_terminated: bool,
505 ) -> Self {
506 Self { inner, is_terminated }
507 }
508}
509
510impl futures::Stream for DriverRequestStream {
511 type Item = Result<DriverRequest, fidl::Error>;
512
513 fn poll_next(
514 mut self: std::pin::Pin<&mut Self>,
515 cx: &mut std::task::Context<'_>,
516 ) -> std::task::Poll<Option<Self::Item>> {
517 let this = &mut *self;
518 if this.inner.check_shutdown(cx) {
519 this.is_terminated = true;
520 return std::task::Poll::Ready(None);
521 }
522 if this.is_terminated {
523 panic!("polled DriverRequestStream after completion");
524 }
525 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
526 |bytes, handles| {
527 match this.inner.channel().read_etc(cx, bytes, handles) {
528 std::task::Poll::Ready(Ok(())) => {}
529 std::task::Poll::Pending => return std::task::Poll::Pending,
530 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
531 this.is_terminated = true;
532 return std::task::Poll::Ready(None);
533 }
534 std::task::Poll::Ready(Err(e)) => {
535 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
536 e.into(),
537 ))))
538 }
539 }
540
541 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
543
544 std::task::Poll::Ready(Some(match header.ordinal {
545 0x6a30da06929d426b => {
546 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
547 let mut req = fidl::new_empty!(
548 fidl::encoding::EmptyPayload,
549 fidl::encoding::DefaultFuchsiaResourceDialect
550 );
551 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
552 let control_handle = DriverControlHandle { inner: this.inner.clone() };
553 Ok(DriverRequest::GetSensorsList {
554 responder: DriverGetSensorsListResponder {
555 control_handle: std::mem::ManuallyDrop::new(control_handle),
556 tx_id: header.tx_id,
557 },
558 })
559 }
560 0x6ff16c620f9f3c5b => {
561 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
562 let mut req = fidl::new_empty!(
563 DriverActivateSensorRequest,
564 fidl::encoding::DefaultFuchsiaResourceDialect
565 );
566 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DriverActivateSensorRequest>(&header, _body_bytes, handles, &mut req)?;
567 let control_handle = DriverControlHandle { inner: this.inner.clone() };
568 Ok(DriverRequest::ActivateSensor {
569 sensor_id: req.sensor_id,
570
571 responder: DriverActivateSensorResponder {
572 control_handle: std::mem::ManuallyDrop::new(control_handle),
573 tx_id: header.tx_id,
574 },
575 })
576 }
577 0x64f003527d44ec55 => {
578 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
579 let mut req = fidl::new_empty!(
580 DriverDeactivateSensorRequest,
581 fidl::encoding::DefaultFuchsiaResourceDialect
582 );
583 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DriverDeactivateSensorRequest>(&header, _body_bytes, handles, &mut req)?;
584 let control_handle = DriverControlHandle { inner: this.inner.clone() };
585 Ok(DriverRequest::DeactivateSensor {
586 sensor_id: req.sensor_id,
587
588 responder: DriverDeactivateSensorResponder {
589 control_handle: std::mem::ManuallyDrop::new(control_handle),
590 tx_id: header.tx_id,
591 },
592 })
593 }
594 0x78a264bc9c645045 => {
595 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
596 let mut req = fidl::new_empty!(
597 DriverConfigureSensorRateRequest,
598 fidl::encoding::DefaultFuchsiaResourceDialect
599 );
600 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DriverConfigureSensorRateRequest>(&header, _body_bytes, handles, &mut req)?;
601 let control_handle = DriverControlHandle { inner: this.inner.clone() };
602 Ok(DriverRequest::ConfigureSensorRate {
603 sensor_id: req.sensor_id,
604 sensor_rate_config: req.sensor_rate_config,
605
606 responder: DriverConfigureSensorRateResponder {
607 control_handle: std::mem::ManuallyDrop::new(control_handle),
608 tx_id: header.tx_id,
609 },
610 })
611 }
612 _ if header.tx_id == 0
613 && header
614 .dynamic_flags()
615 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
616 {
617 Ok(DriverRequest::_UnknownMethod {
618 ordinal: header.ordinal,
619 control_handle: DriverControlHandle { inner: this.inner.clone() },
620 method_type: fidl::MethodType::OneWay,
621 })
622 }
623 _ if header
624 .dynamic_flags()
625 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
626 {
627 this.inner.send_framework_err(
628 fidl::encoding::FrameworkErr::UnknownMethod,
629 header.tx_id,
630 header.ordinal,
631 header.dynamic_flags(),
632 (bytes, handles),
633 )?;
634 Ok(DriverRequest::_UnknownMethod {
635 ordinal: header.ordinal,
636 control_handle: DriverControlHandle { inner: this.inner.clone() },
637 method_type: fidl::MethodType::TwoWay,
638 })
639 }
640 _ => Err(fidl::Error::UnknownOrdinal {
641 ordinal: header.ordinal,
642 protocol_name:
643 <DriverMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
644 }),
645 }))
646 },
647 )
648 }
649}
650
651#[derive(Debug)]
653pub enum DriverRequest {
654 GetSensorsList { responder: DriverGetSensorsListResponder },
656 ActivateSensor { sensor_id: i32, responder: DriverActivateSensorResponder },
658 DeactivateSensor { sensor_id: i32, responder: DriverDeactivateSensorResponder },
660 ConfigureSensorRate {
662 sensor_id: i32,
663 sensor_rate_config: fidl_fuchsia_sensors_types::SensorRateConfig,
664 responder: DriverConfigureSensorRateResponder,
665 },
666 #[non_exhaustive]
668 _UnknownMethod {
669 ordinal: u64,
671 control_handle: DriverControlHandle,
672 method_type: fidl::MethodType,
673 },
674}
675
676impl DriverRequest {
677 #[allow(irrefutable_let_patterns)]
678 pub fn into_get_sensors_list(self) -> Option<(DriverGetSensorsListResponder)> {
679 if let DriverRequest::GetSensorsList { responder } = self {
680 Some((responder))
681 } else {
682 None
683 }
684 }
685
686 #[allow(irrefutable_let_patterns)]
687 pub fn into_activate_sensor(self) -> Option<(i32, DriverActivateSensorResponder)> {
688 if let DriverRequest::ActivateSensor { sensor_id, responder } = self {
689 Some((sensor_id, responder))
690 } else {
691 None
692 }
693 }
694
695 #[allow(irrefutable_let_patterns)]
696 pub fn into_deactivate_sensor(self) -> Option<(i32, DriverDeactivateSensorResponder)> {
697 if let DriverRequest::DeactivateSensor { sensor_id, responder } = self {
698 Some((sensor_id, responder))
699 } else {
700 None
701 }
702 }
703
704 #[allow(irrefutable_let_patterns)]
705 pub fn into_configure_sensor_rate(
706 self,
707 ) -> Option<(
708 i32,
709 fidl_fuchsia_sensors_types::SensorRateConfig,
710 DriverConfigureSensorRateResponder,
711 )> {
712 if let DriverRequest::ConfigureSensorRate { sensor_id, sensor_rate_config, responder } =
713 self
714 {
715 Some((sensor_id, sensor_rate_config, responder))
716 } else {
717 None
718 }
719 }
720
721 pub fn method_name(&self) -> &'static str {
723 match *self {
724 DriverRequest::GetSensorsList { .. } => "get_sensors_list",
725 DriverRequest::ActivateSensor { .. } => "activate_sensor",
726 DriverRequest::DeactivateSensor { .. } => "deactivate_sensor",
727 DriverRequest::ConfigureSensorRate { .. } => "configure_sensor_rate",
728 DriverRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
729 "unknown one-way method"
730 }
731 DriverRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
732 "unknown two-way method"
733 }
734 }
735 }
736}
737
738#[derive(Debug, Clone)]
739pub struct DriverControlHandle {
740 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
741}
742
743impl fidl::endpoints::ControlHandle for DriverControlHandle {
744 fn shutdown(&self) {
745 self.inner.shutdown()
746 }
747 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
748 self.inner.shutdown_with_epitaph(status)
749 }
750
751 fn is_closed(&self) -> bool {
752 self.inner.channel().is_closed()
753 }
754 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
755 self.inner.channel().on_closed()
756 }
757
758 #[cfg(target_os = "fuchsia")]
759 fn signal_peer(
760 &self,
761 clear_mask: zx::Signals,
762 set_mask: zx::Signals,
763 ) -> Result<(), zx_status::Status> {
764 use fidl::Peered;
765 self.inner.channel().signal_peer(clear_mask, set_mask)
766 }
767}
768
769impl DriverControlHandle {
770 pub fn send_on_sensor_event(
771 &self,
772 mut event: &fidl_fuchsia_sensors_types::SensorEvent,
773 ) -> Result<(), fidl::Error> {
774 self.inner.send::<DriverOnSensorEventRequest>(
775 (event,),
776 0,
777 0x2aaf0636bb3e1df9,
778 fidl::encoding::DynamicFlags::FLEXIBLE,
779 )
780 }
781}
782
783#[must_use = "FIDL methods require a response to be sent"]
784#[derive(Debug)]
785pub struct DriverGetSensorsListResponder {
786 control_handle: std::mem::ManuallyDrop<DriverControlHandle>,
787 tx_id: u32,
788}
789
790impl std::ops::Drop for DriverGetSensorsListResponder {
794 fn drop(&mut self) {
795 self.control_handle.shutdown();
796 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
798 }
799}
800
801impl fidl::endpoints::Responder for DriverGetSensorsListResponder {
802 type ControlHandle = DriverControlHandle;
803
804 fn control_handle(&self) -> &DriverControlHandle {
805 &self.control_handle
806 }
807
808 fn drop_without_shutdown(mut self) {
809 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
811 std::mem::forget(self);
813 }
814}
815
816impl DriverGetSensorsListResponder {
817 pub fn send(
821 self,
822 mut sensor_list: &[fidl_fuchsia_sensors_types::SensorInfo],
823 ) -> Result<(), fidl::Error> {
824 let _result = self.send_raw(sensor_list);
825 if _result.is_err() {
826 self.control_handle.shutdown();
827 }
828 self.drop_without_shutdown();
829 _result
830 }
831
832 pub fn send_no_shutdown_on_err(
834 self,
835 mut sensor_list: &[fidl_fuchsia_sensors_types::SensorInfo],
836 ) -> Result<(), fidl::Error> {
837 let _result = self.send_raw(sensor_list);
838 self.drop_without_shutdown();
839 _result
840 }
841
842 fn send_raw(
843 &self,
844 mut sensor_list: &[fidl_fuchsia_sensors_types::SensorInfo],
845 ) -> Result<(), fidl::Error> {
846 self.control_handle
847 .inner
848 .send::<fidl::encoding::FlexibleType<DriverGetSensorsListResponse>>(
849 fidl::encoding::Flexible::new((sensor_list,)),
850 self.tx_id,
851 0x6a30da06929d426b,
852 fidl::encoding::DynamicFlags::FLEXIBLE,
853 )
854 }
855}
856
857#[must_use = "FIDL methods require a response to be sent"]
858#[derive(Debug)]
859pub struct DriverActivateSensorResponder {
860 control_handle: std::mem::ManuallyDrop<DriverControlHandle>,
861 tx_id: u32,
862}
863
864impl std::ops::Drop for DriverActivateSensorResponder {
868 fn drop(&mut self) {
869 self.control_handle.shutdown();
870 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
872 }
873}
874
875impl fidl::endpoints::Responder for DriverActivateSensorResponder {
876 type ControlHandle = DriverControlHandle;
877
878 fn control_handle(&self) -> &DriverControlHandle {
879 &self.control_handle
880 }
881
882 fn drop_without_shutdown(mut self) {
883 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
885 std::mem::forget(self);
887 }
888}
889
890impl DriverActivateSensorResponder {
891 pub fn send(self, mut result: Result<(), ActivateSensorError>) -> Result<(), fidl::Error> {
895 let _result = self.send_raw(result);
896 if _result.is_err() {
897 self.control_handle.shutdown();
898 }
899 self.drop_without_shutdown();
900 _result
901 }
902
903 pub fn send_no_shutdown_on_err(
905 self,
906 mut result: Result<(), ActivateSensorError>,
907 ) -> Result<(), fidl::Error> {
908 let _result = self.send_raw(result);
909 self.drop_without_shutdown();
910 _result
911 }
912
913 fn send_raw(&self, mut result: Result<(), ActivateSensorError>) -> Result<(), fidl::Error> {
914 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
915 fidl::encoding::EmptyStruct,
916 ActivateSensorError,
917 >>(
918 fidl::encoding::FlexibleResult::new(result),
919 self.tx_id,
920 0x6ff16c620f9f3c5b,
921 fidl::encoding::DynamicFlags::FLEXIBLE,
922 )
923 }
924}
925
926#[must_use = "FIDL methods require a response to be sent"]
927#[derive(Debug)]
928pub struct DriverDeactivateSensorResponder {
929 control_handle: std::mem::ManuallyDrop<DriverControlHandle>,
930 tx_id: u32,
931}
932
933impl std::ops::Drop for DriverDeactivateSensorResponder {
937 fn drop(&mut self) {
938 self.control_handle.shutdown();
939 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
941 }
942}
943
944impl fidl::endpoints::Responder for DriverDeactivateSensorResponder {
945 type ControlHandle = DriverControlHandle;
946
947 fn control_handle(&self) -> &DriverControlHandle {
948 &self.control_handle
949 }
950
951 fn drop_without_shutdown(mut self) {
952 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
954 std::mem::forget(self);
956 }
957}
958
959impl DriverDeactivateSensorResponder {
960 pub fn send(self, mut result: Result<(), DeactivateSensorError>) -> Result<(), fidl::Error> {
964 let _result = self.send_raw(result);
965 if _result.is_err() {
966 self.control_handle.shutdown();
967 }
968 self.drop_without_shutdown();
969 _result
970 }
971
972 pub fn send_no_shutdown_on_err(
974 self,
975 mut result: Result<(), DeactivateSensorError>,
976 ) -> Result<(), fidl::Error> {
977 let _result = self.send_raw(result);
978 self.drop_without_shutdown();
979 _result
980 }
981
982 fn send_raw(&self, mut result: Result<(), DeactivateSensorError>) -> Result<(), fidl::Error> {
983 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
984 fidl::encoding::EmptyStruct,
985 DeactivateSensorError,
986 >>(
987 fidl::encoding::FlexibleResult::new(result),
988 self.tx_id,
989 0x64f003527d44ec55,
990 fidl::encoding::DynamicFlags::FLEXIBLE,
991 )
992 }
993}
994
995#[must_use = "FIDL methods require a response to be sent"]
996#[derive(Debug)]
997pub struct DriverConfigureSensorRateResponder {
998 control_handle: std::mem::ManuallyDrop<DriverControlHandle>,
999 tx_id: u32,
1000}
1001
1002impl std::ops::Drop for DriverConfigureSensorRateResponder {
1006 fn drop(&mut self) {
1007 self.control_handle.shutdown();
1008 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1010 }
1011}
1012
1013impl fidl::endpoints::Responder for DriverConfigureSensorRateResponder {
1014 type ControlHandle = DriverControlHandle;
1015
1016 fn control_handle(&self) -> &DriverControlHandle {
1017 &self.control_handle
1018 }
1019
1020 fn drop_without_shutdown(mut self) {
1021 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1023 std::mem::forget(self);
1025 }
1026}
1027
1028impl DriverConfigureSensorRateResponder {
1029 pub fn send(self, mut result: Result<(), ConfigureSensorRateError>) -> Result<(), fidl::Error> {
1033 let _result = self.send_raw(result);
1034 if _result.is_err() {
1035 self.control_handle.shutdown();
1036 }
1037 self.drop_without_shutdown();
1038 _result
1039 }
1040
1041 pub fn send_no_shutdown_on_err(
1043 self,
1044 mut result: Result<(), ConfigureSensorRateError>,
1045 ) -> Result<(), fidl::Error> {
1046 let _result = self.send_raw(result);
1047 self.drop_without_shutdown();
1048 _result
1049 }
1050
1051 fn send_raw(
1052 &self,
1053 mut result: Result<(), ConfigureSensorRateError>,
1054 ) -> Result<(), fidl::Error> {
1055 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
1056 fidl::encoding::EmptyStruct,
1057 ConfigureSensorRateError,
1058 >>(
1059 fidl::encoding::FlexibleResult::new(result),
1060 self.tx_id,
1061 0x78a264bc9c645045,
1062 fidl::encoding::DynamicFlags::FLEXIBLE,
1063 )
1064 }
1065}
1066
1067#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1068pub struct PlaybackMarker;
1069
1070impl fidl::endpoints::ProtocolMarker for PlaybackMarker {
1071 type Proxy = PlaybackProxy;
1072 type RequestStream = PlaybackRequestStream;
1073 #[cfg(target_os = "fuchsia")]
1074 type SynchronousProxy = PlaybackSynchronousProxy;
1075
1076 const DEBUG_NAME: &'static str = "fuchsia.hardware.sensors.Playback";
1077}
1078impl fidl::endpoints::DiscoverableProtocolMarker for PlaybackMarker {}
1079pub type PlaybackConfigurePlaybackResult = Result<(), ConfigurePlaybackError>;
1080
1081pub trait PlaybackProxyInterface: Send + Sync {
1082 type ConfigurePlaybackResponseFut: std::future::Future<Output = Result<PlaybackConfigurePlaybackResult, fidl::Error>>
1083 + Send;
1084 fn r#configure_playback(
1085 &self,
1086 source_config: &PlaybackSourceConfig,
1087 ) -> Self::ConfigurePlaybackResponseFut;
1088}
1089#[derive(Debug)]
1090#[cfg(target_os = "fuchsia")]
1091pub struct PlaybackSynchronousProxy {
1092 client: fidl::client::sync::Client,
1093}
1094
1095#[cfg(target_os = "fuchsia")]
1096impl fidl::endpoints::SynchronousProxy for PlaybackSynchronousProxy {
1097 type Proxy = PlaybackProxy;
1098 type Protocol = PlaybackMarker;
1099
1100 fn from_channel(inner: fidl::Channel) -> Self {
1101 Self::new(inner)
1102 }
1103
1104 fn into_channel(self) -> fidl::Channel {
1105 self.client.into_channel()
1106 }
1107
1108 fn as_channel(&self) -> &fidl::Channel {
1109 self.client.as_channel()
1110 }
1111}
1112
1113#[cfg(target_os = "fuchsia")]
1114impl PlaybackSynchronousProxy {
1115 pub fn new(channel: fidl::Channel) -> Self {
1116 let protocol_name = <PlaybackMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1117 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
1118 }
1119
1120 pub fn into_channel(self) -> fidl::Channel {
1121 self.client.into_channel()
1122 }
1123
1124 pub fn wait_for_event(
1127 &self,
1128 deadline: zx::MonotonicInstant,
1129 ) -> Result<PlaybackEvent, fidl::Error> {
1130 PlaybackEvent::decode(self.client.wait_for_event(deadline)?)
1131 }
1132
1133 pub fn r#configure_playback(
1134 &self,
1135 mut source_config: &PlaybackSourceConfig,
1136 ___deadline: zx::MonotonicInstant,
1137 ) -> Result<PlaybackConfigurePlaybackResult, fidl::Error> {
1138 let _response =
1139 self.client
1140 .send_query::<PlaybackConfigurePlaybackRequest, fidl::encoding::FlexibleResultType<
1141 fidl::encoding::EmptyStruct,
1142 ConfigurePlaybackError,
1143 >>(
1144 (source_config,),
1145 0x64327bb27c3d8742,
1146 fidl::encoding::DynamicFlags::FLEXIBLE,
1147 ___deadline,
1148 )?
1149 .into_result::<PlaybackMarker>("configure_playback")?;
1150 Ok(_response.map(|x| x))
1151 }
1152}
1153
1154#[cfg(target_os = "fuchsia")]
1155impl From<PlaybackSynchronousProxy> for zx::Handle {
1156 fn from(value: PlaybackSynchronousProxy) -> Self {
1157 value.into_channel().into()
1158 }
1159}
1160
1161#[cfg(target_os = "fuchsia")]
1162impl From<fidl::Channel> for PlaybackSynchronousProxy {
1163 fn from(value: fidl::Channel) -> Self {
1164 Self::new(value)
1165 }
1166}
1167
1168#[derive(Debug, Clone)]
1169pub struct PlaybackProxy {
1170 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
1171}
1172
1173impl fidl::endpoints::Proxy for PlaybackProxy {
1174 type Protocol = PlaybackMarker;
1175
1176 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
1177 Self::new(inner)
1178 }
1179
1180 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
1181 self.client.into_channel().map_err(|client| Self { client })
1182 }
1183
1184 fn as_channel(&self) -> &::fidl::AsyncChannel {
1185 self.client.as_channel()
1186 }
1187}
1188
1189impl PlaybackProxy {
1190 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
1192 let protocol_name = <PlaybackMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1193 Self { client: fidl::client::Client::new(channel, protocol_name) }
1194 }
1195
1196 pub fn take_event_stream(&self) -> PlaybackEventStream {
1202 PlaybackEventStream { event_receiver: self.client.take_event_receiver() }
1203 }
1204
1205 pub fn r#configure_playback(
1206 &self,
1207 mut source_config: &PlaybackSourceConfig,
1208 ) -> fidl::client::QueryResponseFut<
1209 PlaybackConfigurePlaybackResult,
1210 fidl::encoding::DefaultFuchsiaResourceDialect,
1211 > {
1212 PlaybackProxyInterface::r#configure_playback(self, source_config)
1213 }
1214}
1215
1216impl PlaybackProxyInterface for PlaybackProxy {
1217 type ConfigurePlaybackResponseFut = fidl::client::QueryResponseFut<
1218 PlaybackConfigurePlaybackResult,
1219 fidl::encoding::DefaultFuchsiaResourceDialect,
1220 >;
1221 fn r#configure_playback(
1222 &self,
1223 mut source_config: &PlaybackSourceConfig,
1224 ) -> Self::ConfigurePlaybackResponseFut {
1225 fn _decode(
1226 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1227 ) -> Result<PlaybackConfigurePlaybackResult, fidl::Error> {
1228 let _response = fidl::client::decode_transaction_body::<
1229 fidl::encoding::FlexibleResultType<
1230 fidl::encoding::EmptyStruct,
1231 ConfigurePlaybackError,
1232 >,
1233 fidl::encoding::DefaultFuchsiaResourceDialect,
1234 0x64327bb27c3d8742,
1235 >(_buf?)?
1236 .into_result::<PlaybackMarker>("configure_playback")?;
1237 Ok(_response.map(|x| x))
1238 }
1239 self.client.send_query_and_decode::<
1240 PlaybackConfigurePlaybackRequest,
1241 PlaybackConfigurePlaybackResult,
1242 >(
1243 (source_config,),
1244 0x64327bb27c3d8742,
1245 fidl::encoding::DynamicFlags::FLEXIBLE,
1246 _decode,
1247 )
1248 }
1249}
1250
1251pub struct PlaybackEventStream {
1252 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
1253}
1254
1255impl std::marker::Unpin for PlaybackEventStream {}
1256
1257impl futures::stream::FusedStream for PlaybackEventStream {
1258 fn is_terminated(&self) -> bool {
1259 self.event_receiver.is_terminated()
1260 }
1261}
1262
1263impl futures::Stream for PlaybackEventStream {
1264 type Item = Result<PlaybackEvent, fidl::Error>;
1265
1266 fn poll_next(
1267 mut self: std::pin::Pin<&mut Self>,
1268 cx: &mut std::task::Context<'_>,
1269 ) -> std::task::Poll<Option<Self::Item>> {
1270 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
1271 &mut self.event_receiver,
1272 cx
1273 )?) {
1274 Some(buf) => std::task::Poll::Ready(Some(PlaybackEvent::decode(buf))),
1275 None => std::task::Poll::Ready(None),
1276 }
1277 }
1278}
1279
1280#[derive(Debug)]
1281pub enum PlaybackEvent {
1282 #[non_exhaustive]
1283 _UnknownEvent {
1284 ordinal: u64,
1286 },
1287}
1288
1289impl PlaybackEvent {
1290 fn decode(
1292 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1293 ) -> Result<PlaybackEvent, fidl::Error> {
1294 let (bytes, _handles) = buf.split_mut();
1295 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1296 debug_assert_eq!(tx_header.tx_id, 0);
1297 match tx_header.ordinal {
1298 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
1299 Ok(PlaybackEvent::_UnknownEvent { ordinal: tx_header.ordinal })
1300 }
1301 _ => Err(fidl::Error::UnknownOrdinal {
1302 ordinal: tx_header.ordinal,
1303 protocol_name: <PlaybackMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1304 }),
1305 }
1306 }
1307}
1308
1309pub struct PlaybackRequestStream {
1311 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1312 is_terminated: bool,
1313}
1314
1315impl std::marker::Unpin for PlaybackRequestStream {}
1316
1317impl futures::stream::FusedStream for PlaybackRequestStream {
1318 fn is_terminated(&self) -> bool {
1319 self.is_terminated
1320 }
1321}
1322
1323impl fidl::endpoints::RequestStream for PlaybackRequestStream {
1324 type Protocol = PlaybackMarker;
1325 type ControlHandle = PlaybackControlHandle;
1326
1327 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1328 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1329 }
1330
1331 fn control_handle(&self) -> Self::ControlHandle {
1332 PlaybackControlHandle { inner: self.inner.clone() }
1333 }
1334
1335 fn into_inner(
1336 self,
1337 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1338 {
1339 (self.inner, self.is_terminated)
1340 }
1341
1342 fn from_inner(
1343 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1344 is_terminated: bool,
1345 ) -> Self {
1346 Self { inner, is_terminated }
1347 }
1348}
1349
1350impl futures::Stream for PlaybackRequestStream {
1351 type Item = Result<PlaybackRequest, fidl::Error>;
1352
1353 fn poll_next(
1354 mut self: std::pin::Pin<&mut Self>,
1355 cx: &mut std::task::Context<'_>,
1356 ) -> std::task::Poll<Option<Self::Item>> {
1357 let this = &mut *self;
1358 if this.inner.check_shutdown(cx) {
1359 this.is_terminated = true;
1360 return std::task::Poll::Ready(None);
1361 }
1362 if this.is_terminated {
1363 panic!("polled PlaybackRequestStream after completion");
1364 }
1365 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1366 |bytes, handles| {
1367 match this.inner.channel().read_etc(cx, bytes, handles) {
1368 std::task::Poll::Ready(Ok(())) => {}
1369 std::task::Poll::Pending => return std::task::Poll::Pending,
1370 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1371 this.is_terminated = true;
1372 return std::task::Poll::Ready(None);
1373 }
1374 std::task::Poll::Ready(Err(e)) => {
1375 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1376 e.into(),
1377 ))))
1378 }
1379 }
1380
1381 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1383
1384 std::task::Poll::Ready(Some(match header.ordinal {
1385 0x64327bb27c3d8742 => {
1386 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1387 let mut req = fidl::new_empty!(
1388 PlaybackConfigurePlaybackRequest,
1389 fidl::encoding::DefaultFuchsiaResourceDialect
1390 );
1391 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<PlaybackConfigurePlaybackRequest>(&header, _body_bytes, handles, &mut req)?;
1392 let control_handle = PlaybackControlHandle { inner: this.inner.clone() };
1393 Ok(PlaybackRequest::ConfigurePlayback {
1394 source_config: req.source_config,
1395
1396 responder: PlaybackConfigurePlaybackResponder {
1397 control_handle: std::mem::ManuallyDrop::new(control_handle),
1398 tx_id: header.tx_id,
1399 },
1400 })
1401 }
1402 _ if header.tx_id == 0
1403 && header
1404 .dynamic_flags()
1405 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
1406 {
1407 Ok(PlaybackRequest::_UnknownMethod {
1408 ordinal: header.ordinal,
1409 control_handle: PlaybackControlHandle { inner: this.inner.clone() },
1410 method_type: fidl::MethodType::OneWay,
1411 })
1412 }
1413 _ if header
1414 .dynamic_flags()
1415 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
1416 {
1417 this.inner.send_framework_err(
1418 fidl::encoding::FrameworkErr::UnknownMethod,
1419 header.tx_id,
1420 header.ordinal,
1421 header.dynamic_flags(),
1422 (bytes, handles),
1423 )?;
1424 Ok(PlaybackRequest::_UnknownMethod {
1425 ordinal: header.ordinal,
1426 control_handle: PlaybackControlHandle { inner: this.inner.clone() },
1427 method_type: fidl::MethodType::TwoWay,
1428 })
1429 }
1430 _ => Err(fidl::Error::UnknownOrdinal {
1431 ordinal: header.ordinal,
1432 protocol_name:
1433 <PlaybackMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1434 }),
1435 }))
1436 },
1437 )
1438 }
1439}
1440
1441#[derive(Debug)]
1447pub enum PlaybackRequest {
1448 ConfigurePlayback {
1449 source_config: PlaybackSourceConfig,
1450 responder: PlaybackConfigurePlaybackResponder,
1451 },
1452 #[non_exhaustive]
1454 _UnknownMethod {
1455 ordinal: u64,
1457 control_handle: PlaybackControlHandle,
1458 method_type: fidl::MethodType,
1459 },
1460}
1461
1462impl PlaybackRequest {
1463 #[allow(irrefutable_let_patterns)]
1464 pub fn into_configure_playback(
1465 self,
1466 ) -> Option<(PlaybackSourceConfig, PlaybackConfigurePlaybackResponder)> {
1467 if let PlaybackRequest::ConfigurePlayback { source_config, responder } = self {
1468 Some((source_config, responder))
1469 } else {
1470 None
1471 }
1472 }
1473
1474 pub fn method_name(&self) -> &'static str {
1476 match *self {
1477 PlaybackRequest::ConfigurePlayback { .. } => "configure_playback",
1478 PlaybackRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
1479 "unknown one-way method"
1480 }
1481 PlaybackRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
1482 "unknown two-way method"
1483 }
1484 }
1485 }
1486}
1487
1488#[derive(Debug, Clone)]
1489pub struct PlaybackControlHandle {
1490 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1491}
1492
1493impl fidl::endpoints::ControlHandle for PlaybackControlHandle {
1494 fn shutdown(&self) {
1495 self.inner.shutdown()
1496 }
1497 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1498 self.inner.shutdown_with_epitaph(status)
1499 }
1500
1501 fn is_closed(&self) -> bool {
1502 self.inner.channel().is_closed()
1503 }
1504 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1505 self.inner.channel().on_closed()
1506 }
1507
1508 #[cfg(target_os = "fuchsia")]
1509 fn signal_peer(
1510 &self,
1511 clear_mask: zx::Signals,
1512 set_mask: zx::Signals,
1513 ) -> Result<(), zx_status::Status> {
1514 use fidl::Peered;
1515 self.inner.channel().signal_peer(clear_mask, set_mask)
1516 }
1517}
1518
1519impl PlaybackControlHandle {}
1520
1521#[must_use = "FIDL methods require a response to be sent"]
1522#[derive(Debug)]
1523pub struct PlaybackConfigurePlaybackResponder {
1524 control_handle: std::mem::ManuallyDrop<PlaybackControlHandle>,
1525 tx_id: u32,
1526}
1527
1528impl std::ops::Drop for PlaybackConfigurePlaybackResponder {
1532 fn drop(&mut self) {
1533 self.control_handle.shutdown();
1534 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1536 }
1537}
1538
1539impl fidl::endpoints::Responder for PlaybackConfigurePlaybackResponder {
1540 type ControlHandle = PlaybackControlHandle;
1541
1542 fn control_handle(&self) -> &PlaybackControlHandle {
1543 &self.control_handle
1544 }
1545
1546 fn drop_without_shutdown(mut self) {
1547 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1549 std::mem::forget(self);
1551 }
1552}
1553
1554impl PlaybackConfigurePlaybackResponder {
1555 pub fn send(self, mut result: Result<(), ConfigurePlaybackError>) -> Result<(), fidl::Error> {
1559 let _result = self.send_raw(result);
1560 if _result.is_err() {
1561 self.control_handle.shutdown();
1562 }
1563 self.drop_without_shutdown();
1564 _result
1565 }
1566
1567 pub fn send_no_shutdown_on_err(
1569 self,
1570 mut result: Result<(), ConfigurePlaybackError>,
1571 ) -> Result<(), fidl::Error> {
1572 let _result = self.send_raw(result);
1573 self.drop_without_shutdown();
1574 _result
1575 }
1576
1577 fn send_raw(&self, mut result: Result<(), ConfigurePlaybackError>) -> Result<(), fidl::Error> {
1578 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
1579 fidl::encoding::EmptyStruct,
1580 ConfigurePlaybackError,
1581 >>(
1582 fidl::encoding::FlexibleResult::new(result),
1583 self.tx_id,
1584 0x64327bb27c3d8742,
1585 fidl::encoding::DynamicFlags::FLEXIBLE,
1586 )
1587 }
1588}
1589
1590#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1591pub struct ServiceMarker;
1592
1593#[cfg(target_os = "fuchsia")]
1594impl fidl::endpoints::ServiceMarker for ServiceMarker {
1595 type Proxy = ServiceProxy;
1596 type Request = ServiceRequest;
1597 const SERVICE_NAME: &'static str = "fuchsia.hardware.sensors.Service";
1598}
1599
1600#[cfg(target_os = "fuchsia")]
1603pub enum ServiceRequest {
1604 Driver(DriverRequestStream),
1605}
1606
1607#[cfg(target_os = "fuchsia")]
1608impl fidl::endpoints::ServiceRequest for ServiceRequest {
1609 type Service = ServiceMarker;
1610
1611 fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
1612 match name {
1613 "driver" => Self::Driver(
1614 <DriverRequestStream as fidl::endpoints::RequestStream>::from_channel(_channel),
1615 ),
1616 _ => panic!("no such member protocol name for service Service"),
1617 }
1618 }
1619
1620 fn member_names() -> &'static [&'static str] {
1621 &["driver"]
1622 }
1623}
1624#[cfg(target_os = "fuchsia")]
1625pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
1626
1627#[cfg(target_os = "fuchsia")]
1628impl fidl::endpoints::ServiceProxy for ServiceProxy {
1629 type Service = ServiceMarker;
1630
1631 fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
1632 Self(opener)
1633 }
1634}
1635
1636#[cfg(target_os = "fuchsia")]
1637impl ServiceProxy {
1638 pub fn connect_to_driver(&self) -> Result<DriverProxy, fidl::Error> {
1639 let (proxy, server_end) = fidl::endpoints::create_proxy::<DriverMarker>();
1640 self.connect_channel_to_driver(server_end)?;
1641 Ok(proxy)
1642 }
1643
1644 pub fn connect_to_driver_sync(&self) -> Result<DriverSynchronousProxy, fidl::Error> {
1647 let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<DriverMarker>();
1648 self.connect_channel_to_driver(server_end)?;
1649 Ok(proxy)
1650 }
1651
1652 pub fn connect_channel_to_driver(
1655 &self,
1656 server_end: fidl::endpoints::ServerEnd<DriverMarker>,
1657 ) -> Result<(), fidl::Error> {
1658 self.0.open_member("driver", server_end.into_channel())
1659 }
1660
1661 pub fn instance_name(&self) -> &str {
1662 self.0.instance_name()
1663 }
1664}
1665
1666mod internal {
1667 use super::*;
1668}