fidl_fuchsia_wayland/
fidl_fuchsia_wayland.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_wayland_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct ServerConnectRequest {
16    pub channel: fidl::Channel,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for ServerConnectRequest {}
20
21#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
22pub struct Server_Marker;
23
24impl fidl::endpoints::ProtocolMarker for Server_Marker {
25    type Proxy = Server_Proxy;
26    type RequestStream = Server_RequestStream;
27    #[cfg(target_os = "fuchsia")]
28    type SynchronousProxy = Server_SynchronousProxy;
29
30    const DEBUG_NAME: &'static str = "fuchsia.wayland.Server";
31}
32impl fidl::endpoints::DiscoverableProtocolMarker for Server_Marker {}
33
34pub trait Server_ProxyInterface: Send + Sync {
35    fn r#connect(&self, channel: fidl::Channel) -> Result<(), fidl::Error>;
36}
37#[derive(Debug)]
38#[cfg(target_os = "fuchsia")]
39pub struct Server_SynchronousProxy {
40    client: fidl::client::sync::Client,
41}
42
43#[cfg(target_os = "fuchsia")]
44impl fidl::endpoints::SynchronousProxy for Server_SynchronousProxy {
45    type Proxy = Server_Proxy;
46    type Protocol = Server_Marker;
47
48    fn from_channel(inner: fidl::Channel) -> Self {
49        Self::new(inner)
50    }
51
52    fn into_channel(self) -> fidl::Channel {
53        self.client.into_channel()
54    }
55
56    fn as_channel(&self) -> &fidl::Channel {
57        self.client.as_channel()
58    }
59}
60
61#[cfg(target_os = "fuchsia")]
62impl Server_SynchronousProxy {
63    pub fn new(channel: fidl::Channel) -> Self {
64        let protocol_name = <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
65        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
66    }
67
68    pub fn into_channel(self) -> fidl::Channel {
69        self.client.into_channel()
70    }
71
72    /// Waits until an event arrives and returns it. It is safe for other
73    /// threads to make concurrent requests while waiting for an event.
74    pub fn wait_for_event(
75        &self,
76        deadline: zx::MonotonicInstant,
77    ) -> Result<Server_Event, fidl::Error> {
78        Server_Event::decode(self.client.wait_for_event(deadline)?)
79    }
80
81    /// Establishes a new connection to the server.
82    ///
83    /// For a client to open a new connection, a zx::channel must be created for
84    /// that connection. The client should retain one endpoint of that channel
85    /// and the other endpoint will be provided to this method. The messages on
86    /// the channel will be Wayland protocol messages. Each channel datagram will
87    /// contain 1 or more complete Wayland messages.
88    pub fn r#connect(&self, mut channel: fidl::Channel) -> Result<(), fidl::Error> {
89        self.client.send::<ServerConnectRequest>(
90            (channel,),
91            0x52a3b4417b29e9e7,
92            fidl::encoding::DynamicFlags::empty(),
93        )
94    }
95}
96
97#[cfg(target_os = "fuchsia")]
98impl From<Server_SynchronousProxy> for zx::Handle {
99    fn from(value: Server_SynchronousProxy) -> Self {
100        value.into_channel().into()
101    }
102}
103
104#[cfg(target_os = "fuchsia")]
105impl From<fidl::Channel> for Server_SynchronousProxy {
106    fn from(value: fidl::Channel) -> Self {
107        Self::new(value)
108    }
109}
110
111#[derive(Debug, Clone)]
112pub struct Server_Proxy {
113    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
114}
115
116impl fidl::endpoints::Proxy for Server_Proxy {
117    type Protocol = Server_Marker;
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 Server_Proxy {
133    /// Create a new Proxy for fuchsia.wayland/Server.
134    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
135        let protocol_name = <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
136        Self { client: fidl::client::Client::new(channel, protocol_name) }
137    }
138
139    /// Get a Stream of events from the remote end of the protocol.
140    ///
141    /// # Panics
142    ///
143    /// Panics if the event stream was already taken.
144    pub fn take_event_stream(&self) -> Server_EventStream {
145        Server_EventStream { event_receiver: self.client.take_event_receiver() }
146    }
147
148    /// Establishes a new connection to the server.
149    ///
150    /// For a client to open a new connection, a zx::channel must be created for
151    /// that connection. The client should retain one endpoint of that channel
152    /// and the other endpoint will be provided to this method. The messages on
153    /// the channel will be Wayland protocol messages. Each channel datagram will
154    /// contain 1 or more complete Wayland messages.
155    pub fn r#connect(&self, mut channel: fidl::Channel) -> Result<(), fidl::Error> {
156        Server_ProxyInterface::r#connect(self, channel)
157    }
158}
159
160impl Server_ProxyInterface for Server_Proxy {
161    fn r#connect(&self, mut channel: fidl::Channel) -> Result<(), fidl::Error> {
162        self.client.send::<ServerConnectRequest>(
163            (channel,),
164            0x52a3b4417b29e9e7,
165            fidl::encoding::DynamicFlags::empty(),
166        )
167    }
168}
169
170pub struct Server_EventStream {
171    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
172}
173
174impl std::marker::Unpin for Server_EventStream {}
175
176impl futures::stream::FusedStream for Server_EventStream {
177    fn is_terminated(&self) -> bool {
178        self.event_receiver.is_terminated()
179    }
180}
181
182impl futures::Stream for Server_EventStream {
183    type Item = Result<Server_Event, fidl::Error>;
184
185    fn poll_next(
186        mut self: std::pin::Pin<&mut Self>,
187        cx: &mut std::task::Context<'_>,
188    ) -> std::task::Poll<Option<Self::Item>> {
189        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
190            &mut self.event_receiver,
191            cx
192        )?) {
193            Some(buf) => std::task::Poll::Ready(Some(Server_Event::decode(buf))),
194            None => std::task::Poll::Ready(None),
195        }
196    }
197}
198
199#[derive(Debug)]
200pub enum Server_Event {}
201
202impl Server_Event {
203    /// Decodes a message buffer as a [`Server_Event`].
204    fn decode(
205        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
206    ) -> Result<Server_Event, fidl::Error> {
207        let (bytes, _handles) = buf.split_mut();
208        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
209        debug_assert_eq!(tx_header.tx_id, 0);
210        match tx_header.ordinal {
211            _ => Err(fidl::Error::UnknownOrdinal {
212                ordinal: tx_header.ordinal,
213                protocol_name: <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
214            }),
215        }
216    }
217}
218
219/// A Stream of incoming requests for fuchsia.wayland/Server.
220pub struct Server_RequestStream {
221    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
222    is_terminated: bool,
223}
224
225impl std::marker::Unpin for Server_RequestStream {}
226
227impl futures::stream::FusedStream for Server_RequestStream {
228    fn is_terminated(&self) -> bool {
229        self.is_terminated
230    }
231}
232
233impl fidl::endpoints::RequestStream for Server_RequestStream {
234    type Protocol = Server_Marker;
235    type ControlHandle = Server_ControlHandle;
236
237    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
238        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
239    }
240
241    fn control_handle(&self) -> Self::ControlHandle {
242        Server_ControlHandle { inner: self.inner.clone() }
243    }
244
245    fn into_inner(
246        self,
247    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
248    {
249        (self.inner, self.is_terminated)
250    }
251
252    fn from_inner(
253        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
254        is_terminated: bool,
255    ) -> Self {
256        Self { inner, is_terminated }
257    }
258}
259
260impl futures::Stream for Server_RequestStream {
261    type Item = Result<Server_Request, fidl::Error>;
262
263    fn poll_next(
264        mut self: std::pin::Pin<&mut Self>,
265        cx: &mut std::task::Context<'_>,
266    ) -> std::task::Poll<Option<Self::Item>> {
267        let this = &mut *self;
268        if this.inner.check_shutdown(cx) {
269            this.is_terminated = true;
270            return std::task::Poll::Ready(None);
271        }
272        if this.is_terminated {
273            panic!("polled Server_RequestStream after completion");
274        }
275        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
276            |bytes, handles| {
277                match this.inner.channel().read_etc(cx, bytes, handles) {
278                    std::task::Poll::Ready(Ok(())) => {}
279                    std::task::Poll::Pending => return std::task::Poll::Pending,
280                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
281                        this.is_terminated = true;
282                        return std::task::Poll::Ready(None);
283                    }
284                    std::task::Poll::Ready(Err(e)) => {
285                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
286                            e.into(),
287                        ))))
288                    }
289                }
290
291                // A message has been received from the channel
292                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
293
294                std::task::Poll::Ready(Some(match header.ordinal {
295                    0x52a3b4417b29e9e7 => {
296                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
297                        let mut req = fidl::new_empty!(
298                            ServerConnectRequest,
299                            fidl::encoding::DefaultFuchsiaResourceDialect
300                        );
301                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ServerConnectRequest>(&header, _body_bytes, handles, &mut req)?;
302                        let control_handle = Server_ControlHandle { inner: this.inner.clone() };
303                        Ok(Server_Request::Connect { channel: req.channel, control_handle })
304                    }
305                    _ => Err(fidl::Error::UnknownOrdinal {
306                        ordinal: header.ordinal,
307                        protocol_name:
308                            <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
309                    }),
310                }))
311            },
312        )
313    }
314}
315
316/// Protocol that provides a mechanism to connect to a Wayland server
317/// and communicate with that server using Wayland protocol messages.
318///
319/// The server has to implement the minimal set of interfaces in the
320/// core protocol require by the Wayland standard. Anything beyond that
321/// is optional. Clients can discover available Wayland interfaces using
322/// Wayland messsages that are part of the core protocol. The wire format
323/// and the core protocol is described in detail here:
324///
325/// https://wayland.freedesktop.org/docs/html/ch04.html
326///
327/// The Wayland protocol makes use of file descriptors for data transfer.
328/// Each file descriptor should be replaced with a zx::handle when
329/// communicating with a server. The exact handle type depends on the
330/// interface definition. File descriptors that can be memory-mapped
331/// typically need to be replaced with zx:vmos.
332///
333/// The client can be a Fuchsia component, or a Linux program (running
334/// in a VM, or using some other type of compatibility layer).
335#[derive(Debug)]
336pub enum Server_Request {
337    /// Establishes a new connection to the server.
338    ///
339    /// For a client to open a new connection, a zx::channel must be created for
340    /// that connection. The client should retain one endpoint of that channel
341    /// and the other endpoint will be provided to this method. The messages on
342    /// the channel will be Wayland protocol messages. Each channel datagram will
343    /// contain 1 or more complete Wayland messages.
344    Connect { channel: fidl::Channel, control_handle: Server_ControlHandle },
345}
346
347impl Server_Request {
348    #[allow(irrefutable_let_patterns)]
349    pub fn into_connect(self) -> Option<(fidl::Channel, Server_ControlHandle)> {
350        if let Server_Request::Connect { channel, control_handle } = self {
351            Some((channel, control_handle))
352        } else {
353            None
354        }
355    }
356
357    /// Name of the method defined in FIDL
358    pub fn method_name(&self) -> &'static str {
359        match *self {
360            Server_Request::Connect { .. } => "connect",
361        }
362    }
363}
364
365#[derive(Debug, Clone)]
366pub struct Server_ControlHandle {
367    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
368}
369
370impl fidl::endpoints::ControlHandle for Server_ControlHandle {
371    fn shutdown(&self) {
372        self.inner.shutdown()
373    }
374    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
375        self.inner.shutdown_with_epitaph(status)
376    }
377
378    fn is_closed(&self) -> bool {
379        self.inner.channel().is_closed()
380    }
381    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
382        self.inner.channel().on_closed()
383    }
384
385    #[cfg(target_os = "fuchsia")]
386    fn signal_peer(
387        &self,
388        clear_mask: zx::Signals,
389        set_mask: zx::Signals,
390    ) -> Result<(), zx_status::Status> {
391        use fidl::Peered;
392        self.inner.channel().signal_peer(clear_mask, set_mask)
393    }
394}
395
396impl Server_ControlHandle {}
397
398mod internal {
399    use super::*;
400
401    impl fidl::encoding::ResourceTypeMarker for ServerConnectRequest {
402        type Borrowed<'a> = &'a mut Self;
403        fn take_or_borrow<'a>(
404            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
405        ) -> Self::Borrowed<'a> {
406            value
407        }
408    }
409
410    unsafe impl fidl::encoding::TypeMarker for ServerConnectRequest {
411        type Owned = Self;
412
413        #[inline(always)]
414        fn inline_align(_context: fidl::encoding::Context) -> usize {
415            4
416        }
417
418        #[inline(always)]
419        fn inline_size(_context: fidl::encoding::Context) -> usize {
420            4
421        }
422    }
423
424    unsafe impl
425        fidl::encoding::Encode<ServerConnectRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
426        for &mut ServerConnectRequest
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::<ServerConnectRequest>(offset);
439            // Delegate to tuple encoding.
440            fidl::encoding::Encode::<
441                ServerConnectRequest,
442                fidl::encoding::DefaultFuchsiaResourceDialect,
443            >::encode(
444                (<fidl::encoding::HandleType<
445                    fidl::Channel,
446                    { fidl::ObjectType::CHANNEL.into_raw() },
447                    2147483648,
448                > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
449                    &mut self.channel
450                ),),
451                encoder,
452                offset,
453                _depth,
454            )
455        }
456    }
457    unsafe impl<
458            T0: fidl::encoding::Encode<
459                fidl::encoding::HandleType<
460                    fidl::Channel,
461                    { fidl::ObjectType::CHANNEL.into_raw() },
462                    2147483648,
463                >,
464                fidl::encoding::DefaultFuchsiaResourceDialect,
465            >,
466        >
467        fidl::encoding::Encode<ServerConnectRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
468        for (T0,)
469    {
470        #[inline]
471        unsafe fn encode(
472            self,
473            encoder: &mut fidl::encoding::Encoder<
474                '_,
475                fidl::encoding::DefaultFuchsiaResourceDialect,
476            >,
477            offset: usize,
478            depth: fidl::encoding::Depth,
479        ) -> fidl::Result<()> {
480            encoder.debug_check_bounds::<ServerConnectRequest>(offset);
481            // Zero out padding regions. There's no need to apply masks
482            // because the unmasked parts will be overwritten by fields.
483            // Write the fields.
484            self.0.encode(encoder, offset + 0, depth)?;
485            Ok(())
486        }
487    }
488
489    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
490        for ServerConnectRequest
491    {
492        #[inline(always)]
493        fn new_empty() -> Self {
494            Self {
495                channel: fidl::new_empty!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
496            }
497        }
498
499        #[inline]
500        unsafe fn decode(
501            &mut self,
502            decoder: &mut fidl::encoding::Decoder<
503                '_,
504                fidl::encoding::DefaultFuchsiaResourceDialect,
505            >,
506            offset: usize,
507            _depth: fidl::encoding::Depth,
508        ) -> fidl::Result<()> {
509            decoder.debug_check_bounds::<Self>(offset);
510            // Verify that padding bytes are zero.
511            fidl::decode!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.channel, decoder, offset + 0, _depth)?;
512            Ok(())
513        }
514    }
515}