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_cobalt_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct AggregateAndUploadMarker;
16
17impl fidl::endpoints::ProtocolMarker for AggregateAndUploadMarker {
18 type Proxy = AggregateAndUploadProxy;
19 type RequestStream = AggregateAndUploadRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = AggregateAndUploadSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.cobalt.AggregateAndUpload";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for AggregateAndUploadMarker {}
26
27pub trait AggregateAndUploadProxyInterface: Send + Sync {
28 type AggregateAndUploadMetricEventsResponseFut: std::future::Future<Output = Result<(), fidl::Error>>
29 + Send;
30 fn r#aggregate_and_upload_metric_events(
31 &self,
32 ) -> Self::AggregateAndUploadMetricEventsResponseFut;
33}
34#[derive(Debug)]
35#[cfg(target_os = "fuchsia")]
36pub struct AggregateAndUploadSynchronousProxy {
37 client: fidl::client::sync::Client,
38}
39
40#[cfg(target_os = "fuchsia")]
41impl fidl::endpoints::SynchronousProxy for AggregateAndUploadSynchronousProxy {
42 type Proxy = AggregateAndUploadProxy;
43 type Protocol = AggregateAndUploadMarker;
44
45 fn from_channel(inner: fidl::Channel) -> Self {
46 Self::new(inner)
47 }
48
49 fn into_channel(self) -> fidl::Channel {
50 self.client.into_channel()
51 }
52
53 fn as_channel(&self) -> &fidl::Channel {
54 self.client.as_channel()
55 }
56}
57
58#[cfg(target_os = "fuchsia")]
59impl AggregateAndUploadSynchronousProxy {
60 pub fn new(channel: fidl::Channel) -> Self {
61 let protocol_name =
62 <AggregateAndUploadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
63 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
64 }
65
66 pub fn into_channel(self) -> fidl::Channel {
67 self.client.into_channel()
68 }
69
70 pub fn wait_for_event(
73 &self,
74 deadline: zx::MonotonicInstant,
75 ) -> Result<AggregateAndUploadEvent, fidl::Error> {
76 AggregateAndUploadEvent::decode(self.client.wait_for_event(deadline)?)
77 }
78
79 pub fn r#aggregate_and_upload_metric_events(
80 &self,
81 ___deadline: zx::MonotonicInstant,
82 ) -> Result<(), fidl::Error> {
83 let _response =
84 self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
85 (),
86 0x48db82fb20a16550,
87 fidl::encoding::DynamicFlags::empty(),
88 ___deadline,
89 )?;
90 Ok(_response)
91 }
92}
93
94#[cfg(target_os = "fuchsia")]
95impl From<AggregateAndUploadSynchronousProxy> for zx::Handle {
96 fn from(value: AggregateAndUploadSynchronousProxy) -> Self {
97 value.into_channel().into()
98 }
99}
100
101#[cfg(target_os = "fuchsia")]
102impl From<fidl::Channel> for AggregateAndUploadSynchronousProxy {
103 fn from(value: fidl::Channel) -> Self {
104 Self::new(value)
105 }
106}
107
108#[derive(Debug, Clone)]
109pub struct AggregateAndUploadProxy {
110 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
111}
112
113impl fidl::endpoints::Proxy for AggregateAndUploadProxy {
114 type Protocol = AggregateAndUploadMarker;
115
116 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
117 Self::new(inner)
118 }
119
120 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
121 self.client.into_channel().map_err(|client| Self { client })
122 }
123
124 fn as_channel(&self) -> &::fidl::AsyncChannel {
125 self.client.as_channel()
126 }
127}
128
129impl AggregateAndUploadProxy {
130 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
132 let protocol_name =
133 <AggregateAndUploadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
134 Self { client: fidl::client::Client::new(channel, protocol_name) }
135 }
136
137 pub fn take_event_stream(&self) -> AggregateAndUploadEventStream {
143 AggregateAndUploadEventStream { event_receiver: self.client.take_event_receiver() }
144 }
145
146 pub fn r#aggregate_and_upload_metric_events(
147 &self,
148 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
149 AggregateAndUploadProxyInterface::r#aggregate_and_upload_metric_events(self)
150 }
151}
152
153impl AggregateAndUploadProxyInterface for AggregateAndUploadProxy {
154 type AggregateAndUploadMetricEventsResponseFut =
155 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
156 fn r#aggregate_and_upload_metric_events(
157 &self,
158 ) -> Self::AggregateAndUploadMetricEventsResponseFut {
159 fn _decode(
160 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
161 ) -> Result<(), fidl::Error> {
162 let _response = fidl::client::decode_transaction_body::<
163 fidl::encoding::EmptyPayload,
164 fidl::encoding::DefaultFuchsiaResourceDialect,
165 0x48db82fb20a16550,
166 >(_buf?)?;
167 Ok(_response)
168 }
169 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
170 (),
171 0x48db82fb20a16550,
172 fidl::encoding::DynamicFlags::empty(),
173 _decode,
174 )
175 }
176}
177
178pub struct AggregateAndUploadEventStream {
179 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
180}
181
182impl std::marker::Unpin for AggregateAndUploadEventStream {}
183
184impl futures::stream::FusedStream for AggregateAndUploadEventStream {
185 fn is_terminated(&self) -> bool {
186 self.event_receiver.is_terminated()
187 }
188}
189
190impl futures::Stream for AggregateAndUploadEventStream {
191 type Item = Result<AggregateAndUploadEvent, fidl::Error>;
192
193 fn poll_next(
194 mut self: std::pin::Pin<&mut Self>,
195 cx: &mut std::task::Context<'_>,
196 ) -> std::task::Poll<Option<Self::Item>> {
197 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
198 &mut self.event_receiver,
199 cx
200 )?) {
201 Some(buf) => std::task::Poll::Ready(Some(AggregateAndUploadEvent::decode(buf))),
202 None => std::task::Poll::Ready(None),
203 }
204 }
205}
206
207#[derive(Debug)]
208pub enum AggregateAndUploadEvent {}
209
210impl AggregateAndUploadEvent {
211 fn decode(
213 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
214 ) -> Result<AggregateAndUploadEvent, fidl::Error> {
215 let (bytes, _handles) = buf.split_mut();
216 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
217 debug_assert_eq!(tx_header.tx_id, 0);
218 match tx_header.ordinal {
219 _ => Err(fidl::Error::UnknownOrdinal {
220 ordinal: tx_header.ordinal,
221 protocol_name:
222 <AggregateAndUploadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
223 }),
224 }
225 }
226}
227
228pub struct AggregateAndUploadRequestStream {
230 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
231 is_terminated: bool,
232}
233
234impl std::marker::Unpin for AggregateAndUploadRequestStream {}
235
236impl futures::stream::FusedStream for AggregateAndUploadRequestStream {
237 fn is_terminated(&self) -> bool {
238 self.is_terminated
239 }
240}
241
242impl fidl::endpoints::RequestStream for AggregateAndUploadRequestStream {
243 type Protocol = AggregateAndUploadMarker;
244 type ControlHandle = AggregateAndUploadControlHandle;
245
246 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
247 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
248 }
249
250 fn control_handle(&self) -> Self::ControlHandle {
251 AggregateAndUploadControlHandle { inner: self.inner.clone() }
252 }
253
254 fn into_inner(
255 self,
256 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
257 {
258 (self.inner, self.is_terminated)
259 }
260
261 fn from_inner(
262 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
263 is_terminated: bool,
264 ) -> Self {
265 Self { inner, is_terminated }
266 }
267}
268
269impl futures::Stream for AggregateAndUploadRequestStream {
270 type Item = Result<AggregateAndUploadRequest, fidl::Error>;
271
272 fn poll_next(
273 mut self: std::pin::Pin<&mut Self>,
274 cx: &mut std::task::Context<'_>,
275 ) -> std::task::Poll<Option<Self::Item>> {
276 let this = &mut *self;
277 if this.inner.check_shutdown(cx) {
278 this.is_terminated = true;
279 return std::task::Poll::Ready(None);
280 }
281 if this.is_terminated {
282 panic!("polled AggregateAndUploadRequestStream after completion");
283 }
284 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
285 |bytes, handles| {
286 match this.inner.channel().read_etc(cx, bytes, handles) {
287 std::task::Poll::Ready(Ok(())) => {}
288 std::task::Poll::Pending => return std::task::Poll::Pending,
289 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
290 this.is_terminated = true;
291 return std::task::Poll::Ready(None);
292 }
293 std::task::Poll::Ready(Err(e)) => {
294 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
295 e.into(),
296 ))))
297 }
298 }
299
300 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
302
303 std::task::Poll::Ready(Some(match header.ordinal {
304 0x48db82fb20a16550 => {
305 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
306 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
307 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
308 let control_handle = AggregateAndUploadControlHandle {
309 inner: this.inner.clone(),
310 };
311 Ok(AggregateAndUploadRequest::AggregateAndUploadMetricEvents {
312 responder: AggregateAndUploadAggregateAndUploadMetricEventsResponder {
313 control_handle: std::mem::ManuallyDrop::new(control_handle),
314 tx_id: header.tx_id,
315 },
316 })
317 }
318 _ => Err(fidl::Error::UnknownOrdinal {
319 ordinal: header.ordinal,
320 protocol_name: <AggregateAndUploadMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
321 }),
322 }))
323 },
324 )
325 }
326}
327
328#[derive(Debug)]
340pub enum AggregateAndUploadRequest {
341 AggregateAndUploadMetricEvents {
342 responder: AggregateAndUploadAggregateAndUploadMetricEventsResponder,
343 },
344}
345
346impl AggregateAndUploadRequest {
347 #[allow(irrefutable_let_patterns)]
348 pub fn into_aggregate_and_upload_metric_events(
349 self,
350 ) -> Option<(AggregateAndUploadAggregateAndUploadMetricEventsResponder)> {
351 if let AggregateAndUploadRequest::AggregateAndUploadMetricEvents { responder } = self {
352 Some((responder))
353 } else {
354 None
355 }
356 }
357
358 pub fn method_name(&self) -> &'static str {
360 match *self {
361 AggregateAndUploadRequest::AggregateAndUploadMetricEvents { .. } => {
362 "aggregate_and_upload_metric_events"
363 }
364 }
365 }
366}
367
368#[derive(Debug, Clone)]
369pub struct AggregateAndUploadControlHandle {
370 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
371}
372
373impl fidl::endpoints::ControlHandle for AggregateAndUploadControlHandle {
374 fn shutdown(&self) {
375 self.inner.shutdown()
376 }
377 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
378 self.inner.shutdown_with_epitaph(status)
379 }
380
381 fn is_closed(&self) -> bool {
382 self.inner.channel().is_closed()
383 }
384 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
385 self.inner.channel().on_closed()
386 }
387
388 #[cfg(target_os = "fuchsia")]
389 fn signal_peer(
390 &self,
391 clear_mask: zx::Signals,
392 set_mask: zx::Signals,
393 ) -> Result<(), zx_status::Status> {
394 use fidl::Peered;
395 self.inner.channel().signal_peer(clear_mask, set_mask)
396 }
397}
398
399impl AggregateAndUploadControlHandle {}
400
401#[must_use = "FIDL methods require a response to be sent"]
402#[derive(Debug)]
403pub struct AggregateAndUploadAggregateAndUploadMetricEventsResponder {
404 control_handle: std::mem::ManuallyDrop<AggregateAndUploadControlHandle>,
405 tx_id: u32,
406}
407
408impl std::ops::Drop for AggregateAndUploadAggregateAndUploadMetricEventsResponder {
412 fn drop(&mut self) {
413 self.control_handle.shutdown();
414 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
416 }
417}
418
419impl fidl::endpoints::Responder for AggregateAndUploadAggregateAndUploadMetricEventsResponder {
420 type ControlHandle = AggregateAndUploadControlHandle;
421
422 fn control_handle(&self) -> &AggregateAndUploadControlHandle {
423 &self.control_handle
424 }
425
426 fn drop_without_shutdown(mut self) {
427 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
429 std::mem::forget(self);
431 }
432}
433
434impl AggregateAndUploadAggregateAndUploadMetricEventsResponder {
435 pub fn send(self) -> Result<(), fidl::Error> {
439 let _result = self.send_raw();
440 if _result.is_err() {
441 self.control_handle.shutdown();
442 }
443 self.drop_without_shutdown();
444 _result
445 }
446
447 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
449 let _result = self.send_raw();
450 self.drop_without_shutdown();
451 _result
452 }
453
454 fn send_raw(&self) -> Result<(), fidl::Error> {
455 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
456 (),
457 self.tx_id,
458 0x48db82fb20a16550,
459 fidl::encoding::DynamicFlags::empty(),
460 )
461 }
462}
463
464#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
465pub struct ControllerMarker;
466
467impl fidl::endpoints::ProtocolMarker for ControllerMarker {
468 type Proxy = ControllerProxy;
469 type RequestStream = ControllerRequestStream;
470 #[cfg(target_os = "fuchsia")]
471 type SynchronousProxy = ControllerSynchronousProxy;
472
473 const DEBUG_NAME: &'static str = "fuchsia.cobalt.Controller";
474}
475impl fidl::endpoints::DiscoverableProtocolMarker for ControllerMarker {}
476
477pub trait ControllerProxyInterface: Send + Sync {
478 type RequestSendSoonResponseFut: std::future::Future<Output = Result<bool, fidl::Error>> + Send;
479 fn r#request_send_soon(&self) -> Self::RequestSendSoonResponseFut;
480 type GenerateAggregatedObservationsResponseFut: std::future::Future<Output = Result<Vec<u64>, fidl::Error>>
481 + Send;
482 fn r#generate_aggregated_observations(
483 &self,
484 day_index: u32,
485 report_specs: &[ReportSpec],
486 ) -> Self::GenerateAggregatedObservationsResponseFut;
487 type ListenForInitializedResponseFut: std::future::Future<Output = Result<(), fidl::Error>>
488 + Send;
489 fn r#listen_for_initialized(&self) -> Self::ListenForInitializedResponseFut;
490}
491#[derive(Debug)]
492#[cfg(target_os = "fuchsia")]
493pub struct ControllerSynchronousProxy {
494 client: fidl::client::sync::Client,
495}
496
497#[cfg(target_os = "fuchsia")]
498impl fidl::endpoints::SynchronousProxy for ControllerSynchronousProxy {
499 type Proxy = ControllerProxy;
500 type Protocol = ControllerMarker;
501
502 fn from_channel(inner: fidl::Channel) -> Self {
503 Self::new(inner)
504 }
505
506 fn into_channel(self) -> fidl::Channel {
507 self.client.into_channel()
508 }
509
510 fn as_channel(&self) -> &fidl::Channel {
511 self.client.as_channel()
512 }
513}
514
515#[cfg(target_os = "fuchsia")]
516impl ControllerSynchronousProxy {
517 pub fn new(channel: fidl::Channel) -> Self {
518 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
519 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
520 }
521
522 pub fn into_channel(self) -> fidl::Channel {
523 self.client.into_channel()
524 }
525
526 pub fn wait_for_event(
529 &self,
530 deadline: zx::MonotonicInstant,
531 ) -> Result<ControllerEvent, fidl::Error> {
532 ControllerEvent::decode(self.client.wait_for_event(deadline)?)
533 }
534
535 pub fn r#request_send_soon(
542 &self,
543 ___deadline: zx::MonotonicInstant,
544 ) -> Result<bool, fidl::Error> {
545 let _response = self
546 .client
547 .send_query::<fidl::encoding::EmptyPayload, ControllerRequestSendSoonResponse>(
548 (),
549 0x554e66bab8f72e3d,
550 fidl::encoding::DynamicFlags::empty(),
551 ___deadline,
552 )?;
553 Ok(_response.success)
554 }
555
556 pub fn r#generate_aggregated_observations(
573 &self,
574 mut day_index: u32,
575 mut report_specs: &[ReportSpec],
576 ___deadline: zx::MonotonicInstant,
577 ) -> Result<Vec<u64>, fidl::Error> {
578 let _response = self.client.send_query::<
579 ControllerGenerateAggregatedObservationsRequest,
580 ControllerGenerateAggregatedObservationsResponse,
581 >(
582 (day_index, report_specs,),
583 0x79e058c9497f1ab1,
584 fidl::encoding::DynamicFlags::empty(),
585 ___deadline,
586 )?;
587 Ok(_response.num_obs)
588 }
589
590 pub fn r#listen_for_initialized(
607 &self,
608 ___deadline: zx::MonotonicInstant,
609 ) -> Result<(), fidl::Error> {
610 let _response =
611 self.client.send_query::<fidl::encoding::EmptyPayload, fidl::encoding::EmptyPayload>(
612 (),
613 0x3454fbf05fcf10ef,
614 fidl::encoding::DynamicFlags::empty(),
615 ___deadline,
616 )?;
617 Ok(_response)
618 }
619}
620
621#[cfg(target_os = "fuchsia")]
622impl From<ControllerSynchronousProxy> for zx::Handle {
623 fn from(value: ControllerSynchronousProxy) -> Self {
624 value.into_channel().into()
625 }
626}
627
628#[cfg(target_os = "fuchsia")]
629impl From<fidl::Channel> for ControllerSynchronousProxy {
630 fn from(value: fidl::Channel) -> Self {
631 Self::new(value)
632 }
633}
634
635#[derive(Debug, Clone)]
636pub struct ControllerProxy {
637 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
638}
639
640impl fidl::endpoints::Proxy for ControllerProxy {
641 type Protocol = ControllerMarker;
642
643 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
644 Self::new(inner)
645 }
646
647 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
648 self.client.into_channel().map_err(|client| Self { client })
649 }
650
651 fn as_channel(&self) -> &::fidl::AsyncChannel {
652 self.client.as_channel()
653 }
654}
655
656impl ControllerProxy {
657 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
659 let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
660 Self { client: fidl::client::Client::new(channel, protocol_name) }
661 }
662
663 pub fn take_event_stream(&self) -> ControllerEventStream {
669 ControllerEventStream { event_receiver: self.client.take_event_receiver() }
670 }
671
672 pub fn r#request_send_soon(
679 &self,
680 ) -> fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect> {
681 ControllerProxyInterface::r#request_send_soon(self)
682 }
683
684 pub fn r#generate_aggregated_observations(
701 &self,
702 mut day_index: u32,
703 mut report_specs: &[ReportSpec],
704 ) -> fidl::client::QueryResponseFut<Vec<u64>, fidl::encoding::DefaultFuchsiaResourceDialect>
705 {
706 ControllerProxyInterface::r#generate_aggregated_observations(self, day_index, report_specs)
707 }
708
709 pub fn r#listen_for_initialized(
726 &self,
727 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
728 ControllerProxyInterface::r#listen_for_initialized(self)
729 }
730}
731
732impl ControllerProxyInterface for ControllerProxy {
733 type RequestSendSoonResponseFut =
734 fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect>;
735 fn r#request_send_soon(&self) -> Self::RequestSendSoonResponseFut {
736 fn _decode(
737 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
738 ) -> Result<bool, fidl::Error> {
739 let _response = fidl::client::decode_transaction_body::<
740 ControllerRequestSendSoonResponse,
741 fidl::encoding::DefaultFuchsiaResourceDialect,
742 0x554e66bab8f72e3d,
743 >(_buf?)?;
744 Ok(_response.success)
745 }
746 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, bool>(
747 (),
748 0x554e66bab8f72e3d,
749 fidl::encoding::DynamicFlags::empty(),
750 _decode,
751 )
752 }
753
754 type GenerateAggregatedObservationsResponseFut =
755 fidl::client::QueryResponseFut<Vec<u64>, fidl::encoding::DefaultFuchsiaResourceDialect>;
756 fn r#generate_aggregated_observations(
757 &self,
758 mut day_index: u32,
759 mut report_specs: &[ReportSpec],
760 ) -> Self::GenerateAggregatedObservationsResponseFut {
761 fn _decode(
762 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
763 ) -> Result<Vec<u64>, fidl::Error> {
764 let _response = fidl::client::decode_transaction_body::<
765 ControllerGenerateAggregatedObservationsResponse,
766 fidl::encoding::DefaultFuchsiaResourceDialect,
767 0x79e058c9497f1ab1,
768 >(_buf?)?;
769 Ok(_response.num_obs)
770 }
771 self.client
772 .send_query_and_decode::<ControllerGenerateAggregatedObservationsRequest, Vec<u64>>(
773 (day_index, report_specs),
774 0x79e058c9497f1ab1,
775 fidl::encoding::DynamicFlags::empty(),
776 _decode,
777 )
778 }
779
780 type ListenForInitializedResponseFut =
781 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
782 fn r#listen_for_initialized(&self) -> Self::ListenForInitializedResponseFut {
783 fn _decode(
784 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
785 ) -> Result<(), fidl::Error> {
786 let _response = fidl::client::decode_transaction_body::<
787 fidl::encoding::EmptyPayload,
788 fidl::encoding::DefaultFuchsiaResourceDialect,
789 0x3454fbf05fcf10ef,
790 >(_buf?)?;
791 Ok(_response)
792 }
793 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
794 (),
795 0x3454fbf05fcf10ef,
796 fidl::encoding::DynamicFlags::empty(),
797 _decode,
798 )
799 }
800}
801
802pub struct ControllerEventStream {
803 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
804}
805
806impl std::marker::Unpin for ControllerEventStream {}
807
808impl futures::stream::FusedStream for ControllerEventStream {
809 fn is_terminated(&self) -> bool {
810 self.event_receiver.is_terminated()
811 }
812}
813
814impl futures::Stream for ControllerEventStream {
815 type Item = Result<ControllerEvent, fidl::Error>;
816
817 fn poll_next(
818 mut self: std::pin::Pin<&mut Self>,
819 cx: &mut std::task::Context<'_>,
820 ) -> std::task::Poll<Option<Self::Item>> {
821 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
822 &mut self.event_receiver,
823 cx
824 )?) {
825 Some(buf) => std::task::Poll::Ready(Some(ControllerEvent::decode(buf))),
826 None => std::task::Poll::Ready(None),
827 }
828 }
829}
830
831#[derive(Debug)]
832pub enum ControllerEvent {}
833
834impl ControllerEvent {
835 fn decode(
837 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
838 ) -> Result<ControllerEvent, fidl::Error> {
839 let (bytes, _handles) = buf.split_mut();
840 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
841 debug_assert_eq!(tx_header.tx_id, 0);
842 match tx_header.ordinal {
843 _ => Err(fidl::Error::UnknownOrdinal {
844 ordinal: tx_header.ordinal,
845 protocol_name: <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
846 }),
847 }
848 }
849}
850
851pub struct ControllerRequestStream {
853 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
854 is_terminated: bool,
855}
856
857impl std::marker::Unpin for ControllerRequestStream {}
858
859impl futures::stream::FusedStream for ControllerRequestStream {
860 fn is_terminated(&self) -> bool {
861 self.is_terminated
862 }
863}
864
865impl fidl::endpoints::RequestStream for ControllerRequestStream {
866 type Protocol = ControllerMarker;
867 type ControlHandle = ControllerControlHandle;
868
869 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
870 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
871 }
872
873 fn control_handle(&self) -> Self::ControlHandle {
874 ControllerControlHandle { inner: self.inner.clone() }
875 }
876
877 fn into_inner(
878 self,
879 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
880 {
881 (self.inner, self.is_terminated)
882 }
883
884 fn from_inner(
885 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
886 is_terminated: bool,
887 ) -> Self {
888 Self { inner, is_terminated }
889 }
890}
891
892impl futures::Stream for ControllerRequestStream {
893 type Item = Result<ControllerRequest, fidl::Error>;
894
895 fn poll_next(
896 mut self: std::pin::Pin<&mut Self>,
897 cx: &mut std::task::Context<'_>,
898 ) -> std::task::Poll<Option<Self::Item>> {
899 let this = &mut *self;
900 if this.inner.check_shutdown(cx) {
901 this.is_terminated = true;
902 return std::task::Poll::Ready(None);
903 }
904 if this.is_terminated {
905 panic!("polled ControllerRequestStream after completion");
906 }
907 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
908 |bytes, handles| {
909 match this.inner.channel().read_etc(cx, bytes, handles) {
910 std::task::Poll::Ready(Ok(())) => {}
911 std::task::Poll::Pending => return std::task::Poll::Pending,
912 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
913 this.is_terminated = true;
914 return std::task::Poll::Ready(None);
915 }
916 std::task::Poll::Ready(Err(e)) => {
917 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
918 e.into(),
919 ))))
920 }
921 }
922
923 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
925
926 std::task::Poll::Ready(Some(match header.ordinal {
927 0x554e66bab8f72e3d => {
928 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
929 let mut req = fidl::new_empty!(
930 fidl::encoding::EmptyPayload,
931 fidl::encoding::DefaultFuchsiaResourceDialect
932 );
933 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
934 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
935 Ok(ControllerRequest::RequestSendSoon {
936 responder: ControllerRequestSendSoonResponder {
937 control_handle: std::mem::ManuallyDrop::new(control_handle),
938 tx_id: header.tx_id,
939 },
940 })
941 }
942 0x79e058c9497f1ab1 => {
943 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
944 let mut req = fidl::new_empty!(
945 ControllerGenerateAggregatedObservationsRequest,
946 fidl::encoding::DefaultFuchsiaResourceDialect
947 );
948 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerGenerateAggregatedObservationsRequest>(&header, _body_bytes, handles, &mut req)?;
949 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
950 Ok(ControllerRequest::GenerateAggregatedObservations {
951 day_index: req.day_index,
952 report_specs: req.report_specs,
953
954 responder: ControllerGenerateAggregatedObservationsResponder {
955 control_handle: std::mem::ManuallyDrop::new(control_handle),
956 tx_id: header.tx_id,
957 },
958 })
959 }
960 0x3454fbf05fcf10ef => {
961 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
962 let mut req = fidl::new_empty!(
963 fidl::encoding::EmptyPayload,
964 fidl::encoding::DefaultFuchsiaResourceDialect
965 );
966 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
967 let control_handle = ControllerControlHandle { inner: this.inner.clone() };
968 Ok(ControllerRequest::ListenForInitialized {
969 responder: ControllerListenForInitializedResponder {
970 control_handle: std::mem::ManuallyDrop::new(control_handle),
971 tx_id: header.tx_id,
972 },
973 })
974 }
975 _ => Err(fidl::Error::UnknownOrdinal {
976 ordinal: header.ordinal,
977 protocol_name:
978 <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
979 }),
980 }))
981 },
982 )
983 }
984}
985
986#[derive(Debug)]
989pub enum ControllerRequest {
990 RequestSendSoon { responder: ControllerRequestSendSoonResponder },
997 GenerateAggregatedObservations {
1014 day_index: u32,
1015 report_specs: Vec<ReportSpec>,
1016 responder: ControllerGenerateAggregatedObservationsResponder,
1017 },
1018 ListenForInitialized { responder: ControllerListenForInitializedResponder },
1035}
1036
1037impl ControllerRequest {
1038 #[allow(irrefutable_let_patterns)]
1039 pub fn into_request_send_soon(self) -> Option<(ControllerRequestSendSoonResponder)> {
1040 if let ControllerRequest::RequestSendSoon { responder } = self {
1041 Some((responder))
1042 } else {
1043 None
1044 }
1045 }
1046
1047 #[allow(irrefutable_let_patterns)]
1048 pub fn into_generate_aggregated_observations(
1049 self,
1050 ) -> Option<(u32, Vec<ReportSpec>, ControllerGenerateAggregatedObservationsResponder)> {
1051 if let ControllerRequest::GenerateAggregatedObservations {
1052 day_index,
1053 report_specs,
1054 responder,
1055 } = self
1056 {
1057 Some((day_index, report_specs, responder))
1058 } else {
1059 None
1060 }
1061 }
1062
1063 #[allow(irrefutable_let_patterns)]
1064 pub fn into_listen_for_initialized(self) -> Option<(ControllerListenForInitializedResponder)> {
1065 if let ControllerRequest::ListenForInitialized { responder } = self {
1066 Some((responder))
1067 } else {
1068 None
1069 }
1070 }
1071
1072 pub fn method_name(&self) -> &'static str {
1074 match *self {
1075 ControllerRequest::RequestSendSoon { .. } => "request_send_soon",
1076 ControllerRequest::GenerateAggregatedObservations { .. } => {
1077 "generate_aggregated_observations"
1078 }
1079 ControllerRequest::ListenForInitialized { .. } => "listen_for_initialized",
1080 }
1081 }
1082}
1083
1084#[derive(Debug, Clone)]
1085pub struct ControllerControlHandle {
1086 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1087}
1088
1089impl fidl::endpoints::ControlHandle for ControllerControlHandle {
1090 fn shutdown(&self) {
1091 self.inner.shutdown()
1092 }
1093 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1094 self.inner.shutdown_with_epitaph(status)
1095 }
1096
1097 fn is_closed(&self) -> bool {
1098 self.inner.channel().is_closed()
1099 }
1100 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1101 self.inner.channel().on_closed()
1102 }
1103
1104 #[cfg(target_os = "fuchsia")]
1105 fn signal_peer(
1106 &self,
1107 clear_mask: zx::Signals,
1108 set_mask: zx::Signals,
1109 ) -> Result<(), zx_status::Status> {
1110 use fidl::Peered;
1111 self.inner.channel().signal_peer(clear_mask, set_mask)
1112 }
1113}
1114
1115impl ControllerControlHandle {}
1116
1117#[must_use = "FIDL methods require a response to be sent"]
1118#[derive(Debug)]
1119pub struct ControllerRequestSendSoonResponder {
1120 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
1121 tx_id: u32,
1122}
1123
1124impl std::ops::Drop for ControllerRequestSendSoonResponder {
1128 fn drop(&mut self) {
1129 self.control_handle.shutdown();
1130 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1132 }
1133}
1134
1135impl fidl::endpoints::Responder for ControllerRequestSendSoonResponder {
1136 type ControlHandle = ControllerControlHandle;
1137
1138 fn control_handle(&self) -> &ControllerControlHandle {
1139 &self.control_handle
1140 }
1141
1142 fn drop_without_shutdown(mut self) {
1143 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1145 std::mem::forget(self);
1147 }
1148}
1149
1150impl ControllerRequestSendSoonResponder {
1151 pub fn send(self, mut success: bool) -> Result<(), fidl::Error> {
1155 let _result = self.send_raw(success);
1156 if _result.is_err() {
1157 self.control_handle.shutdown();
1158 }
1159 self.drop_without_shutdown();
1160 _result
1161 }
1162
1163 pub fn send_no_shutdown_on_err(self, mut success: bool) -> Result<(), fidl::Error> {
1165 let _result = self.send_raw(success);
1166 self.drop_without_shutdown();
1167 _result
1168 }
1169
1170 fn send_raw(&self, mut success: bool) -> Result<(), fidl::Error> {
1171 self.control_handle.inner.send::<ControllerRequestSendSoonResponse>(
1172 (success,),
1173 self.tx_id,
1174 0x554e66bab8f72e3d,
1175 fidl::encoding::DynamicFlags::empty(),
1176 )
1177 }
1178}
1179
1180#[must_use = "FIDL methods require a response to be sent"]
1181#[derive(Debug)]
1182pub struct ControllerGenerateAggregatedObservationsResponder {
1183 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
1184 tx_id: u32,
1185}
1186
1187impl std::ops::Drop for ControllerGenerateAggregatedObservationsResponder {
1191 fn drop(&mut self) {
1192 self.control_handle.shutdown();
1193 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1195 }
1196}
1197
1198impl fidl::endpoints::Responder for ControllerGenerateAggregatedObservationsResponder {
1199 type ControlHandle = ControllerControlHandle;
1200
1201 fn control_handle(&self) -> &ControllerControlHandle {
1202 &self.control_handle
1203 }
1204
1205 fn drop_without_shutdown(mut self) {
1206 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1208 std::mem::forget(self);
1210 }
1211}
1212
1213impl ControllerGenerateAggregatedObservationsResponder {
1214 pub fn send(self, mut num_obs: &[u64]) -> Result<(), fidl::Error> {
1218 let _result = self.send_raw(num_obs);
1219 if _result.is_err() {
1220 self.control_handle.shutdown();
1221 }
1222 self.drop_without_shutdown();
1223 _result
1224 }
1225
1226 pub fn send_no_shutdown_on_err(self, mut num_obs: &[u64]) -> Result<(), fidl::Error> {
1228 let _result = self.send_raw(num_obs);
1229 self.drop_without_shutdown();
1230 _result
1231 }
1232
1233 fn send_raw(&self, mut num_obs: &[u64]) -> Result<(), fidl::Error> {
1234 self.control_handle.inner.send::<ControllerGenerateAggregatedObservationsResponse>(
1235 (num_obs,),
1236 self.tx_id,
1237 0x79e058c9497f1ab1,
1238 fidl::encoding::DynamicFlags::empty(),
1239 )
1240 }
1241}
1242
1243#[must_use = "FIDL methods require a response to be sent"]
1244#[derive(Debug)]
1245pub struct ControllerListenForInitializedResponder {
1246 control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
1247 tx_id: u32,
1248}
1249
1250impl std::ops::Drop for ControllerListenForInitializedResponder {
1254 fn drop(&mut self) {
1255 self.control_handle.shutdown();
1256 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1258 }
1259}
1260
1261impl fidl::endpoints::Responder for ControllerListenForInitializedResponder {
1262 type ControlHandle = ControllerControlHandle;
1263
1264 fn control_handle(&self) -> &ControllerControlHandle {
1265 &self.control_handle
1266 }
1267
1268 fn drop_without_shutdown(mut self) {
1269 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1271 std::mem::forget(self);
1273 }
1274}
1275
1276impl ControllerListenForInitializedResponder {
1277 pub fn send(self) -> Result<(), fidl::Error> {
1281 let _result = self.send_raw();
1282 if _result.is_err() {
1283 self.control_handle.shutdown();
1284 }
1285 self.drop_without_shutdown();
1286 _result
1287 }
1288
1289 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
1291 let _result = self.send_raw();
1292 self.drop_without_shutdown();
1293 _result
1294 }
1295
1296 fn send_raw(&self) -> Result<(), fidl::Error> {
1297 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
1298 (),
1299 self.tx_id,
1300 0x3454fbf05fcf10ef,
1301 fidl::encoding::DynamicFlags::empty(),
1302 )
1303 }
1304}
1305
1306mod internal {
1307 use super::*;
1308}