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_temperature_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct DeviceMarker;
16
17impl fidl::endpoints::ProtocolMarker for DeviceMarker {
18 type Proxy = DeviceProxy;
19 type RequestStream = DeviceRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = DeviceSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) Device";
24}
25
26pub trait DeviceProxyInterface: Send + Sync {
27 type GetTemperatureCelsiusResponseFut: std::future::Future<Output = Result<(i32, f32), fidl::Error>>
28 + Send;
29 fn r#get_temperature_celsius(&self) -> Self::GetTemperatureCelsiusResponseFut;
30 type GetSensorNameResponseFut: std::future::Future<Output = Result<String, fidl::Error>> + Send;
31 fn r#get_sensor_name(&self) -> Self::GetSensorNameResponseFut;
32}
33#[derive(Debug)]
34#[cfg(target_os = "fuchsia")]
35pub struct DeviceSynchronousProxy {
36 client: fidl::client::sync::Client,
37}
38
39#[cfg(target_os = "fuchsia")]
40impl fidl::endpoints::SynchronousProxy for DeviceSynchronousProxy {
41 type Proxy = DeviceProxy;
42 type Protocol = DeviceMarker;
43
44 fn from_channel(inner: fidl::Channel) -> Self {
45 Self::new(inner)
46 }
47
48 fn into_channel(self) -> fidl::Channel {
49 self.client.into_channel()
50 }
51
52 fn as_channel(&self) -> &fidl::Channel {
53 self.client.as_channel()
54 }
55}
56
57#[cfg(target_os = "fuchsia")]
58impl DeviceSynchronousProxy {
59 pub fn new(channel: fidl::Channel) -> Self {
60 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
61 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
62 }
63
64 pub fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 pub fn wait_for_event(
71 &self,
72 deadline: zx::MonotonicInstant,
73 ) -> Result<DeviceEvent, fidl::Error> {
74 DeviceEvent::decode(self.client.wait_for_event(deadline)?)
75 }
76
77 pub fn r#get_temperature_celsius(
79 &self,
80 ___deadline: zx::MonotonicInstant,
81 ) -> Result<(i32, f32), fidl::Error> {
82 let _response = self
83 .client
84 .send_query::<fidl::encoding::EmptyPayload, DeviceGetTemperatureCelsiusResponse>(
85 (),
86 0x755e08b84736133c,
87 fidl::encoding::DynamicFlags::empty(),
88 ___deadline,
89 )?;
90 Ok((_response.status, _response.temp))
91 }
92
93 pub fn r#get_sensor_name(
94 &self,
95 ___deadline: zx::MonotonicInstant,
96 ) -> Result<String, fidl::Error> {
97 let _response =
98 self.client.send_query::<fidl::encoding::EmptyPayload, DeviceGetSensorNameResponse>(
99 (),
100 0x4cbd7abaeafc02c1,
101 fidl::encoding::DynamicFlags::empty(),
102 ___deadline,
103 )?;
104 Ok(_response.name)
105 }
106}
107
108#[cfg(target_os = "fuchsia")]
109impl From<DeviceSynchronousProxy> for zx::Handle {
110 fn from(value: DeviceSynchronousProxy) -> Self {
111 value.into_channel().into()
112 }
113}
114
115#[cfg(target_os = "fuchsia")]
116impl From<fidl::Channel> for DeviceSynchronousProxy {
117 fn from(value: fidl::Channel) -> Self {
118 Self::new(value)
119 }
120}
121
122#[derive(Debug, Clone)]
123pub struct DeviceProxy {
124 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
125}
126
127impl fidl::endpoints::Proxy for DeviceProxy {
128 type Protocol = DeviceMarker;
129
130 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
131 Self::new(inner)
132 }
133
134 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
135 self.client.into_channel().map_err(|client| Self { client })
136 }
137
138 fn as_channel(&self) -> &::fidl::AsyncChannel {
139 self.client.as_channel()
140 }
141}
142
143impl DeviceProxy {
144 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
146 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
147 Self { client: fidl::client::Client::new(channel, protocol_name) }
148 }
149
150 pub fn take_event_stream(&self) -> DeviceEventStream {
156 DeviceEventStream { event_receiver: self.client.take_event_receiver() }
157 }
158
159 pub fn r#get_temperature_celsius(
161 &self,
162 ) -> fidl::client::QueryResponseFut<(i32, f32), fidl::encoding::DefaultFuchsiaResourceDialect>
163 {
164 DeviceProxyInterface::r#get_temperature_celsius(self)
165 }
166
167 pub fn r#get_sensor_name(
168 &self,
169 ) -> fidl::client::QueryResponseFut<String, fidl::encoding::DefaultFuchsiaResourceDialect> {
170 DeviceProxyInterface::r#get_sensor_name(self)
171 }
172}
173
174impl DeviceProxyInterface for DeviceProxy {
175 type GetTemperatureCelsiusResponseFut =
176 fidl::client::QueryResponseFut<(i32, f32), fidl::encoding::DefaultFuchsiaResourceDialect>;
177 fn r#get_temperature_celsius(&self) -> Self::GetTemperatureCelsiusResponseFut {
178 fn _decode(
179 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
180 ) -> Result<(i32, f32), fidl::Error> {
181 let _response = fidl::client::decode_transaction_body::<
182 DeviceGetTemperatureCelsiusResponse,
183 fidl::encoding::DefaultFuchsiaResourceDialect,
184 0x755e08b84736133c,
185 >(_buf?)?;
186 Ok((_response.status, _response.temp))
187 }
188 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, f32)>(
189 (),
190 0x755e08b84736133c,
191 fidl::encoding::DynamicFlags::empty(),
192 _decode,
193 )
194 }
195
196 type GetSensorNameResponseFut =
197 fidl::client::QueryResponseFut<String, fidl::encoding::DefaultFuchsiaResourceDialect>;
198 fn r#get_sensor_name(&self) -> Self::GetSensorNameResponseFut {
199 fn _decode(
200 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
201 ) -> Result<String, fidl::Error> {
202 let _response = fidl::client::decode_transaction_body::<
203 DeviceGetSensorNameResponse,
204 fidl::encoding::DefaultFuchsiaResourceDialect,
205 0x4cbd7abaeafc02c1,
206 >(_buf?)?;
207 Ok(_response.name)
208 }
209 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, String>(
210 (),
211 0x4cbd7abaeafc02c1,
212 fidl::encoding::DynamicFlags::empty(),
213 _decode,
214 )
215 }
216}
217
218pub struct DeviceEventStream {
219 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
220}
221
222impl std::marker::Unpin for DeviceEventStream {}
223
224impl futures::stream::FusedStream for DeviceEventStream {
225 fn is_terminated(&self) -> bool {
226 self.event_receiver.is_terminated()
227 }
228}
229
230impl futures::Stream for DeviceEventStream {
231 type Item = Result<DeviceEvent, fidl::Error>;
232
233 fn poll_next(
234 mut self: std::pin::Pin<&mut Self>,
235 cx: &mut std::task::Context<'_>,
236 ) -> std::task::Poll<Option<Self::Item>> {
237 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
238 &mut self.event_receiver,
239 cx
240 )?) {
241 Some(buf) => std::task::Poll::Ready(Some(DeviceEvent::decode(buf))),
242 None => std::task::Poll::Ready(None),
243 }
244 }
245}
246
247#[derive(Debug)]
248pub enum DeviceEvent {}
249
250impl DeviceEvent {
251 fn decode(
253 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
254 ) -> Result<DeviceEvent, fidl::Error> {
255 let (bytes, _handles) = buf.split_mut();
256 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
257 debug_assert_eq!(tx_header.tx_id, 0);
258 match tx_header.ordinal {
259 _ => Err(fidl::Error::UnknownOrdinal {
260 ordinal: tx_header.ordinal,
261 protocol_name: <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
262 }),
263 }
264 }
265}
266
267pub struct DeviceRequestStream {
269 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
270 is_terminated: bool,
271}
272
273impl std::marker::Unpin for DeviceRequestStream {}
274
275impl futures::stream::FusedStream for DeviceRequestStream {
276 fn is_terminated(&self) -> bool {
277 self.is_terminated
278 }
279}
280
281impl fidl::endpoints::RequestStream for DeviceRequestStream {
282 type Protocol = DeviceMarker;
283 type ControlHandle = DeviceControlHandle;
284
285 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
286 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
287 }
288
289 fn control_handle(&self) -> Self::ControlHandle {
290 DeviceControlHandle { inner: self.inner.clone() }
291 }
292
293 fn into_inner(
294 self,
295 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
296 {
297 (self.inner, self.is_terminated)
298 }
299
300 fn from_inner(
301 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
302 is_terminated: bool,
303 ) -> Self {
304 Self { inner, is_terminated }
305 }
306}
307
308impl futures::Stream for DeviceRequestStream {
309 type Item = Result<DeviceRequest, fidl::Error>;
310
311 fn poll_next(
312 mut self: std::pin::Pin<&mut Self>,
313 cx: &mut std::task::Context<'_>,
314 ) -> std::task::Poll<Option<Self::Item>> {
315 let this = &mut *self;
316 if this.inner.check_shutdown(cx) {
317 this.is_terminated = true;
318 return std::task::Poll::Ready(None);
319 }
320 if this.is_terminated {
321 panic!("polled DeviceRequestStream after completion");
322 }
323 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
324 |bytes, handles| {
325 match this.inner.channel().read_etc(cx, bytes, handles) {
326 std::task::Poll::Ready(Ok(())) => {}
327 std::task::Poll::Pending => return std::task::Poll::Pending,
328 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
329 this.is_terminated = true;
330 return std::task::Poll::Ready(None);
331 }
332 std::task::Poll::Ready(Err(e)) => {
333 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
334 e.into(),
335 ))))
336 }
337 }
338
339 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
341
342 std::task::Poll::Ready(Some(match header.ordinal {
343 0x755e08b84736133c => {
344 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
345 let mut req = fidl::new_empty!(
346 fidl::encoding::EmptyPayload,
347 fidl::encoding::DefaultFuchsiaResourceDialect
348 );
349 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
350 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
351 Ok(DeviceRequest::GetTemperatureCelsius {
352 responder: DeviceGetTemperatureCelsiusResponder {
353 control_handle: std::mem::ManuallyDrop::new(control_handle),
354 tx_id: header.tx_id,
355 },
356 })
357 }
358 0x4cbd7abaeafc02c1 => {
359 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
360 let mut req = fidl::new_empty!(
361 fidl::encoding::EmptyPayload,
362 fidl::encoding::DefaultFuchsiaResourceDialect
363 );
364 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
365 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
366 Ok(DeviceRequest::GetSensorName {
367 responder: DeviceGetSensorNameResponder {
368 control_handle: std::mem::ManuallyDrop::new(control_handle),
369 tx_id: header.tx_id,
370 },
371 })
372 }
373 _ => Err(fidl::Error::UnknownOrdinal {
374 ordinal: header.ordinal,
375 protocol_name:
376 <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
377 }),
378 }))
379 },
380 )
381 }
382}
383
384#[derive(Debug)]
385pub enum DeviceRequest {
386 GetTemperatureCelsius {
388 responder: DeviceGetTemperatureCelsiusResponder,
389 },
390 GetSensorName {
391 responder: DeviceGetSensorNameResponder,
392 },
393}
394
395impl DeviceRequest {
396 #[allow(irrefutable_let_patterns)]
397 pub fn into_get_temperature_celsius(self) -> Option<(DeviceGetTemperatureCelsiusResponder)> {
398 if let DeviceRequest::GetTemperatureCelsius { responder } = self {
399 Some((responder))
400 } else {
401 None
402 }
403 }
404
405 #[allow(irrefutable_let_patterns)]
406 pub fn into_get_sensor_name(self) -> Option<(DeviceGetSensorNameResponder)> {
407 if let DeviceRequest::GetSensorName { responder } = self {
408 Some((responder))
409 } else {
410 None
411 }
412 }
413
414 pub fn method_name(&self) -> &'static str {
416 match *self {
417 DeviceRequest::GetTemperatureCelsius { .. } => "get_temperature_celsius",
418 DeviceRequest::GetSensorName { .. } => "get_sensor_name",
419 }
420 }
421}
422
423#[derive(Debug, Clone)]
424pub struct DeviceControlHandle {
425 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
426}
427
428impl fidl::endpoints::ControlHandle for DeviceControlHandle {
429 fn shutdown(&self) {
430 self.inner.shutdown()
431 }
432 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
433 self.inner.shutdown_with_epitaph(status)
434 }
435
436 fn is_closed(&self) -> bool {
437 self.inner.channel().is_closed()
438 }
439 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
440 self.inner.channel().on_closed()
441 }
442
443 #[cfg(target_os = "fuchsia")]
444 fn signal_peer(
445 &self,
446 clear_mask: zx::Signals,
447 set_mask: zx::Signals,
448 ) -> Result<(), zx_status::Status> {
449 use fidl::Peered;
450 self.inner.channel().signal_peer(clear_mask, set_mask)
451 }
452}
453
454impl DeviceControlHandle {}
455
456#[must_use = "FIDL methods require a response to be sent"]
457#[derive(Debug)]
458pub struct DeviceGetTemperatureCelsiusResponder {
459 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
460 tx_id: u32,
461}
462
463impl std::ops::Drop for DeviceGetTemperatureCelsiusResponder {
467 fn drop(&mut self) {
468 self.control_handle.shutdown();
469 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
471 }
472}
473
474impl fidl::endpoints::Responder for DeviceGetTemperatureCelsiusResponder {
475 type ControlHandle = DeviceControlHandle;
476
477 fn control_handle(&self) -> &DeviceControlHandle {
478 &self.control_handle
479 }
480
481 fn drop_without_shutdown(mut self) {
482 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
484 std::mem::forget(self);
486 }
487}
488
489impl DeviceGetTemperatureCelsiusResponder {
490 pub fn send(self, mut status: i32, mut temp: f32) -> Result<(), fidl::Error> {
494 let _result = self.send_raw(status, temp);
495 if _result.is_err() {
496 self.control_handle.shutdown();
497 }
498 self.drop_without_shutdown();
499 _result
500 }
501
502 pub fn send_no_shutdown_on_err(
504 self,
505 mut status: i32,
506 mut temp: f32,
507 ) -> Result<(), fidl::Error> {
508 let _result = self.send_raw(status, temp);
509 self.drop_without_shutdown();
510 _result
511 }
512
513 fn send_raw(&self, mut status: i32, mut temp: f32) -> Result<(), fidl::Error> {
514 self.control_handle.inner.send::<DeviceGetTemperatureCelsiusResponse>(
515 (status, temp),
516 self.tx_id,
517 0x755e08b84736133c,
518 fidl::encoding::DynamicFlags::empty(),
519 )
520 }
521}
522
523#[must_use = "FIDL methods require a response to be sent"]
524#[derive(Debug)]
525pub struct DeviceGetSensorNameResponder {
526 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
527 tx_id: u32,
528}
529
530impl std::ops::Drop for DeviceGetSensorNameResponder {
534 fn drop(&mut self) {
535 self.control_handle.shutdown();
536 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
538 }
539}
540
541impl fidl::endpoints::Responder for DeviceGetSensorNameResponder {
542 type ControlHandle = DeviceControlHandle;
543
544 fn control_handle(&self) -> &DeviceControlHandle {
545 &self.control_handle
546 }
547
548 fn drop_without_shutdown(mut self) {
549 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
551 std::mem::forget(self);
553 }
554}
555
556impl DeviceGetSensorNameResponder {
557 pub fn send(self, mut name: &str) -> Result<(), fidl::Error> {
561 let _result = self.send_raw(name);
562 if _result.is_err() {
563 self.control_handle.shutdown();
564 }
565 self.drop_without_shutdown();
566 _result
567 }
568
569 pub fn send_no_shutdown_on_err(self, mut name: &str) -> Result<(), fidl::Error> {
571 let _result = self.send_raw(name);
572 self.drop_without_shutdown();
573 _result
574 }
575
576 fn send_raw(&self, mut name: &str) -> Result<(), fidl::Error> {
577 self.control_handle.inner.send::<DeviceGetSensorNameResponse>(
578 (name,),
579 self.tx_id,
580 0x4cbd7abaeafc02c1,
581 fidl::encoding::DynamicFlags::empty(),
582 )
583 }
584}
585
586#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
587pub struct ServiceMarker;
588
589#[cfg(target_os = "fuchsia")]
590impl fidl::endpoints::ServiceMarker for ServiceMarker {
591 type Proxy = ServiceProxy;
592 type Request = ServiceRequest;
593 const SERVICE_NAME: &'static str = "fuchsia.hardware.temperature.Service";
594}
595
596#[cfg(target_os = "fuchsia")]
599pub enum ServiceRequest {
600 Device(DeviceRequestStream),
601}
602
603#[cfg(target_os = "fuchsia")]
604impl fidl::endpoints::ServiceRequest for ServiceRequest {
605 type Service = ServiceMarker;
606
607 fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
608 match name {
609 "device" => Self::Device(
610 <DeviceRequestStream as fidl::endpoints::RequestStream>::from_channel(_channel),
611 ),
612 _ => panic!("no such member protocol name for service Service"),
613 }
614 }
615
616 fn member_names() -> &'static [&'static str] {
617 &["device"]
618 }
619}
620#[cfg(target_os = "fuchsia")]
621pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
622
623#[cfg(target_os = "fuchsia")]
624impl fidl::endpoints::ServiceProxy for ServiceProxy {
625 type Service = ServiceMarker;
626
627 fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
628 Self(opener)
629 }
630}
631
632#[cfg(target_os = "fuchsia")]
633impl ServiceProxy {
634 pub fn connect_to_device(&self) -> Result<DeviceProxy, fidl::Error> {
635 let (proxy, server_end) = fidl::endpoints::create_proxy::<DeviceMarker>();
636 self.connect_channel_to_device(server_end)?;
637 Ok(proxy)
638 }
639
640 pub fn connect_to_device_sync(&self) -> Result<DeviceSynchronousProxy, fidl::Error> {
643 let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<DeviceMarker>();
644 self.connect_channel_to_device(server_end)?;
645 Ok(proxy)
646 }
647
648 pub fn connect_channel_to_device(
651 &self,
652 server_end: fidl::endpoints::ServerEnd<DeviceMarker>,
653 ) -> Result<(), fidl::Error> {
654 self.0.open_member("device", server_end.into_channel())
655 }
656
657 pub fn instance_name(&self) -> &str {
658 self.0.instance_name()
659 }
660}
661
662mod internal {
663 use super::*;
664}