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_cpu_ctrl_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}
25pub type DeviceGetOperatingPointInfoResult = Result<CpuOperatingPointInfo, i32>;
26pub type DeviceSetCurrentOperatingPointResult = Result<u32, i32>;
27pub type DeviceGetOperatingPointCountResult = Result<u32, i32>;
28pub type DeviceGetRelativePerformanceResult = Result<u8, i32>;
29
30pub trait DeviceProxyInterface: Send + Sync {
31 type GetOperatingPointInfoResponseFut: std::future::Future<Output = Result<DeviceGetOperatingPointInfoResult, fidl::Error>>
32 + Send;
33 fn r#get_operating_point_info(&self, opp: u32) -> Self::GetOperatingPointInfoResponseFut;
34 type GetCurrentOperatingPointResponseFut: std::future::Future<Output = Result<u32, fidl::Error>>
35 + Send;
36 fn r#get_current_operating_point(&self) -> Self::GetCurrentOperatingPointResponseFut;
37 type SetCurrentOperatingPointResponseFut: std::future::Future<Output = Result<DeviceSetCurrentOperatingPointResult, fidl::Error>>
38 + Send;
39 fn r#set_current_operating_point(
40 &self,
41 requested_opp: u32,
42 ) -> Self::SetCurrentOperatingPointResponseFut;
43 type GetOperatingPointCountResponseFut: std::future::Future<Output = Result<DeviceGetOperatingPointCountResult, fidl::Error>>
44 + Send;
45 fn r#get_operating_point_count(&self) -> Self::GetOperatingPointCountResponseFut;
46 type GetNumLogicalCoresResponseFut: std::future::Future<Output = Result<u64, fidl::Error>>
47 + Send;
48 fn r#get_num_logical_cores(&self) -> Self::GetNumLogicalCoresResponseFut;
49 type GetLogicalCoreIdResponseFut: std::future::Future<Output = Result<u64, fidl::Error>> + Send;
50 fn r#get_logical_core_id(&self, index: u64) -> Self::GetLogicalCoreIdResponseFut;
51 type GetDomainIdResponseFut: std::future::Future<Output = Result<u32, fidl::Error>> + Send;
52 fn r#get_domain_id(&self) -> Self::GetDomainIdResponseFut;
53 type GetRelativePerformanceResponseFut: std::future::Future<Output = Result<DeviceGetRelativePerformanceResult, fidl::Error>>
54 + Send;
55 fn r#get_relative_performance(&self) -> Self::GetRelativePerformanceResponseFut;
56}
57#[derive(Debug)]
58#[cfg(target_os = "fuchsia")]
59pub struct DeviceSynchronousProxy {
60 client: fidl::client::sync::Client,
61}
62
63#[cfg(target_os = "fuchsia")]
64impl fidl::endpoints::SynchronousProxy for DeviceSynchronousProxy {
65 type Proxy = DeviceProxy;
66 type Protocol = DeviceMarker;
67
68 fn from_channel(inner: fidl::Channel) -> Self {
69 Self::new(inner)
70 }
71
72 fn into_channel(self) -> fidl::Channel {
73 self.client.into_channel()
74 }
75
76 fn as_channel(&self) -> &fidl::Channel {
77 self.client.as_channel()
78 }
79}
80
81#[cfg(target_os = "fuchsia")]
82impl DeviceSynchronousProxy {
83 pub fn new(channel: fidl::Channel) -> Self {
84 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
85 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
86 }
87
88 pub fn into_channel(self) -> fidl::Channel {
89 self.client.into_channel()
90 }
91
92 pub fn wait_for_event(
95 &self,
96 deadline: zx::MonotonicInstant,
97 ) -> Result<DeviceEvent, fidl::Error> {
98 DeviceEvent::decode(self.client.wait_for_event(deadline)?)
99 }
100
101 pub fn r#get_operating_point_info(
104 &self,
105 mut opp: u32,
106 ___deadline: zx::MonotonicInstant,
107 ) -> Result<DeviceGetOperatingPointInfoResult, fidl::Error> {
108 let _response = self.client.send_query::<
109 DeviceGetOperatingPointInfoRequest,
110 fidl::encoding::ResultType<DeviceGetOperatingPointInfoResponse, i32>,
111 >(
112 (opp,),
113 0x6594a9234fc958e2,
114 fidl::encoding::DynamicFlags::empty(),
115 ___deadline,
116 )?;
117 Ok(_response.map(|x| x.info))
118 }
119
120 pub fn r#get_current_operating_point(
122 &self,
123 ___deadline: zx::MonotonicInstant,
124 ) -> Result<u32, fidl::Error> {
125 let _response = self
126 .client
127 .send_query::<fidl::encoding::EmptyPayload, DeviceGetCurrentOperatingPointResponse>(
128 (),
129 0x52de67a5993f5fe1,
130 fidl::encoding::DynamicFlags::empty(),
131 ___deadline,
132 )?;
133 Ok(_response.out_opp)
134 }
135
136 pub fn r#set_current_operating_point(
142 &self,
143 mut requested_opp: u32,
144 ___deadline: zx::MonotonicInstant,
145 ) -> Result<DeviceSetCurrentOperatingPointResult, fidl::Error> {
146 let _response = self.client.send_query::<
147 DeviceSetCurrentOperatingPointRequest,
148 fidl::encoding::ResultType<DeviceSetCurrentOperatingPointResponse, i32>,
149 >(
150 (requested_opp,),
151 0x34a7828b5ca53fd,
152 fidl::encoding::DynamicFlags::empty(),
153 ___deadline,
154 )?;
155 Ok(_response.map(|x| x.out_opp))
156 }
157
158 pub fn r#get_operating_point_count(
160 &self,
161 ___deadline: zx::MonotonicInstant,
162 ) -> Result<DeviceGetOperatingPointCountResult, fidl::Error> {
163 let _response = self.client.send_query::<
164 fidl::encoding::EmptyPayload,
165 fidl::encoding::ResultType<DeviceGetOperatingPointCountResponse, i32>,
166 >(
167 (),
168 0x13e70ec7131889ba,
169 fidl::encoding::DynamicFlags::empty(),
170 ___deadline,
171 )?;
172 Ok(_response.map(|x| x.count))
173 }
174
175 pub fn r#get_num_logical_cores(
178 &self,
179 ___deadline: zx::MonotonicInstant,
180 ) -> Result<u64, fidl::Error> {
181 let _response = self
182 .client
183 .send_query::<fidl::encoding::EmptyPayload, DeviceGetNumLogicalCoresResponse>(
184 (),
185 0x74e304c90ca165c5,
186 fidl::encoding::DynamicFlags::empty(),
187 ___deadline,
188 )?;
189 Ok(_response.count)
190 }
191
192 pub fn r#get_logical_core_id(
196 &self,
197 mut index: u64,
198 ___deadline: zx::MonotonicInstant,
199 ) -> Result<u64, fidl::Error> {
200 let _response = self
201 .client
202 .send_query::<DeviceGetLogicalCoreIdRequest, DeviceGetLogicalCoreIdResponse>(
203 (index,),
204 0x7168f98ddbd26058,
205 fidl::encoding::DynamicFlags::empty(),
206 ___deadline,
207 )?;
208 Ok(_response.id)
209 }
210
211 pub fn r#get_domain_id(&self, ___deadline: zx::MonotonicInstant) -> Result<u32, fidl::Error> {
215 let _response =
216 self.client.send_query::<fidl::encoding::EmptyPayload, DeviceGetDomainIdResponse>(
217 (),
218 0x3030f85bdc1ef321,
219 fidl::encoding::DynamicFlags::empty(),
220 ___deadline,
221 )?;
222 Ok(_response.domain_id)
223 }
224
225 pub fn r#get_relative_performance(
230 &self,
231 ___deadline: zx::MonotonicInstant,
232 ) -> Result<DeviceGetRelativePerformanceResult, fidl::Error> {
233 let _response = self.client.send_query::<
234 fidl::encoding::EmptyPayload,
235 fidl::encoding::ResultType<DeviceGetRelativePerformanceResponse, i32>,
236 >(
237 (),
238 0x41c37eaf0c26a3d3,
239 fidl::encoding::DynamicFlags::empty(),
240 ___deadline,
241 )?;
242 Ok(_response.map(|x| x.relative_performance))
243 }
244}
245
246#[cfg(target_os = "fuchsia")]
247impl From<DeviceSynchronousProxy> for zx::Handle {
248 fn from(value: DeviceSynchronousProxy) -> Self {
249 value.into_channel().into()
250 }
251}
252
253#[cfg(target_os = "fuchsia")]
254impl From<fidl::Channel> for DeviceSynchronousProxy {
255 fn from(value: fidl::Channel) -> Self {
256 Self::new(value)
257 }
258}
259
260#[derive(Debug, Clone)]
261pub struct DeviceProxy {
262 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
263}
264
265impl fidl::endpoints::Proxy for DeviceProxy {
266 type Protocol = DeviceMarker;
267
268 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
269 Self::new(inner)
270 }
271
272 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
273 self.client.into_channel().map_err(|client| Self { client })
274 }
275
276 fn as_channel(&self) -> &::fidl::AsyncChannel {
277 self.client.as_channel()
278 }
279}
280
281impl DeviceProxy {
282 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
284 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
285 Self { client: fidl::client::Client::new(channel, protocol_name) }
286 }
287
288 pub fn take_event_stream(&self) -> DeviceEventStream {
294 DeviceEventStream { event_receiver: self.client.take_event_receiver() }
295 }
296
297 pub fn r#get_operating_point_info(
300 &self,
301 mut opp: u32,
302 ) -> fidl::client::QueryResponseFut<
303 DeviceGetOperatingPointInfoResult,
304 fidl::encoding::DefaultFuchsiaResourceDialect,
305 > {
306 DeviceProxyInterface::r#get_operating_point_info(self, opp)
307 }
308
309 pub fn r#get_current_operating_point(
311 &self,
312 ) -> fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect> {
313 DeviceProxyInterface::r#get_current_operating_point(self)
314 }
315
316 pub fn r#set_current_operating_point(
322 &self,
323 mut requested_opp: u32,
324 ) -> fidl::client::QueryResponseFut<
325 DeviceSetCurrentOperatingPointResult,
326 fidl::encoding::DefaultFuchsiaResourceDialect,
327 > {
328 DeviceProxyInterface::r#set_current_operating_point(self, requested_opp)
329 }
330
331 pub fn r#get_operating_point_count(
333 &self,
334 ) -> fidl::client::QueryResponseFut<
335 DeviceGetOperatingPointCountResult,
336 fidl::encoding::DefaultFuchsiaResourceDialect,
337 > {
338 DeviceProxyInterface::r#get_operating_point_count(self)
339 }
340
341 pub fn r#get_num_logical_cores(
344 &self,
345 ) -> fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect> {
346 DeviceProxyInterface::r#get_num_logical_cores(self)
347 }
348
349 pub fn r#get_logical_core_id(
353 &self,
354 mut index: u64,
355 ) -> fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect> {
356 DeviceProxyInterface::r#get_logical_core_id(self, index)
357 }
358
359 pub fn r#get_domain_id(
363 &self,
364 ) -> fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect> {
365 DeviceProxyInterface::r#get_domain_id(self)
366 }
367
368 pub fn r#get_relative_performance(
373 &self,
374 ) -> fidl::client::QueryResponseFut<
375 DeviceGetRelativePerformanceResult,
376 fidl::encoding::DefaultFuchsiaResourceDialect,
377 > {
378 DeviceProxyInterface::r#get_relative_performance(self)
379 }
380}
381
382impl DeviceProxyInterface for DeviceProxy {
383 type GetOperatingPointInfoResponseFut = fidl::client::QueryResponseFut<
384 DeviceGetOperatingPointInfoResult,
385 fidl::encoding::DefaultFuchsiaResourceDialect,
386 >;
387 fn r#get_operating_point_info(&self, mut opp: u32) -> Self::GetOperatingPointInfoResponseFut {
388 fn _decode(
389 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
390 ) -> Result<DeviceGetOperatingPointInfoResult, fidl::Error> {
391 let _response = fidl::client::decode_transaction_body::<
392 fidl::encoding::ResultType<DeviceGetOperatingPointInfoResponse, i32>,
393 fidl::encoding::DefaultFuchsiaResourceDialect,
394 0x6594a9234fc958e2,
395 >(_buf?)?;
396 Ok(_response.map(|x| x.info))
397 }
398 self.client.send_query_and_decode::<
399 DeviceGetOperatingPointInfoRequest,
400 DeviceGetOperatingPointInfoResult,
401 >(
402 (opp,),
403 0x6594a9234fc958e2,
404 fidl::encoding::DynamicFlags::empty(),
405 _decode,
406 )
407 }
408
409 type GetCurrentOperatingPointResponseFut =
410 fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect>;
411 fn r#get_current_operating_point(&self) -> Self::GetCurrentOperatingPointResponseFut {
412 fn _decode(
413 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
414 ) -> Result<u32, fidl::Error> {
415 let _response = fidl::client::decode_transaction_body::<
416 DeviceGetCurrentOperatingPointResponse,
417 fidl::encoding::DefaultFuchsiaResourceDialect,
418 0x52de67a5993f5fe1,
419 >(_buf?)?;
420 Ok(_response.out_opp)
421 }
422 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u32>(
423 (),
424 0x52de67a5993f5fe1,
425 fidl::encoding::DynamicFlags::empty(),
426 _decode,
427 )
428 }
429
430 type SetCurrentOperatingPointResponseFut = fidl::client::QueryResponseFut<
431 DeviceSetCurrentOperatingPointResult,
432 fidl::encoding::DefaultFuchsiaResourceDialect,
433 >;
434 fn r#set_current_operating_point(
435 &self,
436 mut requested_opp: u32,
437 ) -> Self::SetCurrentOperatingPointResponseFut {
438 fn _decode(
439 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
440 ) -> Result<DeviceSetCurrentOperatingPointResult, fidl::Error> {
441 let _response = fidl::client::decode_transaction_body::<
442 fidl::encoding::ResultType<DeviceSetCurrentOperatingPointResponse, i32>,
443 fidl::encoding::DefaultFuchsiaResourceDialect,
444 0x34a7828b5ca53fd,
445 >(_buf?)?;
446 Ok(_response.map(|x| x.out_opp))
447 }
448 self.client.send_query_and_decode::<
449 DeviceSetCurrentOperatingPointRequest,
450 DeviceSetCurrentOperatingPointResult,
451 >(
452 (requested_opp,),
453 0x34a7828b5ca53fd,
454 fidl::encoding::DynamicFlags::empty(),
455 _decode,
456 )
457 }
458
459 type GetOperatingPointCountResponseFut = fidl::client::QueryResponseFut<
460 DeviceGetOperatingPointCountResult,
461 fidl::encoding::DefaultFuchsiaResourceDialect,
462 >;
463 fn r#get_operating_point_count(&self) -> Self::GetOperatingPointCountResponseFut {
464 fn _decode(
465 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
466 ) -> Result<DeviceGetOperatingPointCountResult, fidl::Error> {
467 let _response = fidl::client::decode_transaction_body::<
468 fidl::encoding::ResultType<DeviceGetOperatingPointCountResponse, i32>,
469 fidl::encoding::DefaultFuchsiaResourceDialect,
470 0x13e70ec7131889ba,
471 >(_buf?)?;
472 Ok(_response.map(|x| x.count))
473 }
474 self.client.send_query_and_decode::<
475 fidl::encoding::EmptyPayload,
476 DeviceGetOperatingPointCountResult,
477 >(
478 (),
479 0x13e70ec7131889ba,
480 fidl::encoding::DynamicFlags::empty(),
481 _decode,
482 )
483 }
484
485 type GetNumLogicalCoresResponseFut =
486 fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect>;
487 fn r#get_num_logical_cores(&self) -> Self::GetNumLogicalCoresResponseFut {
488 fn _decode(
489 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
490 ) -> Result<u64, fidl::Error> {
491 let _response = fidl::client::decode_transaction_body::<
492 DeviceGetNumLogicalCoresResponse,
493 fidl::encoding::DefaultFuchsiaResourceDialect,
494 0x74e304c90ca165c5,
495 >(_buf?)?;
496 Ok(_response.count)
497 }
498 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u64>(
499 (),
500 0x74e304c90ca165c5,
501 fidl::encoding::DynamicFlags::empty(),
502 _decode,
503 )
504 }
505
506 type GetLogicalCoreIdResponseFut =
507 fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect>;
508 fn r#get_logical_core_id(&self, mut index: u64) -> Self::GetLogicalCoreIdResponseFut {
509 fn _decode(
510 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
511 ) -> Result<u64, fidl::Error> {
512 let _response = fidl::client::decode_transaction_body::<
513 DeviceGetLogicalCoreIdResponse,
514 fidl::encoding::DefaultFuchsiaResourceDialect,
515 0x7168f98ddbd26058,
516 >(_buf?)?;
517 Ok(_response.id)
518 }
519 self.client.send_query_and_decode::<DeviceGetLogicalCoreIdRequest, u64>(
520 (index,),
521 0x7168f98ddbd26058,
522 fidl::encoding::DynamicFlags::empty(),
523 _decode,
524 )
525 }
526
527 type GetDomainIdResponseFut =
528 fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect>;
529 fn r#get_domain_id(&self) -> Self::GetDomainIdResponseFut {
530 fn _decode(
531 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
532 ) -> Result<u32, fidl::Error> {
533 let _response = fidl::client::decode_transaction_body::<
534 DeviceGetDomainIdResponse,
535 fidl::encoding::DefaultFuchsiaResourceDialect,
536 0x3030f85bdc1ef321,
537 >(_buf?)?;
538 Ok(_response.domain_id)
539 }
540 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u32>(
541 (),
542 0x3030f85bdc1ef321,
543 fidl::encoding::DynamicFlags::empty(),
544 _decode,
545 )
546 }
547
548 type GetRelativePerformanceResponseFut = fidl::client::QueryResponseFut<
549 DeviceGetRelativePerformanceResult,
550 fidl::encoding::DefaultFuchsiaResourceDialect,
551 >;
552 fn r#get_relative_performance(&self) -> Self::GetRelativePerformanceResponseFut {
553 fn _decode(
554 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
555 ) -> Result<DeviceGetRelativePerformanceResult, fidl::Error> {
556 let _response = fidl::client::decode_transaction_body::<
557 fidl::encoding::ResultType<DeviceGetRelativePerformanceResponse, i32>,
558 fidl::encoding::DefaultFuchsiaResourceDialect,
559 0x41c37eaf0c26a3d3,
560 >(_buf?)?;
561 Ok(_response.map(|x| x.relative_performance))
562 }
563 self.client.send_query_and_decode::<
564 fidl::encoding::EmptyPayload,
565 DeviceGetRelativePerformanceResult,
566 >(
567 (),
568 0x41c37eaf0c26a3d3,
569 fidl::encoding::DynamicFlags::empty(),
570 _decode,
571 )
572 }
573}
574
575pub struct DeviceEventStream {
576 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
577}
578
579impl std::marker::Unpin for DeviceEventStream {}
580
581impl futures::stream::FusedStream for DeviceEventStream {
582 fn is_terminated(&self) -> bool {
583 self.event_receiver.is_terminated()
584 }
585}
586
587impl futures::Stream for DeviceEventStream {
588 type Item = Result<DeviceEvent, fidl::Error>;
589
590 fn poll_next(
591 mut self: std::pin::Pin<&mut Self>,
592 cx: &mut std::task::Context<'_>,
593 ) -> std::task::Poll<Option<Self::Item>> {
594 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
595 &mut self.event_receiver,
596 cx
597 )?) {
598 Some(buf) => std::task::Poll::Ready(Some(DeviceEvent::decode(buf))),
599 None => std::task::Poll::Ready(None),
600 }
601 }
602}
603
604#[derive(Debug)]
605pub enum DeviceEvent {}
606
607impl DeviceEvent {
608 fn decode(
610 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
611 ) -> Result<DeviceEvent, fidl::Error> {
612 let (bytes, _handles) = buf.split_mut();
613 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
614 debug_assert_eq!(tx_header.tx_id, 0);
615 match tx_header.ordinal {
616 _ => Err(fidl::Error::UnknownOrdinal {
617 ordinal: tx_header.ordinal,
618 protocol_name: <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
619 }),
620 }
621 }
622}
623
624pub struct DeviceRequestStream {
626 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
627 is_terminated: bool,
628}
629
630impl std::marker::Unpin for DeviceRequestStream {}
631
632impl futures::stream::FusedStream for DeviceRequestStream {
633 fn is_terminated(&self) -> bool {
634 self.is_terminated
635 }
636}
637
638impl fidl::endpoints::RequestStream for DeviceRequestStream {
639 type Protocol = DeviceMarker;
640 type ControlHandle = DeviceControlHandle;
641
642 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
643 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
644 }
645
646 fn control_handle(&self) -> Self::ControlHandle {
647 DeviceControlHandle { inner: self.inner.clone() }
648 }
649
650 fn into_inner(
651 self,
652 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
653 {
654 (self.inner, self.is_terminated)
655 }
656
657 fn from_inner(
658 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
659 is_terminated: bool,
660 ) -> Self {
661 Self { inner, is_terminated }
662 }
663}
664
665impl futures::Stream for DeviceRequestStream {
666 type Item = Result<DeviceRequest, fidl::Error>;
667
668 fn poll_next(
669 mut self: std::pin::Pin<&mut Self>,
670 cx: &mut std::task::Context<'_>,
671 ) -> std::task::Poll<Option<Self::Item>> {
672 let this = &mut *self;
673 if this.inner.check_shutdown(cx) {
674 this.is_terminated = true;
675 return std::task::Poll::Ready(None);
676 }
677 if this.is_terminated {
678 panic!("polled DeviceRequestStream after completion");
679 }
680 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
681 |bytes, handles| {
682 match this.inner.channel().read_etc(cx, bytes, handles) {
683 std::task::Poll::Ready(Ok(())) => {}
684 std::task::Poll::Pending => return std::task::Poll::Pending,
685 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
686 this.is_terminated = true;
687 return std::task::Poll::Ready(None);
688 }
689 std::task::Poll::Ready(Err(e)) => {
690 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
691 e.into(),
692 ))))
693 }
694 }
695
696 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
698
699 std::task::Poll::Ready(Some(match header.ordinal {
700 0x6594a9234fc958e2 => {
701 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
702 let mut req = fidl::new_empty!(
703 DeviceGetOperatingPointInfoRequest,
704 fidl::encoding::DefaultFuchsiaResourceDialect
705 );
706 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceGetOperatingPointInfoRequest>(&header, _body_bytes, handles, &mut req)?;
707 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
708 Ok(DeviceRequest::GetOperatingPointInfo {
709 opp: req.opp,
710
711 responder: DeviceGetOperatingPointInfoResponder {
712 control_handle: std::mem::ManuallyDrop::new(control_handle),
713 tx_id: header.tx_id,
714 },
715 })
716 }
717 0x52de67a5993f5fe1 => {
718 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
719 let mut req = fidl::new_empty!(
720 fidl::encoding::EmptyPayload,
721 fidl::encoding::DefaultFuchsiaResourceDialect
722 );
723 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
724 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
725 Ok(DeviceRequest::GetCurrentOperatingPoint {
726 responder: DeviceGetCurrentOperatingPointResponder {
727 control_handle: std::mem::ManuallyDrop::new(control_handle),
728 tx_id: header.tx_id,
729 },
730 })
731 }
732 0x34a7828b5ca53fd => {
733 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
734 let mut req = fidl::new_empty!(
735 DeviceSetCurrentOperatingPointRequest,
736 fidl::encoding::DefaultFuchsiaResourceDialect
737 );
738 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceSetCurrentOperatingPointRequest>(&header, _body_bytes, handles, &mut req)?;
739 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
740 Ok(DeviceRequest::SetCurrentOperatingPoint {
741 requested_opp: req.requested_opp,
742
743 responder: DeviceSetCurrentOperatingPointResponder {
744 control_handle: std::mem::ManuallyDrop::new(control_handle),
745 tx_id: header.tx_id,
746 },
747 })
748 }
749 0x13e70ec7131889ba => {
750 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
751 let mut req = fidl::new_empty!(
752 fidl::encoding::EmptyPayload,
753 fidl::encoding::DefaultFuchsiaResourceDialect
754 );
755 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
756 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
757 Ok(DeviceRequest::GetOperatingPointCount {
758 responder: DeviceGetOperatingPointCountResponder {
759 control_handle: std::mem::ManuallyDrop::new(control_handle),
760 tx_id: header.tx_id,
761 },
762 })
763 }
764 0x74e304c90ca165c5 => {
765 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
766 let mut req = fidl::new_empty!(
767 fidl::encoding::EmptyPayload,
768 fidl::encoding::DefaultFuchsiaResourceDialect
769 );
770 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
771 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
772 Ok(DeviceRequest::GetNumLogicalCores {
773 responder: DeviceGetNumLogicalCoresResponder {
774 control_handle: std::mem::ManuallyDrop::new(control_handle),
775 tx_id: header.tx_id,
776 },
777 })
778 }
779 0x7168f98ddbd26058 => {
780 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
781 let mut req = fidl::new_empty!(
782 DeviceGetLogicalCoreIdRequest,
783 fidl::encoding::DefaultFuchsiaResourceDialect
784 );
785 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceGetLogicalCoreIdRequest>(&header, _body_bytes, handles, &mut req)?;
786 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
787 Ok(DeviceRequest::GetLogicalCoreId {
788 index: req.index,
789
790 responder: DeviceGetLogicalCoreIdResponder {
791 control_handle: std::mem::ManuallyDrop::new(control_handle),
792 tx_id: header.tx_id,
793 },
794 })
795 }
796 0x3030f85bdc1ef321 => {
797 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
798 let mut req = fidl::new_empty!(
799 fidl::encoding::EmptyPayload,
800 fidl::encoding::DefaultFuchsiaResourceDialect
801 );
802 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
803 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
804 Ok(DeviceRequest::GetDomainId {
805 responder: DeviceGetDomainIdResponder {
806 control_handle: std::mem::ManuallyDrop::new(control_handle),
807 tx_id: header.tx_id,
808 },
809 })
810 }
811 0x41c37eaf0c26a3d3 => {
812 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
813 let mut req = fidl::new_empty!(
814 fidl::encoding::EmptyPayload,
815 fidl::encoding::DefaultFuchsiaResourceDialect
816 );
817 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
818 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
819 Ok(DeviceRequest::GetRelativePerformance {
820 responder: DeviceGetRelativePerformanceResponder {
821 control_handle: std::mem::ManuallyDrop::new(control_handle),
822 tx_id: header.tx_id,
823 },
824 })
825 }
826 _ => Err(fidl::Error::UnknownOrdinal {
827 ordinal: header.ordinal,
828 protocol_name:
829 <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
830 }),
831 }))
832 },
833 )
834 }
835}
836
837#[derive(Debug)]
838pub enum DeviceRequest {
839 GetOperatingPointInfo { opp: u32, responder: DeviceGetOperatingPointInfoResponder },
842 GetCurrentOperatingPoint { responder: DeviceGetCurrentOperatingPointResponder },
844 SetCurrentOperatingPoint {
850 requested_opp: u32,
851 responder: DeviceSetCurrentOperatingPointResponder,
852 },
853 GetOperatingPointCount { responder: DeviceGetOperatingPointCountResponder },
855 GetNumLogicalCores { responder: DeviceGetNumLogicalCoresResponder },
858 GetLogicalCoreId { index: u64, responder: DeviceGetLogicalCoreIdResponder },
862 GetDomainId { responder: DeviceGetDomainIdResponder },
866 GetRelativePerformance { responder: DeviceGetRelativePerformanceResponder },
871}
872
873impl DeviceRequest {
874 #[allow(irrefutable_let_patterns)]
875 pub fn into_get_operating_point_info(
876 self,
877 ) -> Option<(u32, DeviceGetOperatingPointInfoResponder)> {
878 if let DeviceRequest::GetOperatingPointInfo { opp, responder } = self {
879 Some((opp, responder))
880 } else {
881 None
882 }
883 }
884
885 #[allow(irrefutable_let_patterns)]
886 pub fn into_get_current_operating_point(
887 self,
888 ) -> Option<(DeviceGetCurrentOperatingPointResponder)> {
889 if let DeviceRequest::GetCurrentOperatingPoint { responder } = self {
890 Some((responder))
891 } else {
892 None
893 }
894 }
895
896 #[allow(irrefutable_let_patterns)]
897 pub fn into_set_current_operating_point(
898 self,
899 ) -> Option<(u32, DeviceSetCurrentOperatingPointResponder)> {
900 if let DeviceRequest::SetCurrentOperatingPoint { requested_opp, responder } = self {
901 Some((requested_opp, responder))
902 } else {
903 None
904 }
905 }
906
907 #[allow(irrefutable_let_patterns)]
908 pub fn into_get_operating_point_count(self) -> Option<(DeviceGetOperatingPointCountResponder)> {
909 if let DeviceRequest::GetOperatingPointCount { responder } = self {
910 Some((responder))
911 } else {
912 None
913 }
914 }
915
916 #[allow(irrefutable_let_patterns)]
917 pub fn into_get_num_logical_cores(self) -> Option<(DeviceGetNumLogicalCoresResponder)> {
918 if let DeviceRequest::GetNumLogicalCores { responder } = self {
919 Some((responder))
920 } else {
921 None
922 }
923 }
924
925 #[allow(irrefutable_let_patterns)]
926 pub fn into_get_logical_core_id(self) -> Option<(u64, DeviceGetLogicalCoreIdResponder)> {
927 if let DeviceRequest::GetLogicalCoreId { index, responder } = self {
928 Some((index, responder))
929 } else {
930 None
931 }
932 }
933
934 #[allow(irrefutable_let_patterns)]
935 pub fn into_get_domain_id(self) -> Option<(DeviceGetDomainIdResponder)> {
936 if let DeviceRequest::GetDomainId { responder } = self {
937 Some((responder))
938 } else {
939 None
940 }
941 }
942
943 #[allow(irrefutable_let_patterns)]
944 pub fn into_get_relative_performance(self) -> Option<(DeviceGetRelativePerformanceResponder)> {
945 if let DeviceRequest::GetRelativePerformance { responder } = self {
946 Some((responder))
947 } else {
948 None
949 }
950 }
951
952 pub fn method_name(&self) -> &'static str {
954 match *self {
955 DeviceRequest::GetOperatingPointInfo { .. } => "get_operating_point_info",
956 DeviceRequest::GetCurrentOperatingPoint { .. } => "get_current_operating_point",
957 DeviceRequest::SetCurrentOperatingPoint { .. } => "set_current_operating_point",
958 DeviceRequest::GetOperatingPointCount { .. } => "get_operating_point_count",
959 DeviceRequest::GetNumLogicalCores { .. } => "get_num_logical_cores",
960 DeviceRequest::GetLogicalCoreId { .. } => "get_logical_core_id",
961 DeviceRequest::GetDomainId { .. } => "get_domain_id",
962 DeviceRequest::GetRelativePerformance { .. } => "get_relative_performance",
963 }
964 }
965}
966
967#[derive(Debug, Clone)]
968pub struct DeviceControlHandle {
969 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
970}
971
972impl fidl::endpoints::ControlHandle for DeviceControlHandle {
973 fn shutdown(&self) {
974 self.inner.shutdown()
975 }
976 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
977 self.inner.shutdown_with_epitaph(status)
978 }
979
980 fn is_closed(&self) -> bool {
981 self.inner.channel().is_closed()
982 }
983 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
984 self.inner.channel().on_closed()
985 }
986
987 #[cfg(target_os = "fuchsia")]
988 fn signal_peer(
989 &self,
990 clear_mask: zx::Signals,
991 set_mask: zx::Signals,
992 ) -> Result<(), zx_status::Status> {
993 use fidl::Peered;
994 self.inner.channel().signal_peer(clear_mask, set_mask)
995 }
996}
997
998impl DeviceControlHandle {}
999
1000#[must_use = "FIDL methods require a response to be sent"]
1001#[derive(Debug)]
1002pub struct DeviceGetOperatingPointInfoResponder {
1003 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1004 tx_id: u32,
1005}
1006
1007impl std::ops::Drop for DeviceGetOperatingPointInfoResponder {
1011 fn drop(&mut self) {
1012 self.control_handle.shutdown();
1013 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1015 }
1016}
1017
1018impl fidl::endpoints::Responder for DeviceGetOperatingPointInfoResponder {
1019 type ControlHandle = DeviceControlHandle;
1020
1021 fn control_handle(&self) -> &DeviceControlHandle {
1022 &self.control_handle
1023 }
1024
1025 fn drop_without_shutdown(mut self) {
1026 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1028 std::mem::forget(self);
1030 }
1031}
1032
1033impl DeviceGetOperatingPointInfoResponder {
1034 pub fn send(self, mut result: Result<&CpuOperatingPointInfo, i32>) -> Result<(), fidl::Error> {
1038 let _result = self.send_raw(result);
1039 if _result.is_err() {
1040 self.control_handle.shutdown();
1041 }
1042 self.drop_without_shutdown();
1043 _result
1044 }
1045
1046 pub fn send_no_shutdown_on_err(
1048 self,
1049 mut result: Result<&CpuOperatingPointInfo, i32>,
1050 ) -> Result<(), fidl::Error> {
1051 let _result = self.send_raw(result);
1052 self.drop_without_shutdown();
1053 _result
1054 }
1055
1056 fn send_raw(&self, mut result: Result<&CpuOperatingPointInfo, i32>) -> Result<(), fidl::Error> {
1057 self.control_handle.inner.send::<fidl::encoding::ResultType<
1058 DeviceGetOperatingPointInfoResponse,
1059 i32,
1060 >>(
1061 result.map(|info| (info,)),
1062 self.tx_id,
1063 0x6594a9234fc958e2,
1064 fidl::encoding::DynamicFlags::empty(),
1065 )
1066 }
1067}
1068
1069#[must_use = "FIDL methods require a response to be sent"]
1070#[derive(Debug)]
1071pub struct DeviceGetCurrentOperatingPointResponder {
1072 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1073 tx_id: u32,
1074}
1075
1076impl std::ops::Drop for DeviceGetCurrentOperatingPointResponder {
1080 fn drop(&mut self) {
1081 self.control_handle.shutdown();
1082 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1084 }
1085}
1086
1087impl fidl::endpoints::Responder for DeviceGetCurrentOperatingPointResponder {
1088 type ControlHandle = DeviceControlHandle;
1089
1090 fn control_handle(&self) -> &DeviceControlHandle {
1091 &self.control_handle
1092 }
1093
1094 fn drop_without_shutdown(mut self) {
1095 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1097 std::mem::forget(self);
1099 }
1100}
1101
1102impl DeviceGetCurrentOperatingPointResponder {
1103 pub fn send(self, mut out_opp: u32) -> Result<(), fidl::Error> {
1107 let _result = self.send_raw(out_opp);
1108 if _result.is_err() {
1109 self.control_handle.shutdown();
1110 }
1111 self.drop_without_shutdown();
1112 _result
1113 }
1114
1115 pub fn send_no_shutdown_on_err(self, mut out_opp: u32) -> Result<(), fidl::Error> {
1117 let _result = self.send_raw(out_opp);
1118 self.drop_without_shutdown();
1119 _result
1120 }
1121
1122 fn send_raw(&self, mut out_opp: u32) -> Result<(), fidl::Error> {
1123 self.control_handle.inner.send::<DeviceGetCurrentOperatingPointResponse>(
1124 (out_opp,),
1125 self.tx_id,
1126 0x52de67a5993f5fe1,
1127 fidl::encoding::DynamicFlags::empty(),
1128 )
1129 }
1130}
1131
1132#[must_use = "FIDL methods require a response to be sent"]
1133#[derive(Debug)]
1134pub struct DeviceSetCurrentOperatingPointResponder {
1135 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1136 tx_id: u32,
1137}
1138
1139impl std::ops::Drop for DeviceSetCurrentOperatingPointResponder {
1143 fn drop(&mut self) {
1144 self.control_handle.shutdown();
1145 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1147 }
1148}
1149
1150impl fidl::endpoints::Responder for DeviceSetCurrentOperatingPointResponder {
1151 type ControlHandle = DeviceControlHandle;
1152
1153 fn control_handle(&self) -> &DeviceControlHandle {
1154 &self.control_handle
1155 }
1156
1157 fn drop_without_shutdown(mut self) {
1158 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1160 std::mem::forget(self);
1162 }
1163}
1164
1165impl DeviceSetCurrentOperatingPointResponder {
1166 pub fn send(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1170 let _result = self.send_raw(result);
1171 if _result.is_err() {
1172 self.control_handle.shutdown();
1173 }
1174 self.drop_without_shutdown();
1175 _result
1176 }
1177
1178 pub fn send_no_shutdown_on_err(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1180 let _result = self.send_raw(result);
1181 self.drop_without_shutdown();
1182 _result
1183 }
1184
1185 fn send_raw(&self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1186 self.control_handle.inner.send::<fidl::encoding::ResultType<
1187 DeviceSetCurrentOperatingPointResponse,
1188 i32,
1189 >>(
1190 result.map(|out_opp| (out_opp,)),
1191 self.tx_id,
1192 0x34a7828b5ca53fd,
1193 fidl::encoding::DynamicFlags::empty(),
1194 )
1195 }
1196}
1197
1198#[must_use = "FIDL methods require a response to be sent"]
1199#[derive(Debug)]
1200pub struct DeviceGetOperatingPointCountResponder {
1201 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1202 tx_id: u32,
1203}
1204
1205impl std::ops::Drop for DeviceGetOperatingPointCountResponder {
1209 fn drop(&mut self) {
1210 self.control_handle.shutdown();
1211 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1213 }
1214}
1215
1216impl fidl::endpoints::Responder for DeviceGetOperatingPointCountResponder {
1217 type ControlHandle = DeviceControlHandle;
1218
1219 fn control_handle(&self) -> &DeviceControlHandle {
1220 &self.control_handle
1221 }
1222
1223 fn drop_without_shutdown(mut self) {
1224 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1226 std::mem::forget(self);
1228 }
1229}
1230
1231impl DeviceGetOperatingPointCountResponder {
1232 pub fn send(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1236 let _result = self.send_raw(result);
1237 if _result.is_err() {
1238 self.control_handle.shutdown();
1239 }
1240 self.drop_without_shutdown();
1241 _result
1242 }
1243
1244 pub fn send_no_shutdown_on_err(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1246 let _result = self.send_raw(result);
1247 self.drop_without_shutdown();
1248 _result
1249 }
1250
1251 fn send_raw(&self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
1252 self.control_handle.inner.send::<fidl::encoding::ResultType<
1253 DeviceGetOperatingPointCountResponse,
1254 i32,
1255 >>(
1256 result.map(|count| (count,)),
1257 self.tx_id,
1258 0x13e70ec7131889ba,
1259 fidl::encoding::DynamicFlags::empty(),
1260 )
1261 }
1262}
1263
1264#[must_use = "FIDL methods require a response to be sent"]
1265#[derive(Debug)]
1266pub struct DeviceGetNumLogicalCoresResponder {
1267 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1268 tx_id: u32,
1269}
1270
1271impl std::ops::Drop for DeviceGetNumLogicalCoresResponder {
1275 fn drop(&mut self) {
1276 self.control_handle.shutdown();
1277 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1279 }
1280}
1281
1282impl fidl::endpoints::Responder for DeviceGetNumLogicalCoresResponder {
1283 type ControlHandle = DeviceControlHandle;
1284
1285 fn control_handle(&self) -> &DeviceControlHandle {
1286 &self.control_handle
1287 }
1288
1289 fn drop_without_shutdown(mut self) {
1290 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1292 std::mem::forget(self);
1294 }
1295}
1296
1297impl DeviceGetNumLogicalCoresResponder {
1298 pub fn send(self, mut count: u64) -> Result<(), fidl::Error> {
1302 let _result = self.send_raw(count);
1303 if _result.is_err() {
1304 self.control_handle.shutdown();
1305 }
1306 self.drop_without_shutdown();
1307 _result
1308 }
1309
1310 pub fn send_no_shutdown_on_err(self, mut count: u64) -> Result<(), fidl::Error> {
1312 let _result = self.send_raw(count);
1313 self.drop_without_shutdown();
1314 _result
1315 }
1316
1317 fn send_raw(&self, mut count: u64) -> Result<(), fidl::Error> {
1318 self.control_handle.inner.send::<DeviceGetNumLogicalCoresResponse>(
1319 (count,),
1320 self.tx_id,
1321 0x74e304c90ca165c5,
1322 fidl::encoding::DynamicFlags::empty(),
1323 )
1324 }
1325}
1326
1327#[must_use = "FIDL methods require a response to be sent"]
1328#[derive(Debug)]
1329pub struct DeviceGetLogicalCoreIdResponder {
1330 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1331 tx_id: u32,
1332}
1333
1334impl std::ops::Drop for DeviceGetLogicalCoreIdResponder {
1338 fn drop(&mut self) {
1339 self.control_handle.shutdown();
1340 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1342 }
1343}
1344
1345impl fidl::endpoints::Responder for DeviceGetLogicalCoreIdResponder {
1346 type ControlHandle = DeviceControlHandle;
1347
1348 fn control_handle(&self) -> &DeviceControlHandle {
1349 &self.control_handle
1350 }
1351
1352 fn drop_without_shutdown(mut self) {
1353 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1355 std::mem::forget(self);
1357 }
1358}
1359
1360impl DeviceGetLogicalCoreIdResponder {
1361 pub fn send(self, mut id: u64) -> Result<(), fidl::Error> {
1365 let _result = self.send_raw(id);
1366 if _result.is_err() {
1367 self.control_handle.shutdown();
1368 }
1369 self.drop_without_shutdown();
1370 _result
1371 }
1372
1373 pub fn send_no_shutdown_on_err(self, mut id: u64) -> Result<(), fidl::Error> {
1375 let _result = self.send_raw(id);
1376 self.drop_without_shutdown();
1377 _result
1378 }
1379
1380 fn send_raw(&self, mut id: u64) -> Result<(), fidl::Error> {
1381 self.control_handle.inner.send::<DeviceGetLogicalCoreIdResponse>(
1382 (id,),
1383 self.tx_id,
1384 0x7168f98ddbd26058,
1385 fidl::encoding::DynamicFlags::empty(),
1386 )
1387 }
1388}
1389
1390#[must_use = "FIDL methods require a response to be sent"]
1391#[derive(Debug)]
1392pub struct DeviceGetDomainIdResponder {
1393 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1394 tx_id: u32,
1395}
1396
1397impl std::ops::Drop for DeviceGetDomainIdResponder {
1401 fn drop(&mut self) {
1402 self.control_handle.shutdown();
1403 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1405 }
1406}
1407
1408impl fidl::endpoints::Responder for DeviceGetDomainIdResponder {
1409 type ControlHandle = DeviceControlHandle;
1410
1411 fn control_handle(&self) -> &DeviceControlHandle {
1412 &self.control_handle
1413 }
1414
1415 fn drop_without_shutdown(mut self) {
1416 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1418 std::mem::forget(self);
1420 }
1421}
1422
1423impl DeviceGetDomainIdResponder {
1424 pub fn send(self, mut domain_id: u32) -> Result<(), fidl::Error> {
1428 let _result = self.send_raw(domain_id);
1429 if _result.is_err() {
1430 self.control_handle.shutdown();
1431 }
1432 self.drop_without_shutdown();
1433 _result
1434 }
1435
1436 pub fn send_no_shutdown_on_err(self, mut domain_id: u32) -> Result<(), fidl::Error> {
1438 let _result = self.send_raw(domain_id);
1439 self.drop_without_shutdown();
1440 _result
1441 }
1442
1443 fn send_raw(&self, mut domain_id: u32) -> Result<(), fidl::Error> {
1444 self.control_handle.inner.send::<DeviceGetDomainIdResponse>(
1445 (domain_id,),
1446 self.tx_id,
1447 0x3030f85bdc1ef321,
1448 fidl::encoding::DynamicFlags::empty(),
1449 )
1450 }
1451}
1452
1453#[must_use = "FIDL methods require a response to be sent"]
1454#[derive(Debug)]
1455pub struct DeviceGetRelativePerformanceResponder {
1456 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1457 tx_id: u32,
1458}
1459
1460impl std::ops::Drop for DeviceGetRelativePerformanceResponder {
1464 fn drop(&mut self) {
1465 self.control_handle.shutdown();
1466 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1468 }
1469}
1470
1471impl fidl::endpoints::Responder for DeviceGetRelativePerformanceResponder {
1472 type ControlHandle = DeviceControlHandle;
1473
1474 fn control_handle(&self) -> &DeviceControlHandle {
1475 &self.control_handle
1476 }
1477
1478 fn drop_without_shutdown(mut self) {
1479 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1481 std::mem::forget(self);
1483 }
1484}
1485
1486impl DeviceGetRelativePerformanceResponder {
1487 pub fn send(self, mut result: Result<u8, i32>) -> Result<(), fidl::Error> {
1491 let _result = self.send_raw(result);
1492 if _result.is_err() {
1493 self.control_handle.shutdown();
1494 }
1495 self.drop_without_shutdown();
1496 _result
1497 }
1498
1499 pub fn send_no_shutdown_on_err(self, mut result: Result<u8, i32>) -> Result<(), fidl::Error> {
1501 let _result = self.send_raw(result);
1502 self.drop_without_shutdown();
1503 _result
1504 }
1505
1506 fn send_raw(&self, mut result: Result<u8, i32>) -> Result<(), fidl::Error> {
1507 self.control_handle.inner.send::<fidl::encoding::ResultType<
1508 DeviceGetRelativePerformanceResponse,
1509 i32,
1510 >>(
1511 result.map(|relative_performance| (relative_performance,)),
1512 self.tx_id,
1513 0x41c37eaf0c26a3d3,
1514 fidl::encoding::DynamicFlags::empty(),
1515 )
1516 }
1517}
1518
1519#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1520pub struct ServiceMarker;
1521
1522#[cfg(target_os = "fuchsia")]
1523impl fidl::endpoints::ServiceMarker for ServiceMarker {
1524 type Proxy = ServiceProxy;
1525 type Request = ServiceRequest;
1526 const SERVICE_NAME: &'static str = "fuchsia.hardware.cpu.ctrl.Service";
1527}
1528
1529#[cfg(target_os = "fuchsia")]
1532pub enum ServiceRequest {
1533 Device(DeviceRequestStream),
1534}
1535
1536#[cfg(target_os = "fuchsia")]
1537impl fidl::endpoints::ServiceRequest for ServiceRequest {
1538 type Service = ServiceMarker;
1539
1540 fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
1541 match name {
1542 "device" => Self::Device(
1543 <DeviceRequestStream as fidl::endpoints::RequestStream>::from_channel(_channel),
1544 ),
1545 _ => panic!("no such member protocol name for service Service"),
1546 }
1547 }
1548
1549 fn member_names() -> &'static [&'static str] {
1550 &["device"]
1551 }
1552}
1553#[cfg(target_os = "fuchsia")]
1554pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
1555
1556#[cfg(target_os = "fuchsia")]
1557impl fidl::endpoints::ServiceProxy for ServiceProxy {
1558 type Service = ServiceMarker;
1559
1560 fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
1561 Self(opener)
1562 }
1563}
1564
1565#[cfg(target_os = "fuchsia")]
1566impl ServiceProxy {
1567 pub fn connect_to_device(&self) -> Result<DeviceProxy, fidl::Error> {
1568 let (proxy, server_end) = fidl::endpoints::create_proxy::<DeviceMarker>();
1569 self.connect_channel_to_device(server_end)?;
1570 Ok(proxy)
1571 }
1572
1573 pub fn connect_to_device_sync(&self) -> Result<DeviceSynchronousProxy, fidl::Error> {
1576 let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<DeviceMarker>();
1577 self.connect_channel_to_device(server_end)?;
1578 Ok(proxy)
1579 }
1580
1581 pub fn connect_channel_to_device(
1584 &self,
1585 server_end: fidl::endpoints::ServerEnd<DeviceMarker>,
1586 ) -> Result<(), fidl::Error> {
1587 self.0.open_member("device", server_end.into_channel())
1588 }
1589
1590 pub fn instance_name(&self) -> &str {
1591 self.0.instance_name()
1592 }
1593}
1594
1595mod internal {
1596 use super::*;
1597}