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_test_time_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct TimeSourceControlConnectPushSourceRequest {
16 pub push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for TimeSourceControlConnectPushSourceRequest
21{
22}
23
24#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
25pub struct TimeSourceControlMarker;
26
27impl fidl::endpoints::ProtocolMarker for TimeSourceControlMarker {
28 type Proxy = TimeSourceControlProxy;
29 type RequestStream = TimeSourceControlRequestStream;
30 #[cfg(target_os = "fuchsia")]
31 type SynchronousProxy = TimeSourceControlSynchronousProxy;
32
33 const DEBUG_NAME: &'static str = "test.time.TimeSourceControl";
34}
35impl fidl::endpoints::DiscoverableProtocolMarker for TimeSourceControlMarker {}
36
37pub trait TimeSourceControlProxyInterface: Send + Sync {
38 fn r#connect_push_source(
39 &self,
40 push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
41 ) -> Result<(), fidl::Error>;
42}
43#[derive(Debug)]
44#[cfg(target_os = "fuchsia")]
45pub struct TimeSourceControlSynchronousProxy {
46 client: fidl::client::sync::Client,
47}
48
49#[cfg(target_os = "fuchsia")]
50impl fidl::endpoints::SynchronousProxy for TimeSourceControlSynchronousProxy {
51 type Proxy = TimeSourceControlProxy;
52 type Protocol = TimeSourceControlMarker;
53
54 fn from_channel(inner: fidl::Channel) -> Self {
55 Self::new(inner)
56 }
57
58 fn into_channel(self) -> fidl::Channel {
59 self.client.into_channel()
60 }
61
62 fn as_channel(&self) -> &fidl::Channel {
63 self.client.as_channel()
64 }
65}
66
67#[cfg(target_os = "fuchsia")]
68impl TimeSourceControlSynchronousProxy {
69 pub fn new(channel: fidl::Channel) -> Self {
70 let protocol_name =
71 <TimeSourceControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
72 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
73 }
74
75 pub fn into_channel(self) -> fidl::Channel {
76 self.client.into_channel()
77 }
78
79 pub fn wait_for_event(
82 &self,
83 deadline: zx::MonotonicInstant,
84 ) -> Result<TimeSourceControlEvent, fidl::Error> {
85 TimeSourceControlEvent::decode(self.client.wait_for_event(deadline)?)
86 }
87
88 pub fn r#connect_push_source(
90 &self,
91 mut push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
92 ) -> Result<(), fidl::Error> {
93 self.client.send::<TimeSourceControlConnectPushSourceRequest>(
94 (push_source,),
95 0x6da5e3723a74f6e4,
96 fidl::encoding::DynamicFlags::empty(),
97 )
98 }
99}
100
101#[cfg(target_os = "fuchsia")]
102impl From<TimeSourceControlSynchronousProxy> for zx::Handle {
103 fn from(value: TimeSourceControlSynchronousProxy) -> Self {
104 value.into_channel().into()
105 }
106}
107
108#[cfg(target_os = "fuchsia")]
109impl From<fidl::Channel> for TimeSourceControlSynchronousProxy {
110 fn from(value: fidl::Channel) -> Self {
111 Self::new(value)
112 }
113}
114
115#[derive(Debug, Clone)]
116pub struct TimeSourceControlProxy {
117 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
118}
119
120impl fidl::endpoints::Proxy for TimeSourceControlProxy {
121 type Protocol = TimeSourceControlMarker;
122
123 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
124 Self::new(inner)
125 }
126
127 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
128 self.client.into_channel().map_err(|client| Self { client })
129 }
130
131 fn as_channel(&self) -> &::fidl::AsyncChannel {
132 self.client.as_channel()
133 }
134}
135
136impl TimeSourceControlProxy {
137 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
139 let protocol_name =
140 <TimeSourceControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
141 Self { client: fidl::client::Client::new(channel, protocol_name) }
142 }
143
144 pub fn take_event_stream(&self) -> TimeSourceControlEventStream {
150 TimeSourceControlEventStream { event_receiver: self.client.take_event_receiver() }
151 }
152
153 pub fn r#connect_push_source(
155 &self,
156 mut push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
157 ) -> Result<(), fidl::Error> {
158 TimeSourceControlProxyInterface::r#connect_push_source(self, push_source)
159 }
160}
161
162impl TimeSourceControlProxyInterface for TimeSourceControlProxy {
163 fn r#connect_push_source(
164 &self,
165 mut push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
166 ) -> Result<(), fidl::Error> {
167 self.client.send::<TimeSourceControlConnectPushSourceRequest>(
168 (push_source,),
169 0x6da5e3723a74f6e4,
170 fidl::encoding::DynamicFlags::empty(),
171 )
172 }
173}
174
175pub struct TimeSourceControlEventStream {
176 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
177}
178
179impl std::marker::Unpin for TimeSourceControlEventStream {}
180
181impl futures::stream::FusedStream for TimeSourceControlEventStream {
182 fn is_terminated(&self) -> bool {
183 self.event_receiver.is_terminated()
184 }
185}
186
187impl futures::Stream for TimeSourceControlEventStream {
188 type Item = Result<TimeSourceControlEvent, fidl::Error>;
189
190 fn poll_next(
191 mut self: std::pin::Pin<&mut Self>,
192 cx: &mut std::task::Context<'_>,
193 ) -> std::task::Poll<Option<Self::Item>> {
194 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
195 &mut self.event_receiver,
196 cx
197 )?) {
198 Some(buf) => std::task::Poll::Ready(Some(TimeSourceControlEvent::decode(buf))),
199 None => std::task::Poll::Ready(None),
200 }
201 }
202}
203
204#[derive(Debug)]
205pub enum TimeSourceControlEvent {}
206
207impl TimeSourceControlEvent {
208 fn decode(
210 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
211 ) -> Result<TimeSourceControlEvent, fidl::Error> {
212 let (bytes, _handles) = buf.split_mut();
213 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
214 debug_assert_eq!(tx_header.tx_id, 0);
215 match tx_header.ordinal {
216 _ => Err(fidl::Error::UnknownOrdinal {
217 ordinal: tx_header.ordinal,
218 protocol_name:
219 <TimeSourceControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
220 }),
221 }
222 }
223}
224
225pub struct TimeSourceControlRequestStream {
227 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
228 is_terminated: bool,
229}
230
231impl std::marker::Unpin for TimeSourceControlRequestStream {}
232
233impl futures::stream::FusedStream for TimeSourceControlRequestStream {
234 fn is_terminated(&self) -> bool {
235 self.is_terminated
236 }
237}
238
239impl fidl::endpoints::RequestStream for TimeSourceControlRequestStream {
240 type Protocol = TimeSourceControlMarker;
241 type ControlHandle = TimeSourceControlControlHandle;
242
243 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
244 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
245 }
246
247 fn control_handle(&self) -> Self::ControlHandle {
248 TimeSourceControlControlHandle { inner: self.inner.clone() }
249 }
250
251 fn into_inner(
252 self,
253 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
254 {
255 (self.inner, self.is_terminated)
256 }
257
258 fn from_inner(
259 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
260 is_terminated: bool,
261 ) -> Self {
262 Self { inner, is_terminated }
263 }
264}
265
266impl futures::Stream for TimeSourceControlRequestStream {
267 type Item = Result<TimeSourceControlRequest, fidl::Error>;
268
269 fn poll_next(
270 mut self: std::pin::Pin<&mut Self>,
271 cx: &mut std::task::Context<'_>,
272 ) -> std::task::Poll<Option<Self::Item>> {
273 let this = &mut *self;
274 if this.inner.check_shutdown(cx) {
275 this.is_terminated = true;
276 return std::task::Poll::Ready(None);
277 }
278 if this.is_terminated {
279 panic!("polled TimeSourceControlRequestStream after completion");
280 }
281 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
282 |bytes, handles| {
283 match this.inner.channel().read_etc(cx, bytes, handles) {
284 std::task::Poll::Ready(Ok(())) => {}
285 std::task::Poll::Pending => return std::task::Poll::Pending,
286 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
287 this.is_terminated = true;
288 return std::task::Poll::Ready(None);
289 }
290 std::task::Poll::Ready(Err(e)) => {
291 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
292 e.into(),
293 ))))
294 }
295 }
296
297 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
299
300 std::task::Poll::Ready(Some(match header.ordinal {
301 0x6da5e3723a74f6e4 => {
302 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
303 let mut req = fidl::new_empty!(
304 TimeSourceControlConnectPushSourceRequest,
305 fidl::encoding::DefaultFuchsiaResourceDialect
306 );
307 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TimeSourceControlConnectPushSourceRequest>(&header, _body_bytes, handles, &mut req)?;
308 let control_handle =
309 TimeSourceControlControlHandle { inner: this.inner.clone() };
310 Ok(TimeSourceControlRequest::ConnectPushSource {
311 push_source: req.push_source,
312
313 control_handle,
314 })
315 }
316 _ => Err(fidl::Error::UnknownOrdinal {
317 ordinal: header.ordinal,
318 protocol_name:
319 <TimeSourceControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
320 }),
321 }))
322 },
323 )
324 }
325}
326
327#[derive(Debug)]
332pub enum TimeSourceControlRequest {
333 ConnectPushSource {
335 push_source: fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
336 control_handle: TimeSourceControlControlHandle,
337 },
338}
339
340impl TimeSourceControlRequest {
341 #[allow(irrefutable_let_patterns)]
342 pub fn into_connect_push_source(
343 self,
344 ) -> Option<(
345 fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
346 TimeSourceControlControlHandle,
347 )> {
348 if let TimeSourceControlRequest::ConnectPushSource { push_source, control_handle } = self {
349 Some((push_source, control_handle))
350 } else {
351 None
352 }
353 }
354
355 pub fn method_name(&self) -> &'static str {
357 match *self {
358 TimeSourceControlRequest::ConnectPushSource { .. } => "connect_push_source",
359 }
360 }
361}
362
363#[derive(Debug, Clone)]
364pub struct TimeSourceControlControlHandle {
365 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
366}
367
368impl fidl::endpoints::ControlHandle for TimeSourceControlControlHandle {
369 fn shutdown(&self) {
370 self.inner.shutdown()
371 }
372 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
373 self.inner.shutdown_with_epitaph(status)
374 }
375
376 fn is_closed(&self) -> bool {
377 self.inner.channel().is_closed()
378 }
379 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
380 self.inner.channel().on_closed()
381 }
382
383 #[cfg(target_os = "fuchsia")]
384 fn signal_peer(
385 &self,
386 clear_mask: zx::Signals,
387 set_mask: zx::Signals,
388 ) -> Result<(), zx_status::Status> {
389 use fidl::Peered;
390 self.inner.channel().signal_peer(clear_mask, set_mask)
391 }
392}
393
394impl TimeSourceControlControlHandle {}
395
396mod internal {
397 use super::*;
398
399 impl fidl::encoding::ResourceTypeMarker for TimeSourceControlConnectPushSourceRequest {
400 type Borrowed<'a> = &'a mut Self;
401 fn take_or_borrow<'a>(
402 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
403 ) -> Self::Borrowed<'a> {
404 value
405 }
406 }
407
408 unsafe impl fidl::encoding::TypeMarker for TimeSourceControlConnectPushSourceRequest {
409 type Owned = Self;
410
411 #[inline(always)]
412 fn inline_align(_context: fidl::encoding::Context) -> usize {
413 4
414 }
415
416 #[inline(always)]
417 fn inline_size(_context: fidl::encoding::Context) -> usize {
418 4
419 }
420 }
421
422 unsafe impl
423 fidl::encoding::Encode<
424 TimeSourceControlConnectPushSourceRequest,
425 fidl::encoding::DefaultFuchsiaResourceDialect,
426 > for &mut TimeSourceControlConnectPushSourceRequest
427 {
428 #[inline]
429 unsafe fn encode(
430 self,
431 encoder: &mut fidl::encoding::Encoder<
432 '_,
433 fidl::encoding::DefaultFuchsiaResourceDialect,
434 >,
435 offset: usize,
436 _depth: fidl::encoding::Depth,
437 ) -> fidl::Result<()> {
438 encoder.debug_check_bounds::<TimeSourceControlConnectPushSourceRequest>(offset);
439 fidl::encoding::Encode::<
441 TimeSourceControlConnectPushSourceRequest,
442 fidl::encoding::DefaultFuchsiaResourceDialect,
443 >::encode(
444 (<fidl::encoding::Endpoint<
445 fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
446 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
447 &mut self.push_source
448 ),),
449 encoder,
450 offset,
451 _depth,
452 )
453 }
454 }
455 unsafe impl<
456 T0: fidl::encoding::Encode<
457 fidl::encoding::Endpoint<
458 fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
459 >,
460 fidl::encoding::DefaultFuchsiaResourceDialect,
461 >,
462 >
463 fidl::encoding::Encode<
464 TimeSourceControlConnectPushSourceRequest,
465 fidl::encoding::DefaultFuchsiaResourceDialect,
466 > for (T0,)
467 {
468 #[inline]
469 unsafe fn encode(
470 self,
471 encoder: &mut fidl::encoding::Encoder<
472 '_,
473 fidl::encoding::DefaultFuchsiaResourceDialect,
474 >,
475 offset: usize,
476 depth: fidl::encoding::Depth,
477 ) -> fidl::Result<()> {
478 encoder.debug_check_bounds::<TimeSourceControlConnectPushSourceRequest>(offset);
479 self.0.encode(encoder, offset + 0, depth)?;
483 Ok(())
484 }
485 }
486
487 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
488 for TimeSourceControlConnectPushSourceRequest
489 {
490 #[inline(always)]
491 fn new_empty() -> Self {
492 Self {
493 push_source: fidl::new_empty!(
494 fidl::encoding::Endpoint<
495 fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
496 >,
497 fidl::encoding::DefaultFuchsiaResourceDialect
498 ),
499 }
500 }
501
502 #[inline]
503 unsafe fn decode(
504 &mut self,
505 decoder: &mut fidl::encoding::Decoder<
506 '_,
507 fidl::encoding::DefaultFuchsiaResourceDialect,
508 >,
509 offset: usize,
510 _depth: fidl::encoding::Depth,
511 ) -> fidl::Result<()> {
512 decoder.debug_check_bounds::<Self>(offset);
513 fidl::decode!(
515 fidl::encoding::Endpoint<
516 fidl::endpoints::ServerEnd<fidl_fuchsia_time_external::PushSourceMarker>,
517 >,
518 fidl::encoding::DefaultFuchsiaResourceDialect,
519 &mut self.push_source,
520 decoder,
521 offset + 0,
522 _depth
523 )?;
524 Ok(())
525 }
526 }
527}