fidl_examples_keyvaluestore_supporttrees/
fidl_examples_keyvaluestore_supporttrees.rs1#![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_examples_keyvaluestore_supporttrees_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct StoreMarker;
16
17impl fidl::endpoints::ProtocolMarker for StoreMarker {
18 type Proxy = StoreProxy;
19 type RequestStream = StoreRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = StoreSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "examples.keyvaluestore.supporttrees.Store";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for StoreMarker {}
26pub type StoreWriteItemResult = Result<(), WriteError>;
27
28pub trait StoreProxyInterface: Send + Sync {
29 type WriteItemResponseFut: std::future::Future<Output = Result<StoreWriteItemResult, fidl::Error>>
30 + Send;
31 fn r#write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut;
32}
33#[derive(Debug)]
34#[cfg(target_os = "fuchsia")]
35pub struct StoreSynchronousProxy {
36 client: fidl::client::sync::Client,
37}
38
39#[cfg(target_os = "fuchsia")]
40impl fidl::endpoints::SynchronousProxy for StoreSynchronousProxy {
41 type Proxy = StoreProxy;
42 type Protocol = StoreMarker;
43
44 fn from_channel(inner: fidl::Channel) -> Self {
45 Self::new(inner)
46 }
47
48 fn into_channel(self) -> fidl::Channel {
49 self.client.into_channel()
50 }
51
52 fn as_channel(&self) -> &fidl::Channel {
53 self.client.as_channel()
54 }
55}
56
57#[cfg(target_os = "fuchsia")]
58impl StoreSynchronousProxy {
59 pub fn new(channel: fidl::Channel) -> Self {
60 let protocol_name = <StoreMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
61 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
62 }
63
64 pub fn into_channel(self) -> fidl::Channel {
65 self.client.into_channel()
66 }
67
68 pub fn wait_for_event(
71 &self,
72 deadline: zx::MonotonicInstant,
73 ) -> Result<StoreEvent, fidl::Error> {
74 StoreEvent::decode(self.client.wait_for_event(deadline)?)
75 }
76
77 pub fn r#write_item(
79 &self,
80 mut attempt: &Item,
81 ___deadline: zx::MonotonicInstant,
82 ) -> Result<StoreWriteItemResult, fidl::Error> {
83 let _response = self.client.send_query::<
84 StoreWriteItemRequest,
85 fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, WriteError>,
86 >(
87 (attempt,),
88 0x4a01d5d999e00aa2,
89 fidl::encoding::DynamicFlags::FLEXIBLE,
90 ___deadline,
91 )?
92 .into_result::<StoreMarker>("write_item")?;
93 Ok(_response.map(|x| x))
94 }
95}
96
97#[cfg(target_os = "fuchsia")]
98impl From<StoreSynchronousProxy> for zx::Handle {
99 fn from(value: StoreSynchronousProxy) -> Self {
100 value.into_channel().into()
101 }
102}
103
104#[cfg(target_os = "fuchsia")]
105impl From<fidl::Channel> for StoreSynchronousProxy {
106 fn from(value: fidl::Channel) -> Self {
107 Self::new(value)
108 }
109}
110
111#[derive(Debug, Clone)]
112pub struct StoreProxy {
113 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
114}
115
116impl fidl::endpoints::Proxy for StoreProxy {
117 type Protocol = StoreMarker;
118
119 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
120 Self::new(inner)
121 }
122
123 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
124 self.client.into_channel().map_err(|client| Self { client })
125 }
126
127 fn as_channel(&self) -> &::fidl::AsyncChannel {
128 self.client.as_channel()
129 }
130}
131
132impl StoreProxy {
133 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
135 let protocol_name = <StoreMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
136 Self { client: fidl::client::Client::new(channel, protocol_name) }
137 }
138
139 pub fn take_event_stream(&self) -> StoreEventStream {
145 StoreEventStream { event_receiver: self.client.take_event_receiver() }
146 }
147
148 pub fn r#write_item(
150 &self,
151 mut attempt: &Item,
152 ) -> fidl::client::QueryResponseFut<
153 StoreWriteItemResult,
154 fidl::encoding::DefaultFuchsiaResourceDialect,
155 > {
156 StoreProxyInterface::r#write_item(self, attempt)
157 }
158}
159
160impl StoreProxyInterface for StoreProxy {
161 type WriteItemResponseFut = fidl::client::QueryResponseFut<
162 StoreWriteItemResult,
163 fidl::encoding::DefaultFuchsiaResourceDialect,
164 >;
165 fn r#write_item(&self, mut attempt: &Item) -> Self::WriteItemResponseFut {
166 fn _decode(
167 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
168 ) -> Result<StoreWriteItemResult, fidl::Error> {
169 let _response = fidl::client::decode_transaction_body::<
170 fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, WriteError>,
171 fidl::encoding::DefaultFuchsiaResourceDialect,
172 0x4a01d5d999e00aa2,
173 >(_buf?)?
174 .into_result::<StoreMarker>("write_item")?;
175 Ok(_response.map(|x| x))
176 }
177 self.client.send_query_and_decode::<StoreWriteItemRequest, StoreWriteItemResult>(
178 (attempt,),
179 0x4a01d5d999e00aa2,
180 fidl::encoding::DynamicFlags::FLEXIBLE,
181 _decode,
182 )
183 }
184}
185
186pub struct StoreEventStream {
187 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
188}
189
190impl std::marker::Unpin for StoreEventStream {}
191
192impl futures::stream::FusedStream for StoreEventStream {
193 fn is_terminated(&self) -> bool {
194 self.event_receiver.is_terminated()
195 }
196}
197
198impl futures::Stream for StoreEventStream {
199 type Item = Result<StoreEvent, fidl::Error>;
200
201 fn poll_next(
202 mut self: std::pin::Pin<&mut Self>,
203 cx: &mut std::task::Context<'_>,
204 ) -> std::task::Poll<Option<Self::Item>> {
205 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
206 &mut self.event_receiver,
207 cx
208 )?) {
209 Some(buf) => std::task::Poll::Ready(Some(StoreEvent::decode(buf))),
210 None => std::task::Poll::Ready(None),
211 }
212 }
213}
214
215#[derive(Debug)]
216pub enum StoreEvent {
217 #[non_exhaustive]
218 _UnknownEvent {
219 ordinal: u64,
221 },
222}
223
224impl StoreEvent {
225 fn decode(
227 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
228 ) -> Result<StoreEvent, fidl::Error> {
229 let (bytes, _handles) = buf.split_mut();
230 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
231 debug_assert_eq!(tx_header.tx_id, 0);
232 match tx_header.ordinal {
233 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
234 Ok(StoreEvent::_UnknownEvent { ordinal: tx_header.ordinal })
235 }
236 _ => Err(fidl::Error::UnknownOrdinal {
237 ordinal: tx_header.ordinal,
238 protocol_name: <StoreMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
239 }),
240 }
241 }
242}
243
244pub struct StoreRequestStream {
246 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
247 is_terminated: bool,
248}
249
250impl std::marker::Unpin for StoreRequestStream {}
251
252impl futures::stream::FusedStream for StoreRequestStream {
253 fn is_terminated(&self) -> bool {
254 self.is_terminated
255 }
256}
257
258impl fidl::endpoints::RequestStream for StoreRequestStream {
259 type Protocol = StoreMarker;
260 type ControlHandle = StoreControlHandle;
261
262 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
263 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
264 }
265
266 fn control_handle(&self) -> Self::ControlHandle {
267 StoreControlHandle { inner: self.inner.clone() }
268 }
269
270 fn into_inner(
271 self,
272 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
273 {
274 (self.inner, self.is_terminated)
275 }
276
277 fn from_inner(
278 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
279 is_terminated: bool,
280 ) -> Self {
281 Self { inner, is_terminated }
282 }
283}
284
285impl futures::Stream for StoreRequestStream {
286 type Item = Result<StoreRequest, fidl::Error>;
287
288 fn poll_next(
289 mut self: std::pin::Pin<&mut Self>,
290 cx: &mut std::task::Context<'_>,
291 ) -> std::task::Poll<Option<Self::Item>> {
292 let this = &mut *self;
293 if this.inner.check_shutdown(cx) {
294 this.is_terminated = true;
295 return std::task::Poll::Ready(None);
296 }
297 if this.is_terminated {
298 panic!("polled StoreRequestStream after completion");
299 }
300 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
301 |bytes, handles| {
302 match this.inner.channel().read_etc(cx, bytes, handles) {
303 std::task::Poll::Ready(Ok(())) => {}
304 std::task::Poll::Pending => return std::task::Poll::Pending,
305 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
306 this.is_terminated = true;
307 return std::task::Poll::Ready(None);
308 }
309 std::task::Poll::Ready(Err(e)) => {
310 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
311 e.into(),
312 ))))
313 }
314 }
315
316 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
318
319 std::task::Poll::Ready(Some(match header.ordinal {
320 0x4a01d5d999e00aa2 => {
321 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
322 let mut req = fidl::new_empty!(
323 StoreWriteItemRequest,
324 fidl::encoding::DefaultFuchsiaResourceDialect
325 );
326 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<StoreWriteItemRequest>(&header, _body_bytes, handles, &mut req)?;
327 let control_handle = StoreControlHandle { inner: this.inner.clone() };
328 Ok(StoreRequest::WriteItem {
329 attempt: req.attempt,
330
331 responder: StoreWriteItemResponder {
332 control_handle: std::mem::ManuallyDrop::new(control_handle),
333 tx_id: header.tx_id,
334 },
335 })
336 }
337 _ if header.tx_id == 0
338 && header
339 .dynamic_flags()
340 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
341 {
342 Ok(StoreRequest::_UnknownMethod {
343 ordinal: header.ordinal,
344 control_handle: StoreControlHandle { inner: this.inner.clone() },
345 method_type: fidl::MethodType::OneWay,
346 })
347 }
348 _ if header
349 .dynamic_flags()
350 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
351 {
352 this.inner.send_framework_err(
353 fidl::encoding::FrameworkErr::UnknownMethod,
354 header.tx_id,
355 header.ordinal,
356 header.dynamic_flags(),
357 (bytes, handles),
358 )?;
359 Ok(StoreRequest::_UnknownMethod {
360 ordinal: header.ordinal,
361 control_handle: StoreControlHandle { inner: this.inner.clone() },
362 method_type: fidl::MethodType::TwoWay,
363 })
364 }
365 _ => Err(fidl::Error::UnknownOrdinal {
366 ordinal: header.ordinal,
367 protocol_name: <StoreMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
368 }),
369 }))
370 },
371 )
372 }
373}
374
375#[derive(Debug)]
377pub enum StoreRequest {
378 WriteItem { attempt: Item, responder: StoreWriteItemResponder },
380 #[non_exhaustive]
382 _UnknownMethod {
383 ordinal: u64,
385 control_handle: StoreControlHandle,
386 method_type: fidl::MethodType,
387 },
388}
389
390impl StoreRequest {
391 #[allow(irrefutable_let_patterns)]
392 pub fn into_write_item(self) -> Option<(Item, StoreWriteItemResponder)> {
393 if let StoreRequest::WriteItem { attempt, responder } = self {
394 Some((attempt, responder))
395 } else {
396 None
397 }
398 }
399
400 pub fn method_name(&self) -> &'static str {
402 match *self {
403 StoreRequest::WriteItem { .. } => "write_item",
404 StoreRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
405 "unknown one-way method"
406 }
407 StoreRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
408 "unknown two-way method"
409 }
410 }
411 }
412}
413
414#[derive(Debug, Clone)]
415pub struct StoreControlHandle {
416 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
417}
418
419impl fidl::endpoints::ControlHandle for StoreControlHandle {
420 fn shutdown(&self) {
421 self.inner.shutdown()
422 }
423 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
424 self.inner.shutdown_with_epitaph(status)
425 }
426
427 fn is_closed(&self) -> bool {
428 self.inner.channel().is_closed()
429 }
430 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
431 self.inner.channel().on_closed()
432 }
433
434 #[cfg(target_os = "fuchsia")]
435 fn signal_peer(
436 &self,
437 clear_mask: zx::Signals,
438 set_mask: zx::Signals,
439 ) -> Result<(), zx_status::Status> {
440 use fidl::Peered;
441 self.inner.channel().signal_peer(clear_mask, set_mask)
442 }
443}
444
445impl StoreControlHandle {}
446
447#[must_use = "FIDL methods require a response to be sent"]
448#[derive(Debug)]
449pub struct StoreWriteItemResponder {
450 control_handle: std::mem::ManuallyDrop<StoreControlHandle>,
451 tx_id: u32,
452}
453
454impl std::ops::Drop for StoreWriteItemResponder {
458 fn drop(&mut self) {
459 self.control_handle.shutdown();
460 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
462 }
463}
464
465impl fidl::endpoints::Responder for StoreWriteItemResponder {
466 type ControlHandle = StoreControlHandle;
467
468 fn control_handle(&self) -> &StoreControlHandle {
469 &self.control_handle
470 }
471
472 fn drop_without_shutdown(mut self) {
473 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
475 std::mem::forget(self);
477 }
478}
479
480impl StoreWriteItemResponder {
481 pub fn send(self, mut result: Result<(), WriteError>) -> Result<(), fidl::Error> {
485 let _result = self.send_raw(result);
486 if _result.is_err() {
487 self.control_handle.shutdown();
488 }
489 self.drop_without_shutdown();
490 _result
491 }
492
493 pub fn send_no_shutdown_on_err(
495 self,
496 mut result: Result<(), WriteError>,
497 ) -> Result<(), fidl::Error> {
498 let _result = self.send_raw(result);
499 self.drop_without_shutdown();
500 _result
501 }
502
503 fn send_raw(&self, mut result: Result<(), WriteError>) -> Result<(), fidl::Error> {
504 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
505 fidl::encoding::EmptyStruct,
506 WriteError,
507 >>(
508 fidl::encoding::FlexibleResult::new(result),
509 self.tx_id,
510 0x4a01d5d999e00aa2,
511 fidl::encoding::DynamicFlags::FLEXIBLE,
512 )
513 }
514}
515
516mod internal {
517 use super::*;
518}