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_buildinfo_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ProviderMarker;
16
17impl fidl::endpoints::ProtocolMarker for ProviderMarker {
18 type Proxy = ProviderProxy;
19 type RequestStream = ProviderRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = ProviderSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.buildinfo.Provider";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ProviderMarker {}
26
27pub trait ProviderProxyInterface: Send + Sync {
28 type GetBuildInfoResponseFut: std::future::Future<Output = Result<BuildInfo, fidl::Error>>
29 + Send;
30 fn r#get_build_info(&self) -> Self::GetBuildInfoResponseFut;
31}
32#[derive(Debug)]
33#[cfg(target_os = "fuchsia")]
34pub struct ProviderSynchronousProxy {
35 client: fidl::client::sync::Client,
36}
37
38#[cfg(target_os = "fuchsia")]
39impl fidl::endpoints::SynchronousProxy for ProviderSynchronousProxy {
40 type Proxy = ProviderProxy;
41 type Protocol = ProviderMarker;
42
43 fn from_channel(inner: fidl::Channel) -> Self {
44 Self::new(inner)
45 }
46
47 fn into_channel(self) -> fidl::Channel {
48 self.client.into_channel()
49 }
50
51 fn as_channel(&self) -> &fidl::Channel {
52 self.client.as_channel()
53 }
54}
55
56#[cfg(target_os = "fuchsia")]
57impl ProviderSynchronousProxy {
58 pub fn new(channel: fidl::Channel) -> Self {
59 let protocol_name = <ProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
60 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
61 }
62
63 pub fn into_channel(self) -> fidl::Channel {
64 self.client.into_channel()
65 }
66
67 pub fn wait_for_event(
70 &self,
71 deadline: zx::MonotonicInstant,
72 ) -> Result<ProviderEvent, fidl::Error> {
73 ProviderEvent::decode(self.client.wait_for_event(deadline)?)
74 }
75
76 pub fn r#get_build_info(
78 &self,
79 ___deadline: zx::MonotonicInstant,
80 ) -> Result<BuildInfo, fidl::Error> {
81 let _response =
82 self.client.send_query::<fidl::encoding::EmptyPayload, ProviderGetBuildInfoResponse>(
83 (),
84 0x2cf46f6b8e681b93,
85 fidl::encoding::DynamicFlags::empty(),
86 ___deadline,
87 )?;
88 Ok(_response.build_info)
89 }
90}
91
92#[cfg(target_os = "fuchsia")]
93impl From<ProviderSynchronousProxy> for zx::Handle {
94 fn from(value: ProviderSynchronousProxy) -> Self {
95 value.into_channel().into()
96 }
97}
98
99#[cfg(target_os = "fuchsia")]
100impl From<fidl::Channel> for ProviderSynchronousProxy {
101 fn from(value: fidl::Channel) -> Self {
102 Self::new(value)
103 }
104}
105
106#[derive(Debug, Clone)]
107pub struct ProviderProxy {
108 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
109}
110
111impl fidl::endpoints::Proxy for ProviderProxy {
112 type Protocol = ProviderMarker;
113
114 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
115 Self::new(inner)
116 }
117
118 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
119 self.client.into_channel().map_err(|client| Self { client })
120 }
121
122 fn as_channel(&self) -> &::fidl::AsyncChannel {
123 self.client.as_channel()
124 }
125}
126
127impl ProviderProxy {
128 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
130 let protocol_name = <ProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
131 Self { client: fidl::client::Client::new(channel, protocol_name) }
132 }
133
134 pub fn take_event_stream(&self) -> ProviderEventStream {
140 ProviderEventStream { event_receiver: self.client.take_event_receiver() }
141 }
142
143 pub fn r#get_build_info(
145 &self,
146 ) -> fidl::client::QueryResponseFut<BuildInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
147 {
148 ProviderProxyInterface::r#get_build_info(self)
149 }
150}
151
152impl ProviderProxyInterface for ProviderProxy {
153 type GetBuildInfoResponseFut =
154 fidl::client::QueryResponseFut<BuildInfo, fidl::encoding::DefaultFuchsiaResourceDialect>;
155 fn r#get_build_info(&self) -> Self::GetBuildInfoResponseFut {
156 fn _decode(
157 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
158 ) -> Result<BuildInfo, fidl::Error> {
159 let _response = fidl::client::decode_transaction_body::<
160 ProviderGetBuildInfoResponse,
161 fidl::encoding::DefaultFuchsiaResourceDialect,
162 0x2cf46f6b8e681b93,
163 >(_buf?)?;
164 Ok(_response.build_info)
165 }
166 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, BuildInfo>(
167 (),
168 0x2cf46f6b8e681b93,
169 fidl::encoding::DynamicFlags::empty(),
170 _decode,
171 )
172 }
173}
174
175pub struct ProviderEventStream {
176 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
177}
178
179impl std::marker::Unpin for ProviderEventStream {}
180
181impl futures::stream::FusedStream for ProviderEventStream {
182 fn is_terminated(&self) -> bool {
183 self.event_receiver.is_terminated()
184 }
185}
186
187impl futures::Stream for ProviderEventStream {
188 type Item = Result<ProviderEvent, 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(ProviderEvent::decode(buf))),
199 None => std::task::Poll::Ready(None),
200 }
201 }
202}
203
204#[derive(Debug)]
205pub enum ProviderEvent {}
206
207impl ProviderEvent {
208 fn decode(
210 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
211 ) -> Result<ProviderEvent, 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: <ProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
219 }),
220 }
221 }
222}
223
224pub struct ProviderRequestStream {
226 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
227 is_terminated: bool,
228}
229
230impl std::marker::Unpin for ProviderRequestStream {}
231
232impl futures::stream::FusedStream for ProviderRequestStream {
233 fn is_terminated(&self) -> bool {
234 self.is_terminated
235 }
236}
237
238impl fidl::endpoints::RequestStream for ProviderRequestStream {
239 type Protocol = ProviderMarker;
240 type ControlHandle = ProviderControlHandle;
241
242 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
243 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
244 }
245
246 fn control_handle(&self) -> Self::ControlHandle {
247 ProviderControlHandle { inner: self.inner.clone() }
248 }
249
250 fn into_inner(
251 self,
252 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
253 {
254 (self.inner, self.is_terminated)
255 }
256
257 fn from_inner(
258 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
259 is_terminated: bool,
260 ) -> Self {
261 Self { inner, is_terminated }
262 }
263}
264
265impl futures::Stream for ProviderRequestStream {
266 type Item = Result<ProviderRequest, fidl::Error>;
267
268 fn poll_next(
269 mut self: std::pin::Pin<&mut Self>,
270 cx: &mut std::task::Context<'_>,
271 ) -> std::task::Poll<Option<Self::Item>> {
272 let this = &mut *self;
273 if this.inner.check_shutdown(cx) {
274 this.is_terminated = true;
275 return std::task::Poll::Ready(None);
276 }
277 if this.is_terminated {
278 panic!("polled ProviderRequestStream after completion");
279 }
280 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
281 |bytes, handles| {
282 match this.inner.channel().read_etc(cx, bytes, handles) {
283 std::task::Poll::Ready(Ok(())) => {}
284 std::task::Poll::Pending => return std::task::Poll::Pending,
285 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
286 this.is_terminated = true;
287 return std::task::Poll::Ready(None);
288 }
289 std::task::Poll::Ready(Err(e)) => {
290 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
291 e.into(),
292 ))))
293 }
294 }
295
296 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
298
299 std::task::Poll::Ready(Some(match header.ordinal {
300 0x2cf46f6b8e681b93 => {
301 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
302 let mut req = fidl::new_empty!(
303 fidl::encoding::EmptyPayload,
304 fidl::encoding::DefaultFuchsiaResourceDialect
305 );
306 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
307 let control_handle = ProviderControlHandle { inner: this.inner.clone() };
308 Ok(ProviderRequest::GetBuildInfo {
309 responder: ProviderGetBuildInfoResponder {
310 control_handle: std::mem::ManuallyDrop::new(control_handle),
311 tx_id: header.tx_id,
312 },
313 })
314 }
315 _ => Err(fidl::Error::UnknownOrdinal {
316 ordinal: header.ordinal,
317 protocol_name:
318 <ProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
319 }),
320 }))
321 },
322 )
323 }
324}
325
326#[derive(Debug)]
328pub enum ProviderRequest {
329 GetBuildInfo { responder: ProviderGetBuildInfoResponder },
331}
332
333impl ProviderRequest {
334 #[allow(irrefutable_let_patterns)]
335 pub fn into_get_build_info(self) -> Option<(ProviderGetBuildInfoResponder)> {
336 if let ProviderRequest::GetBuildInfo { responder } = self {
337 Some((responder))
338 } else {
339 None
340 }
341 }
342
343 pub fn method_name(&self) -> &'static str {
345 match *self {
346 ProviderRequest::GetBuildInfo { .. } => "get_build_info",
347 }
348 }
349}
350
351#[derive(Debug, Clone)]
352pub struct ProviderControlHandle {
353 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
354}
355
356impl fidl::endpoints::ControlHandle for ProviderControlHandle {
357 fn shutdown(&self) {
358 self.inner.shutdown()
359 }
360 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
361 self.inner.shutdown_with_epitaph(status)
362 }
363
364 fn is_closed(&self) -> bool {
365 self.inner.channel().is_closed()
366 }
367 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
368 self.inner.channel().on_closed()
369 }
370
371 #[cfg(target_os = "fuchsia")]
372 fn signal_peer(
373 &self,
374 clear_mask: zx::Signals,
375 set_mask: zx::Signals,
376 ) -> Result<(), zx_status::Status> {
377 use fidl::Peered;
378 self.inner.channel().signal_peer(clear_mask, set_mask)
379 }
380}
381
382impl ProviderControlHandle {}
383
384#[must_use = "FIDL methods require a response to be sent"]
385#[derive(Debug)]
386pub struct ProviderGetBuildInfoResponder {
387 control_handle: std::mem::ManuallyDrop<ProviderControlHandle>,
388 tx_id: u32,
389}
390
391impl std::ops::Drop for ProviderGetBuildInfoResponder {
395 fn drop(&mut self) {
396 self.control_handle.shutdown();
397 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
399 }
400}
401
402impl fidl::endpoints::Responder for ProviderGetBuildInfoResponder {
403 type ControlHandle = ProviderControlHandle;
404
405 fn control_handle(&self) -> &ProviderControlHandle {
406 &self.control_handle
407 }
408
409 fn drop_without_shutdown(mut self) {
410 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
412 std::mem::forget(self);
414 }
415}
416
417impl ProviderGetBuildInfoResponder {
418 pub fn send(self, mut build_info: &BuildInfo) -> Result<(), fidl::Error> {
422 let _result = self.send_raw(build_info);
423 if _result.is_err() {
424 self.control_handle.shutdown();
425 }
426 self.drop_without_shutdown();
427 _result
428 }
429
430 pub fn send_no_shutdown_on_err(self, mut build_info: &BuildInfo) -> Result<(), fidl::Error> {
432 let _result = self.send_raw(build_info);
433 self.drop_without_shutdown();
434 _result
435 }
436
437 fn send_raw(&self, mut build_info: &BuildInfo) -> Result<(), fidl::Error> {
438 self.control_handle.inner.send::<ProviderGetBuildInfoResponse>(
439 (build_info,),
440 self.tx_id,
441 0x2cf46f6b8e681b93,
442 fidl::encoding::DynamicFlags::empty(),
443 )
444 }
445}
446
447mod internal {
448 use super::*;
449}