fidl_fuchsia_test_intl_manager/
fidl_fuchsia_test_intl_manager.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_fuchsia_test_intl_manager_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct PropertyManagerMarker;
16
17impl fidl::endpoints::ProtocolMarker for PropertyManagerMarker {
18 type Proxy = PropertyManagerProxy;
19 type RequestStream = PropertyManagerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = PropertyManagerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.test.intl.manager.PropertyManager";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for PropertyManagerMarker {}
26
27pub trait PropertyManagerProxyInterface: Send + Sync {
28 type SetProfileResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
29 fn r#set_profile(
30 &self,
31 intl_profile: &fidl_fuchsia_intl::Profile,
32 ) -> Self::SetProfileResponseFut;
33}
34#[derive(Debug)]
35#[cfg(target_os = "fuchsia")]
36pub struct PropertyManagerSynchronousProxy {
37 client: fidl::client::sync::Client,
38}
39
40#[cfg(target_os = "fuchsia")]
41impl fidl::endpoints::SynchronousProxy for PropertyManagerSynchronousProxy {
42 type Proxy = PropertyManagerProxy;
43 type Protocol = PropertyManagerMarker;
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 PropertyManagerSynchronousProxy {
60 pub fn new(channel: fidl::Channel) -> Self {
61 let protocol_name = <PropertyManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
62 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
63 }
64
65 pub fn into_channel(self) -> fidl::Channel {
66 self.client.into_channel()
67 }
68
69 pub fn wait_for_event(
72 &self,
73 deadline: zx::MonotonicInstant,
74 ) -> Result<PropertyManagerEvent, fidl::Error> {
75 PropertyManagerEvent::decode(self.client.wait_for_event(deadline)?)
76 }
77
78 pub fn r#set_profile(
80 &self,
81 mut intl_profile: &fidl_fuchsia_intl::Profile,
82 ___deadline: zx::MonotonicInstant,
83 ) -> Result<(), fidl::Error> {
84 let _response = self
85 .client
86 .send_query::<PropertyManagerSetProfileRequest, fidl::encoding::EmptyPayload>(
87 (intl_profile,),
88 0x359d8cfc3cdd020d,
89 fidl::encoding::DynamicFlags::empty(),
90 ___deadline,
91 )?;
92 Ok(_response)
93 }
94}
95
96#[cfg(target_os = "fuchsia")]
97impl From<PropertyManagerSynchronousProxy> for zx::Handle {
98 fn from(value: PropertyManagerSynchronousProxy) -> Self {
99 value.into_channel().into()
100 }
101}
102
103#[cfg(target_os = "fuchsia")]
104impl From<fidl::Channel> for PropertyManagerSynchronousProxy {
105 fn from(value: fidl::Channel) -> Self {
106 Self::new(value)
107 }
108}
109
110#[derive(Debug, Clone)]
111pub struct PropertyManagerProxy {
112 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
113}
114
115impl fidl::endpoints::Proxy for PropertyManagerProxy {
116 type Protocol = PropertyManagerMarker;
117
118 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
119 Self::new(inner)
120 }
121
122 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
123 self.client.into_channel().map_err(|client| Self { client })
124 }
125
126 fn as_channel(&self) -> &::fidl::AsyncChannel {
127 self.client.as_channel()
128 }
129}
130
131impl PropertyManagerProxy {
132 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
134 let protocol_name = <PropertyManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
135 Self { client: fidl::client::Client::new(channel, protocol_name) }
136 }
137
138 pub fn take_event_stream(&self) -> PropertyManagerEventStream {
144 PropertyManagerEventStream { event_receiver: self.client.take_event_receiver() }
145 }
146
147 pub fn r#set_profile(
149 &self,
150 mut intl_profile: &fidl_fuchsia_intl::Profile,
151 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
152 PropertyManagerProxyInterface::r#set_profile(self, intl_profile)
153 }
154}
155
156impl PropertyManagerProxyInterface for PropertyManagerProxy {
157 type SetProfileResponseFut =
158 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
159 fn r#set_profile(
160 &self,
161 mut intl_profile: &fidl_fuchsia_intl::Profile,
162 ) -> Self::SetProfileResponseFut {
163 fn _decode(
164 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
165 ) -> Result<(), fidl::Error> {
166 let _response = fidl::client::decode_transaction_body::<
167 fidl::encoding::EmptyPayload,
168 fidl::encoding::DefaultFuchsiaResourceDialect,
169 0x359d8cfc3cdd020d,
170 >(_buf?)?;
171 Ok(_response)
172 }
173 self.client.send_query_and_decode::<PropertyManagerSetProfileRequest, ()>(
174 (intl_profile,),
175 0x359d8cfc3cdd020d,
176 fidl::encoding::DynamicFlags::empty(),
177 _decode,
178 )
179 }
180}
181
182pub struct PropertyManagerEventStream {
183 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
184}
185
186impl std::marker::Unpin for PropertyManagerEventStream {}
187
188impl futures::stream::FusedStream for PropertyManagerEventStream {
189 fn is_terminated(&self) -> bool {
190 self.event_receiver.is_terminated()
191 }
192}
193
194impl futures::Stream for PropertyManagerEventStream {
195 type Item = Result<PropertyManagerEvent, fidl::Error>;
196
197 fn poll_next(
198 mut self: std::pin::Pin<&mut Self>,
199 cx: &mut std::task::Context<'_>,
200 ) -> std::task::Poll<Option<Self::Item>> {
201 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
202 &mut self.event_receiver,
203 cx
204 )?) {
205 Some(buf) => std::task::Poll::Ready(Some(PropertyManagerEvent::decode(buf))),
206 None => std::task::Poll::Ready(None),
207 }
208 }
209}
210
211#[derive(Debug)]
212pub enum PropertyManagerEvent {}
213
214impl PropertyManagerEvent {
215 fn decode(
217 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
218 ) -> Result<PropertyManagerEvent, fidl::Error> {
219 let (bytes, _handles) = buf.split_mut();
220 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
221 debug_assert_eq!(tx_header.tx_id, 0);
222 match tx_header.ordinal {
223 _ => Err(fidl::Error::UnknownOrdinal {
224 ordinal: tx_header.ordinal,
225 protocol_name:
226 <PropertyManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
227 }),
228 }
229 }
230}
231
232pub struct PropertyManagerRequestStream {
234 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
235 is_terminated: bool,
236}
237
238impl std::marker::Unpin for PropertyManagerRequestStream {}
239
240impl futures::stream::FusedStream for PropertyManagerRequestStream {
241 fn is_terminated(&self) -> bool {
242 self.is_terminated
243 }
244}
245
246impl fidl::endpoints::RequestStream for PropertyManagerRequestStream {
247 type Protocol = PropertyManagerMarker;
248 type ControlHandle = PropertyManagerControlHandle;
249
250 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
251 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
252 }
253
254 fn control_handle(&self) -> Self::ControlHandle {
255 PropertyManagerControlHandle { inner: self.inner.clone() }
256 }
257
258 fn into_inner(
259 self,
260 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
261 {
262 (self.inner, self.is_terminated)
263 }
264
265 fn from_inner(
266 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
267 is_terminated: bool,
268 ) -> Self {
269 Self { inner, is_terminated }
270 }
271}
272
273impl futures::Stream for PropertyManagerRequestStream {
274 type Item = Result<PropertyManagerRequest, fidl::Error>;
275
276 fn poll_next(
277 mut self: std::pin::Pin<&mut Self>,
278 cx: &mut std::task::Context<'_>,
279 ) -> std::task::Poll<Option<Self::Item>> {
280 let this = &mut *self;
281 if this.inner.check_shutdown(cx) {
282 this.is_terminated = true;
283 return std::task::Poll::Ready(None);
284 }
285 if this.is_terminated {
286 panic!("polled PropertyManagerRequestStream after completion");
287 }
288 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
289 |bytes, handles| {
290 match this.inner.channel().read_etc(cx, bytes, handles) {
291 std::task::Poll::Ready(Ok(())) => {}
292 std::task::Poll::Pending => return std::task::Poll::Pending,
293 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
294 this.is_terminated = true;
295 return std::task::Poll::Ready(None);
296 }
297 std::task::Poll::Ready(Err(e)) => {
298 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
299 e.into(),
300 ))))
301 }
302 }
303
304 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
306
307 std::task::Poll::Ready(Some(match header.ordinal {
308 0x359d8cfc3cdd020d => {
309 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
310 let mut req = fidl::new_empty!(
311 PropertyManagerSetProfileRequest,
312 fidl::encoding::DefaultFuchsiaResourceDialect
313 );
314 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<PropertyManagerSetProfileRequest>(&header, _body_bytes, handles, &mut req)?;
315 let control_handle =
316 PropertyManagerControlHandle { inner: this.inner.clone() };
317 Ok(PropertyManagerRequest::SetProfile {
318 intl_profile: req.intl_profile,
319
320 responder: PropertyManagerSetProfileResponder {
321 control_handle: std::mem::ManuallyDrop::new(control_handle),
322 tx_id: header.tx_id,
323 },
324 })
325 }
326 _ => Err(fidl::Error::UnknownOrdinal {
327 ordinal: header.ordinal,
328 protocol_name:
329 <PropertyManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
330 }),
331 }))
332 },
333 )
334 }
335}
336
337#[derive(Debug)]
345pub enum PropertyManagerRequest {
346 SetProfile {
348 intl_profile: fidl_fuchsia_intl::Profile,
349 responder: PropertyManagerSetProfileResponder,
350 },
351}
352
353impl PropertyManagerRequest {
354 #[allow(irrefutable_let_patterns)]
355 pub fn into_set_profile(
356 self,
357 ) -> Option<(fidl_fuchsia_intl::Profile, PropertyManagerSetProfileResponder)> {
358 if let PropertyManagerRequest::SetProfile { intl_profile, responder } = self {
359 Some((intl_profile, responder))
360 } else {
361 None
362 }
363 }
364
365 pub fn method_name(&self) -> &'static str {
367 match *self {
368 PropertyManagerRequest::SetProfile { .. } => "set_profile",
369 }
370 }
371}
372
373#[derive(Debug, Clone)]
374pub struct PropertyManagerControlHandle {
375 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
376}
377
378impl fidl::endpoints::ControlHandle for PropertyManagerControlHandle {
379 fn shutdown(&self) {
380 self.inner.shutdown()
381 }
382 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
383 self.inner.shutdown_with_epitaph(status)
384 }
385
386 fn is_closed(&self) -> bool {
387 self.inner.channel().is_closed()
388 }
389 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
390 self.inner.channel().on_closed()
391 }
392
393 #[cfg(target_os = "fuchsia")]
394 fn signal_peer(
395 &self,
396 clear_mask: zx::Signals,
397 set_mask: zx::Signals,
398 ) -> Result<(), zx_status::Status> {
399 use fidl::Peered;
400 self.inner.channel().signal_peer(clear_mask, set_mask)
401 }
402}
403
404impl PropertyManagerControlHandle {}
405
406#[must_use = "FIDL methods require a response to be sent"]
407#[derive(Debug)]
408pub struct PropertyManagerSetProfileResponder {
409 control_handle: std::mem::ManuallyDrop<PropertyManagerControlHandle>,
410 tx_id: u32,
411}
412
413impl std::ops::Drop for PropertyManagerSetProfileResponder {
417 fn drop(&mut self) {
418 self.control_handle.shutdown();
419 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
421 }
422}
423
424impl fidl::endpoints::Responder for PropertyManagerSetProfileResponder {
425 type ControlHandle = PropertyManagerControlHandle;
426
427 fn control_handle(&self) -> &PropertyManagerControlHandle {
428 &self.control_handle
429 }
430
431 fn drop_without_shutdown(mut self) {
432 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
434 std::mem::forget(self);
436 }
437}
438
439impl PropertyManagerSetProfileResponder {
440 pub fn send(self) -> Result<(), fidl::Error> {
444 let _result = self.send_raw();
445 if _result.is_err() {
446 self.control_handle.shutdown();
447 }
448 self.drop_without_shutdown();
449 _result
450 }
451
452 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
454 let _result = self.send_raw();
455 self.drop_without_shutdown();
456 _result
457 }
458
459 fn send_raw(&self) -> Result<(), fidl::Error> {
460 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
461 (),
462 self.tx_id,
463 0x359d8cfc3cdd020d,
464 fidl::encoding::DynamicFlags::empty(),
465 )
466 }
467}
468
469mod internal {
470 use super::*;
471}