fidl_fuchsia_power_metrics/
fidl_fuchsia_power_metrics.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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_power_metrics_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct RecorderMarker;
16
17impl fidl::endpoints::ProtocolMarker for RecorderMarker {
18    type Proxy = RecorderProxy;
19    type RequestStream = RecorderRequestStream;
20    #[cfg(target_os = "fuchsia")]
21    type SynchronousProxy = RecorderSynchronousProxy;
22
23    const DEBUG_NAME: &'static str = "fuchsia.power.metrics.Recorder";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for RecorderMarker {}
26pub type RecorderStartLoggingResult = Result<(), RecorderError>;
27pub type RecorderStartLoggingForeverResult = Result<(), RecorderError>;
28
29pub trait RecorderProxyInterface: Send + Sync {
30    type StartLoggingResponseFut: std::future::Future<Output = Result<RecorderStartLoggingResult, fidl::Error>>
31        + Send;
32    fn r#start_logging(
33        &self,
34        client_id: &str,
35        metrics: &[Metric],
36        duration_ms: u32,
37        output_samples_to_syslog: bool,
38        output_stats_to_syslog: bool,
39    ) -> Self::StartLoggingResponseFut;
40    type StartLoggingForeverResponseFut: std::future::Future<Output = Result<RecorderStartLoggingForeverResult, fidl::Error>>
41        + Send;
42    fn r#start_logging_forever(
43        &self,
44        client_id: &str,
45        metrics: &[Metric],
46        output_samples_to_syslog: bool,
47        output_stats_to_syslog: bool,
48    ) -> Self::StartLoggingForeverResponseFut;
49    type StopLoggingResponseFut: std::future::Future<Output = Result<bool, fidl::Error>> + Send;
50    fn r#stop_logging(&self, client_id: &str) -> Self::StopLoggingResponseFut;
51}
52#[derive(Debug)]
53#[cfg(target_os = "fuchsia")]
54pub struct RecorderSynchronousProxy {
55    client: fidl::client::sync::Client,
56}
57
58#[cfg(target_os = "fuchsia")]
59impl fidl::endpoints::SynchronousProxy for RecorderSynchronousProxy {
60    type Proxy = RecorderProxy;
61    type Protocol = RecorderMarker;
62
63    fn from_channel(inner: fidl::Channel) -> Self {
64        Self::new(inner)
65    }
66
67    fn into_channel(self) -> fidl::Channel {
68        self.client.into_channel()
69    }
70
71    fn as_channel(&self) -> &fidl::Channel {
72        self.client.as_channel()
73    }
74}
75
76#[cfg(target_os = "fuchsia")]
77impl RecorderSynchronousProxy {
78    pub fn new(channel: fidl::Channel) -> Self {
79        let protocol_name = <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
80        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
81    }
82
83    pub fn into_channel(self) -> fidl::Channel {
84        self.client.into_channel()
85    }
86
87    /// Waits until an event arrives and returns it. It is safe for other
88    /// threads to make concurrent requests while waiting for an event.
89    pub fn wait_for_event(
90        &self,
91        deadline: zx::MonotonicInstant,
92    ) -> Result<RecorderEvent, fidl::Error> {
93        RecorderEvent::decode(self.client.wait_for_event(deadline)?)
94    }
95
96    /// Initiates logging of specified metrics for the provided duration.
97    /// Supports concurrent logging of different metrics. Logging may be
98    /// terminated early with a call to `StopLogging`.
99    ///
100    /// This call will fail if logging of the specified metric is already
101    /// active. For this reason, a client may wish to precede a `StartLogging`
102    /// call with a `StopLogging` call, after which the only reason for The
103    /// logger to be active would be a conflict with another client.
104    ///
105    /// + request `client_id` String format Id of the client. Client may choose
106    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
107    /// + request `metrics` Type of the metrics to be polled and logged.
108    /// + request `duration_ms` Duration of logging in milliseconds. After this
109    ///     duration, polling and logging will cease.
110    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
111    ///     syslog.
112    /// + request `output_stats_to_syslog` Toggle for outputting any available
113    ///     statistics to syslog.
114    /// + error a [fuchsia.metrics.test/MeticsLoggerError] value indicating why
115    ///     the request failed.
116    pub fn r#start_logging(
117        &self,
118        mut client_id: &str,
119        mut metrics: &[Metric],
120        mut duration_ms: u32,
121        mut output_samples_to_syslog: bool,
122        mut output_stats_to_syslog: bool,
123        ___deadline: zx::MonotonicInstant,
124    ) -> Result<RecorderStartLoggingResult, fidl::Error> {
125        let _response = self.client.send_query::<
126            RecorderStartLoggingRequest,
127            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
128        >(
129            (client_id, metrics, duration_ms, output_samples_to_syslog, output_stats_to_syslog,),
130            0x40e4e1a9c6c42bd2,
131            fidl::encoding::DynamicFlags::empty(),
132            ___deadline,
133        )?;
134        Ok(_response.map(|x| x))
135    }
136
137    /// Initiates logging of specified metrics. Supports concurrent logging of
138    /// different metrics. Logging will only end upon a `StopLogging` call.
139    ///
140    /// `StartLogging` should be preferred for usage in automated tests to
141    /// ensure that logging terminates even if the test crashes.
142    ///
143    /// + request `client_id` String format Id of the client. Client may choose
144    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
145    /// + request `metrics` Type of the metrics to be polled and logged.
146    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
147    ///     syslog.
148    /// + request `output_stats_to_syslog` Toggle for outputting any available
149    ///     statistics to syslog.
150    /// + error a [fuchsia.metrics.test/RecorderError] value indicating why
151    ///     the request failed.
152    pub fn r#start_logging_forever(
153        &self,
154        mut client_id: &str,
155        mut metrics: &[Metric],
156        mut output_samples_to_syslog: bool,
157        mut output_stats_to_syslog: bool,
158        ___deadline: zx::MonotonicInstant,
159    ) -> Result<RecorderStartLoggingForeverResult, fidl::Error> {
160        let _response = self.client.send_query::<
161            RecorderStartLoggingForeverRequest,
162            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
163        >(
164            (client_id, metrics, output_samples_to_syslog, output_stats_to_syslog,),
165            0x37b2675fdc61ff94,
166            fidl::encoding::DynamicFlags::empty(),
167            ___deadline,
168        )?;
169        Ok(_response.map(|x| x))
170    }
171
172    /// Terminates all active logging tasks with the given client_id. It is
173    /// valid to call this method when logging is inactive.
174    ///
175    /// + request `client_id` String format Id of the client.
176    /// - response `status` A bool value indicating if existing logging was
177    ///     stopped (true) or there'sno existing logging for the client.
178    pub fn r#stop_logging(
179        &self,
180        mut client_id: &str,
181        ___deadline: zx::MonotonicInstant,
182    ) -> Result<bool, fidl::Error> {
183        let _response =
184            self.client.send_query::<RecorderStopLoggingRequest, RecorderStopLoggingResponse>(
185                (client_id,),
186                0x615d67a4d94d4732,
187                fidl::encoding::DynamicFlags::empty(),
188                ___deadline,
189            )?;
190        Ok(_response.stopped)
191    }
192}
193
194#[cfg(target_os = "fuchsia")]
195impl From<RecorderSynchronousProxy> for zx::Handle {
196    fn from(value: RecorderSynchronousProxy) -> Self {
197        value.into_channel().into()
198    }
199}
200
201#[cfg(target_os = "fuchsia")]
202impl From<fidl::Channel> for RecorderSynchronousProxy {
203    fn from(value: fidl::Channel) -> Self {
204        Self::new(value)
205    }
206}
207
208#[derive(Debug, Clone)]
209pub struct RecorderProxy {
210    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
211}
212
213impl fidl::endpoints::Proxy for RecorderProxy {
214    type Protocol = RecorderMarker;
215
216    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
217        Self::new(inner)
218    }
219
220    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
221        self.client.into_channel().map_err(|client| Self { client })
222    }
223
224    fn as_channel(&self) -> &::fidl::AsyncChannel {
225        self.client.as_channel()
226    }
227}
228
229impl RecorderProxy {
230    /// Create a new Proxy for fuchsia.power.metrics/Recorder.
231    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
232        let protocol_name = <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
233        Self { client: fidl::client::Client::new(channel, protocol_name) }
234    }
235
236    /// Get a Stream of events from the remote end of the protocol.
237    ///
238    /// # Panics
239    ///
240    /// Panics if the event stream was already taken.
241    pub fn take_event_stream(&self) -> RecorderEventStream {
242        RecorderEventStream { event_receiver: self.client.take_event_receiver() }
243    }
244
245    /// Initiates logging of specified metrics for the provided duration.
246    /// Supports concurrent logging of different metrics. Logging may be
247    /// terminated early with a call to `StopLogging`.
248    ///
249    /// This call will fail if logging of the specified metric is already
250    /// active. For this reason, a client may wish to precede a `StartLogging`
251    /// call with a `StopLogging` call, after which the only reason for The
252    /// logger to be active would be a conflict with another client.
253    ///
254    /// + request `client_id` String format Id of the client. Client may choose
255    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
256    /// + request `metrics` Type of the metrics to be polled and logged.
257    /// + request `duration_ms` Duration of logging in milliseconds. After this
258    ///     duration, polling and logging will cease.
259    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
260    ///     syslog.
261    /// + request `output_stats_to_syslog` Toggle for outputting any available
262    ///     statistics to syslog.
263    /// + error a [fuchsia.metrics.test/MeticsLoggerError] value indicating why
264    ///     the request failed.
265    pub fn r#start_logging(
266        &self,
267        mut client_id: &str,
268        mut metrics: &[Metric],
269        mut duration_ms: u32,
270        mut output_samples_to_syslog: bool,
271        mut output_stats_to_syslog: bool,
272    ) -> fidl::client::QueryResponseFut<
273        RecorderStartLoggingResult,
274        fidl::encoding::DefaultFuchsiaResourceDialect,
275    > {
276        RecorderProxyInterface::r#start_logging(
277            self,
278            client_id,
279            metrics,
280            duration_ms,
281            output_samples_to_syslog,
282            output_stats_to_syslog,
283        )
284    }
285
286    /// Initiates logging of specified metrics. Supports concurrent logging of
287    /// different metrics. Logging will only end upon a `StopLogging` call.
288    ///
289    /// `StartLogging` should be preferred for usage in automated tests to
290    /// ensure that logging terminates even if the test crashes.
291    ///
292    /// + request `client_id` String format Id of the client. Client may choose
293    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
294    /// + request `metrics` Type of the metrics to be polled and logged.
295    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
296    ///     syslog.
297    /// + request `output_stats_to_syslog` Toggle for outputting any available
298    ///     statistics to syslog.
299    /// + error a [fuchsia.metrics.test/RecorderError] value indicating why
300    ///     the request failed.
301    pub fn r#start_logging_forever(
302        &self,
303        mut client_id: &str,
304        mut metrics: &[Metric],
305        mut output_samples_to_syslog: bool,
306        mut output_stats_to_syslog: bool,
307    ) -> fidl::client::QueryResponseFut<
308        RecorderStartLoggingForeverResult,
309        fidl::encoding::DefaultFuchsiaResourceDialect,
310    > {
311        RecorderProxyInterface::r#start_logging_forever(
312            self,
313            client_id,
314            metrics,
315            output_samples_to_syslog,
316            output_stats_to_syslog,
317        )
318    }
319
320    /// Terminates all active logging tasks with the given client_id. It is
321    /// valid to call this method when logging is inactive.
322    ///
323    /// + request `client_id` String format Id of the client.
324    /// - response `status` A bool value indicating if existing logging was
325    ///     stopped (true) or there'sno existing logging for the client.
326    pub fn r#stop_logging(
327        &self,
328        mut client_id: &str,
329    ) -> fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect> {
330        RecorderProxyInterface::r#stop_logging(self, client_id)
331    }
332}
333
334impl RecorderProxyInterface for RecorderProxy {
335    type StartLoggingResponseFut = fidl::client::QueryResponseFut<
336        RecorderStartLoggingResult,
337        fidl::encoding::DefaultFuchsiaResourceDialect,
338    >;
339    fn r#start_logging(
340        &self,
341        mut client_id: &str,
342        mut metrics: &[Metric],
343        mut duration_ms: u32,
344        mut output_samples_to_syslog: bool,
345        mut output_stats_to_syslog: bool,
346    ) -> Self::StartLoggingResponseFut {
347        fn _decode(
348            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
349        ) -> Result<RecorderStartLoggingResult, fidl::Error> {
350            let _response = fidl::client::decode_transaction_body::<
351                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
352                fidl::encoding::DefaultFuchsiaResourceDialect,
353                0x40e4e1a9c6c42bd2,
354            >(_buf?)?;
355            Ok(_response.map(|x| x))
356        }
357        self.client
358            .send_query_and_decode::<RecorderStartLoggingRequest, RecorderStartLoggingResult>(
359                (client_id, metrics, duration_ms, output_samples_to_syslog, output_stats_to_syslog),
360                0x40e4e1a9c6c42bd2,
361                fidl::encoding::DynamicFlags::empty(),
362                _decode,
363            )
364    }
365
366    type StartLoggingForeverResponseFut = fidl::client::QueryResponseFut<
367        RecorderStartLoggingForeverResult,
368        fidl::encoding::DefaultFuchsiaResourceDialect,
369    >;
370    fn r#start_logging_forever(
371        &self,
372        mut client_id: &str,
373        mut metrics: &[Metric],
374        mut output_samples_to_syslog: bool,
375        mut output_stats_to_syslog: bool,
376    ) -> Self::StartLoggingForeverResponseFut {
377        fn _decode(
378            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
379        ) -> Result<RecorderStartLoggingForeverResult, fidl::Error> {
380            let _response = fidl::client::decode_transaction_body::<
381                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
382                fidl::encoding::DefaultFuchsiaResourceDialect,
383                0x37b2675fdc61ff94,
384            >(_buf?)?;
385            Ok(_response.map(|x| x))
386        }
387        self.client.send_query_and_decode::<
388            RecorderStartLoggingForeverRequest,
389            RecorderStartLoggingForeverResult,
390        >(
391            (client_id, metrics, output_samples_to_syslog, output_stats_to_syslog,),
392            0x37b2675fdc61ff94,
393            fidl::encoding::DynamicFlags::empty(),
394            _decode,
395        )
396    }
397
398    type StopLoggingResponseFut =
399        fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect>;
400    fn r#stop_logging(&self, mut client_id: &str) -> Self::StopLoggingResponseFut {
401        fn _decode(
402            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
403        ) -> Result<bool, fidl::Error> {
404            let _response = fidl::client::decode_transaction_body::<
405                RecorderStopLoggingResponse,
406                fidl::encoding::DefaultFuchsiaResourceDialect,
407                0x615d67a4d94d4732,
408            >(_buf?)?;
409            Ok(_response.stopped)
410        }
411        self.client.send_query_and_decode::<RecorderStopLoggingRequest, bool>(
412            (client_id,),
413            0x615d67a4d94d4732,
414            fidl::encoding::DynamicFlags::empty(),
415            _decode,
416        )
417    }
418}
419
420pub struct RecorderEventStream {
421    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
422}
423
424impl std::marker::Unpin for RecorderEventStream {}
425
426impl futures::stream::FusedStream for RecorderEventStream {
427    fn is_terminated(&self) -> bool {
428        self.event_receiver.is_terminated()
429    }
430}
431
432impl futures::Stream for RecorderEventStream {
433    type Item = Result<RecorderEvent, fidl::Error>;
434
435    fn poll_next(
436        mut self: std::pin::Pin<&mut Self>,
437        cx: &mut std::task::Context<'_>,
438    ) -> std::task::Poll<Option<Self::Item>> {
439        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
440            &mut self.event_receiver,
441            cx
442        )?) {
443            Some(buf) => std::task::Poll::Ready(Some(RecorderEvent::decode(buf))),
444            None => std::task::Poll::Ready(None),
445        }
446    }
447}
448
449#[derive(Debug)]
450pub enum RecorderEvent {}
451
452impl RecorderEvent {
453    /// Decodes a message buffer as a [`RecorderEvent`].
454    fn decode(
455        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
456    ) -> Result<RecorderEvent, fidl::Error> {
457        let (bytes, _handles) = buf.split_mut();
458        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
459        debug_assert_eq!(tx_header.tx_id, 0);
460        match tx_header.ordinal {
461            _ => Err(fidl::Error::UnknownOrdinal {
462                ordinal: tx_header.ordinal,
463                protocol_name: <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
464            }),
465        }
466    }
467}
468
469/// A Stream of incoming requests for fuchsia.power.metrics/Recorder.
470pub struct RecorderRequestStream {
471    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
472    is_terminated: bool,
473}
474
475impl std::marker::Unpin for RecorderRequestStream {}
476
477impl futures::stream::FusedStream for RecorderRequestStream {
478    fn is_terminated(&self) -> bool {
479        self.is_terminated
480    }
481}
482
483impl fidl::endpoints::RequestStream for RecorderRequestStream {
484    type Protocol = RecorderMarker;
485    type ControlHandle = RecorderControlHandle;
486
487    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
488        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
489    }
490
491    fn control_handle(&self) -> Self::ControlHandle {
492        RecorderControlHandle { inner: self.inner.clone() }
493    }
494
495    fn into_inner(
496        self,
497    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
498    {
499        (self.inner, self.is_terminated)
500    }
501
502    fn from_inner(
503        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
504        is_terminated: bool,
505    ) -> Self {
506        Self { inner, is_terminated }
507    }
508}
509
510impl futures::Stream for RecorderRequestStream {
511    type Item = Result<RecorderRequest, fidl::Error>;
512
513    fn poll_next(
514        mut self: std::pin::Pin<&mut Self>,
515        cx: &mut std::task::Context<'_>,
516    ) -> std::task::Poll<Option<Self::Item>> {
517        let this = &mut *self;
518        if this.inner.check_shutdown(cx) {
519            this.is_terminated = true;
520            return std::task::Poll::Ready(None);
521        }
522        if this.is_terminated {
523            panic!("polled RecorderRequestStream after completion");
524        }
525        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
526            |bytes, handles| {
527                match this.inner.channel().read_etc(cx, bytes, handles) {
528                    std::task::Poll::Ready(Ok(())) => {}
529                    std::task::Poll::Pending => return std::task::Poll::Pending,
530                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
531                        this.is_terminated = true;
532                        return std::task::Poll::Ready(None);
533                    }
534                    std::task::Poll::Ready(Err(e)) => {
535                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
536                            e.into(),
537                        ))))
538                    }
539                }
540
541                // A message has been received from the channel
542                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
543
544                std::task::Poll::Ready(Some(match header.ordinal {
545                    0x40e4e1a9c6c42bd2 => {
546                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
547                        let mut req = fidl::new_empty!(
548                            RecorderStartLoggingRequest,
549                            fidl::encoding::DefaultFuchsiaResourceDialect
550                        );
551                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStartLoggingRequest>(&header, _body_bytes, handles, &mut req)?;
552                        let control_handle = RecorderControlHandle { inner: this.inner.clone() };
553                        Ok(RecorderRequest::StartLogging {
554                            client_id: req.client_id,
555                            metrics: req.metrics,
556                            duration_ms: req.duration_ms,
557                            output_samples_to_syslog: req.output_samples_to_syslog,
558                            output_stats_to_syslog: req.output_stats_to_syslog,
559
560                            responder: RecorderStartLoggingResponder {
561                                control_handle: std::mem::ManuallyDrop::new(control_handle),
562                                tx_id: header.tx_id,
563                            },
564                        })
565                    }
566                    0x37b2675fdc61ff94 => {
567                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
568                        let mut req = fidl::new_empty!(
569                            RecorderStartLoggingForeverRequest,
570                            fidl::encoding::DefaultFuchsiaResourceDialect
571                        );
572                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStartLoggingForeverRequest>(&header, _body_bytes, handles, &mut req)?;
573                        let control_handle = RecorderControlHandle { inner: this.inner.clone() };
574                        Ok(RecorderRequest::StartLoggingForever {
575                            client_id: req.client_id,
576                            metrics: req.metrics,
577                            output_samples_to_syslog: req.output_samples_to_syslog,
578                            output_stats_to_syslog: req.output_stats_to_syslog,
579
580                            responder: RecorderStartLoggingForeverResponder {
581                                control_handle: std::mem::ManuallyDrop::new(control_handle),
582                                tx_id: header.tx_id,
583                            },
584                        })
585                    }
586                    0x615d67a4d94d4732 => {
587                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
588                        let mut req = fidl::new_empty!(
589                            RecorderStopLoggingRequest,
590                            fidl::encoding::DefaultFuchsiaResourceDialect
591                        );
592                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStopLoggingRequest>(&header, _body_bytes, handles, &mut req)?;
593                        let control_handle = RecorderControlHandle { inner: this.inner.clone() };
594                        Ok(RecorderRequest::StopLogging {
595                            client_id: req.client_id,
596
597                            responder: RecorderStopLoggingResponder {
598                                control_handle: std::mem::ManuallyDrop::new(control_handle),
599                                tx_id: header.tx_id,
600                            },
601                        })
602                    }
603                    _ => Err(fidl::Error::UnknownOrdinal {
604                        ordinal: header.ordinal,
605                        protocol_name:
606                            <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
607                    }),
608                }))
609            },
610        )
611    }
612}
613
614/// A protocol for managing on-demand metrics logging.
615#[derive(Debug)]
616pub enum RecorderRequest {
617    /// Initiates logging of specified metrics for the provided duration.
618    /// Supports concurrent logging of different metrics. Logging may be
619    /// terminated early with a call to `StopLogging`.
620    ///
621    /// This call will fail if logging of the specified metric is already
622    /// active. For this reason, a client may wish to precede a `StartLogging`
623    /// call with a `StopLogging` call, after which the only reason for The
624    /// logger to be active would be a conflict with another client.
625    ///
626    /// + request `client_id` String format Id of the client. Client may choose
627    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
628    /// + request `metrics` Type of the metrics to be polled and logged.
629    /// + request `duration_ms` Duration of logging in milliseconds. After this
630    ///     duration, polling and logging will cease.
631    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
632    ///     syslog.
633    /// + request `output_stats_to_syslog` Toggle for outputting any available
634    ///     statistics to syslog.
635    /// + error a [fuchsia.metrics.test/MeticsLoggerError] value indicating why
636    ///     the request failed.
637    StartLogging {
638        client_id: String,
639        metrics: Vec<Metric>,
640        duration_ms: u32,
641        output_samples_to_syslog: bool,
642        output_stats_to_syslog: bool,
643        responder: RecorderStartLoggingResponder,
644    },
645    /// Initiates logging of specified metrics. Supports concurrent logging of
646    /// different metrics. Logging will only end upon a `StopLogging` call.
647    ///
648    /// `StartLogging` should be preferred for usage in automated tests to
649    /// ensure that logging terminates even if the test crashes.
650    ///
651    /// + request `client_id` String format Id of the client. Client may choose
652    ///     any Id with a maximum byte size of 8 (e.g., "ffxTest").
653    /// + request `metrics` Type of the metrics to be polled and logged.
654    /// + request `output_samples_to_syslog` Toggle for outputting raw data to
655    ///     syslog.
656    /// + request `output_stats_to_syslog` Toggle for outputting any available
657    ///     statistics to syslog.
658    /// + error a [fuchsia.metrics.test/RecorderError] value indicating why
659    ///     the request failed.
660    StartLoggingForever {
661        client_id: String,
662        metrics: Vec<Metric>,
663        output_samples_to_syslog: bool,
664        output_stats_to_syslog: bool,
665        responder: RecorderStartLoggingForeverResponder,
666    },
667    /// Terminates all active logging tasks with the given client_id. It is
668    /// valid to call this method when logging is inactive.
669    ///
670    /// + request `client_id` String format Id of the client.
671    /// - response `status` A bool value indicating if existing logging was
672    ///     stopped (true) or there'sno existing logging for the client.
673    StopLogging { client_id: String, responder: RecorderStopLoggingResponder },
674}
675
676impl RecorderRequest {
677    #[allow(irrefutable_let_patterns)]
678    pub fn into_start_logging(
679        self,
680    ) -> Option<(String, Vec<Metric>, u32, bool, bool, RecorderStartLoggingResponder)> {
681        if let RecorderRequest::StartLogging {
682            client_id,
683            metrics,
684            duration_ms,
685            output_samples_to_syslog,
686            output_stats_to_syslog,
687            responder,
688        } = self
689        {
690            Some((
691                client_id,
692                metrics,
693                duration_ms,
694                output_samples_to_syslog,
695                output_stats_to_syslog,
696                responder,
697            ))
698        } else {
699            None
700        }
701    }
702
703    #[allow(irrefutable_let_patterns)]
704    pub fn into_start_logging_forever(
705        self,
706    ) -> Option<(String, Vec<Metric>, bool, bool, RecorderStartLoggingForeverResponder)> {
707        if let RecorderRequest::StartLoggingForever {
708            client_id,
709            metrics,
710            output_samples_to_syslog,
711            output_stats_to_syslog,
712            responder,
713        } = self
714        {
715            Some((client_id, metrics, output_samples_to_syslog, output_stats_to_syslog, responder))
716        } else {
717            None
718        }
719    }
720
721    #[allow(irrefutable_let_patterns)]
722    pub fn into_stop_logging(self) -> Option<(String, RecorderStopLoggingResponder)> {
723        if let RecorderRequest::StopLogging { client_id, responder } = self {
724            Some((client_id, responder))
725        } else {
726            None
727        }
728    }
729
730    /// Name of the method defined in FIDL
731    pub fn method_name(&self) -> &'static str {
732        match *self {
733            RecorderRequest::StartLogging { .. } => "start_logging",
734            RecorderRequest::StartLoggingForever { .. } => "start_logging_forever",
735            RecorderRequest::StopLogging { .. } => "stop_logging",
736        }
737    }
738}
739
740#[derive(Debug, Clone)]
741pub struct RecorderControlHandle {
742    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
743}
744
745impl fidl::endpoints::ControlHandle for RecorderControlHandle {
746    fn shutdown(&self) {
747        self.inner.shutdown()
748    }
749    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
750        self.inner.shutdown_with_epitaph(status)
751    }
752
753    fn is_closed(&self) -> bool {
754        self.inner.channel().is_closed()
755    }
756    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
757        self.inner.channel().on_closed()
758    }
759
760    #[cfg(target_os = "fuchsia")]
761    fn signal_peer(
762        &self,
763        clear_mask: zx::Signals,
764        set_mask: zx::Signals,
765    ) -> Result<(), zx_status::Status> {
766        use fidl::Peered;
767        self.inner.channel().signal_peer(clear_mask, set_mask)
768    }
769}
770
771impl RecorderControlHandle {}
772
773#[must_use = "FIDL methods require a response to be sent"]
774#[derive(Debug)]
775pub struct RecorderStartLoggingResponder {
776    control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
777    tx_id: u32,
778}
779
780/// Set the the channel to be shutdown (see [`RecorderControlHandle::shutdown`])
781/// if the responder is dropped without sending a response, so that the client
782/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
783impl std::ops::Drop for RecorderStartLoggingResponder {
784    fn drop(&mut self) {
785        self.control_handle.shutdown();
786        // Safety: drops once, never accessed again
787        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
788    }
789}
790
791impl fidl::endpoints::Responder for RecorderStartLoggingResponder {
792    type ControlHandle = RecorderControlHandle;
793
794    fn control_handle(&self) -> &RecorderControlHandle {
795        &self.control_handle
796    }
797
798    fn drop_without_shutdown(mut self) {
799        // Safety: drops once, never accessed again due to mem::forget
800        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
801        // Prevent Drop from running (which would shut down the channel)
802        std::mem::forget(self);
803    }
804}
805
806impl RecorderStartLoggingResponder {
807    /// Sends a response to the FIDL transaction.
808    ///
809    /// Sets the channel to shutdown if an error occurs.
810    pub fn send(self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
811        let _result = self.send_raw(result);
812        if _result.is_err() {
813            self.control_handle.shutdown();
814        }
815        self.drop_without_shutdown();
816        _result
817    }
818
819    /// Similar to "send" but does not shutdown the channel if an error occurs.
820    pub fn send_no_shutdown_on_err(
821        self,
822        mut result: Result<(), RecorderError>,
823    ) -> Result<(), fidl::Error> {
824        let _result = self.send_raw(result);
825        self.drop_without_shutdown();
826        _result
827    }
828
829    fn send_raw(&self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
830        self.control_handle.inner.send::<fidl::encoding::ResultType<
831            fidl::encoding::EmptyStruct,
832            RecorderError,
833        >>(
834            result,
835            self.tx_id,
836            0x40e4e1a9c6c42bd2,
837            fidl::encoding::DynamicFlags::empty(),
838        )
839    }
840}
841
842#[must_use = "FIDL methods require a response to be sent"]
843#[derive(Debug)]
844pub struct RecorderStartLoggingForeverResponder {
845    control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
846    tx_id: u32,
847}
848
849/// Set the the channel to be shutdown (see [`RecorderControlHandle::shutdown`])
850/// if the responder is dropped without sending a response, so that the client
851/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
852impl std::ops::Drop for RecorderStartLoggingForeverResponder {
853    fn drop(&mut self) {
854        self.control_handle.shutdown();
855        // Safety: drops once, never accessed again
856        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
857    }
858}
859
860impl fidl::endpoints::Responder for RecorderStartLoggingForeverResponder {
861    type ControlHandle = RecorderControlHandle;
862
863    fn control_handle(&self) -> &RecorderControlHandle {
864        &self.control_handle
865    }
866
867    fn drop_without_shutdown(mut self) {
868        // Safety: drops once, never accessed again due to mem::forget
869        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
870        // Prevent Drop from running (which would shut down the channel)
871        std::mem::forget(self);
872    }
873}
874
875impl RecorderStartLoggingForeverResponder {
876    /// Sends a response to the FIDL transaction.
877    ///
878    /// Sets the channel to shutdown if an error occurs.
879    pub fn send(self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
880        let _result = self.send_raw(result);
881        if _result.is_err() {
882            self.control_handle.shutdown();
883        }
884        self.drop_without_shutdown();
885        _result
886    }
887
888    /// Similar to "send" but does not shutdown the channel if an error occurs.
889    pub fn send_no_shutdown_on_err(
890        self,
891        mut result: Result<(), RecorderError>,
892    ) -> Result<(), fidl::Error> {
893        let _result = self.send_raw(result);
894        self.drop_without_shutdown();
895        _result
896    }
897
898    fn send_raw(&self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
899        self.control_handle.inner.send::<fidl::encoding::ResultType<
900            fidl::encoding::EmptyStruct,
901            RecorderError,
902        >>(
903            result,
904            self.tx_id,
905            0x37b2675fdc61ff94,
906            fidl::encoding::DynamicFlags::empty(),
907        )
908    }
909}
910
911#[must_use = "FIDL methods require a response to be sent"]
912#[derive(Debug)]
913pub struct RecorderStopLoggingResponder {
914    control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
915    tx_id: u32,
916}
917
918/// Set the the channel to be shutdown (see [`RecorderControlHandle::shutdown`])
919/// if the responder is dropped without sending a response, so that the client
920/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
921impl std::ops::Drop for RecorderStopLoggingResponder {
922    fn drop(&mut self) {
923        self.control_handle.shutdown();
924        // Safety: drops once, never accessed again
925        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
926    }
927}
928
929impl fidl::endpoints::Responder for RecorderStopLoggingResponder {
930    type ControlHandle = RecorderControlHandle;
931
932    fn control_handle(&self) -> &RecorderControlHandle {
933        &self.control_handle
934    }
935
936    fn drop_without_shutdown(mut self) {
937        // Safety: drops once, never accessed again due to mem::forget
938        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
939        // Prevent Drop from running (which would shut down the channel)
940        std::mem::forget(self);
941    }
942}
943
944impl RecorderStopLoggingResponder {
945    /// Sends a response to the FIDL transaction.
946    ///
947    /// Sets the channel to shutdown if an error occurs.
948    pub fn send(self, mut stopped: bool) -> Result<(), fidl::Error> {
949        let _result = self.send_raw(stopped);
950        if _result.is_err() {
951            self.control_handle.shutdown();
952        }
953        self.drop_without_shutdown();
954        _result
955    }
956
957    /// Similar to "send" but does not shutdown the channel if an error occurs.
958    pub fn send_no_shutdown_on_err(self, mut stopped: bool) -> Result<(), fidl::Error> {
959        let _result = self.send_raw(stopped);
960        self.drop_without_shutdown();
961        _result
962    }
963
964    fn send_raw(&self, mut stopped: bool) -> Result<(), fidl::Error> {
965        self.control_handle.inner.send::<RecorderStopLoggingResponse>(
966            (stopped,),
967            self.tx_id,
968            0x615d67a4d94d4732,
969            fidl::encoding::DynamicFlags::empty(),
970        )
971    }
972}
973
974mod internal {
975    use super::*;
976}