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