fidl_fuchsia_tracing_common/
fidl_fuchsia_tracing_common.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11pub type CategoryDescription = String;
12
13pub type CategoryName = String;
15
16pub type EnabledCategoryList = Vec<String>;
17
18pub type ProviderId = u32;
19
20pub type ProviderName = String;
21
22pub const MAX_CATEGORY_DESCRIPTION_LENGTH: u32 = 400;
24
25pub const MAX_CATEGORY_NAME_LENGTH: u32 = 100;
27
28pub const MAX_NUM_ENABLED_CATEGORIES: u32 = 5000;
30
31pub const MAX_NUM_KNOWN_CATEGORIES: u32 = 5000;
33
34pub const MAX_PROVIDER_NAME_LENGTH: u32 = 100;
36
37#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
46#[repr(u8)]
47pub enum BufferDisposition {
48 ClearEntire = 1,
56 ClearNondurable = 2,
62 Retain = 3,
68}
69
70impl BufferDisposition {
71 #[inline]
72 pub fn from_primitive(prim: u8) -> Option<Self> {
73 match prim {
74 1 => Some(Self::ClearEntire),
75 2 => Some(Self::ClearNondurable),
76 3 => Some(Self::Retain),
77 _ => None,
78 }
79 }
80
81 #[inline]
82 pub const fn into_primitive(self) -> u8 {
83 self as u8
84 }
85
86 #[deprecated = "Strict enums should not use `is_unknown`"]
87 #[inline]
88 pub fn is_unknown(&self) -> bool {
89 false
90 }
91}
92
93#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
95#[repr(u8)]
96pub enum BufferingMode {
97 Oneshot = 1,
102 Circular = 2,
105 Streaming = 3,
113}
114
115impl BufferingMode {
116 #[inline]
117 pub fn from_primitive(prim: u8) -> Option<Self> {
118 match prim {
119 1 => Some(Self::Oneshot),
120 2 => Some(Self::Circular),
121 3 => Some(Self::Streaming),
122 _ => None,
123 }
124 }
125
126 #[inline]
127 pub const fn into_primitive(self) -> u8 {
128 self as u8
129 }
130
131 #[deprecated = "Strict enums should not use `is_unknown`"]
132 #[inline]
133 pub fn is_unknown(&self) -> bool {
134 false
135 }
136}
137
138#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
140pub struct KnownCategory {
141 pub name: String,
142 pub description: String,
143}
144
145impl fidl::Persistable for KnownCategory {}
146
147mod internal {
148 use super::*;
149 unsafe impl fidl::encoding::TypeMarker for BufferDisposition {
150 type Owned = Self;
151
152 #[inline(always)]
153 fn inline_align(_context: fidl::encoding::Context) -> usize {
154 std::mem::align_of::<u8>()
155 }
156
157 #[inline(always)]
158 fn inline_size(_context: fidl::encoding::Context) -> usize {
159 std::mem::size_of::<u8>()
160 }
161
162 #[inline(always)]
163 fn encode_is_copy() -> bool {
164 true
165 }
166
167 #[inline(always)]
168 fn decode_is_copy() -> bool {
169 false
170 }
171 }
172
173 impl fidl::encoding::ValueTypeMarker for BufferDisposition {
174 type Borrowed<'a> = Self;
175 #[inline(always)]
176 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
177 *value
178 }
179 }
180
181 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D>
182 for BufferDisposition
183 {
184 #[inline]
185 unsafe fn encode(
186 self,
187 encoder: &mut fidl::encoding::Encoder<'_, D>,
188 offset: usize,
189 _depth: fidl::encoding::Depth,
190 ) -> fidl::Result<()> {
191 encoder.debug_check_bounds::<Self>(offset);
192 encoder.write_num(self.into_primitive(), offset);
193 Ok(())
194 }
195 }
196
197 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for BufferDisposition {
198 #[inline(always)]
199 fn new_empty() -> Self {
200 Self::ClearEntire
201 }
202
203 #[inline]
204 unsafe fn decode(
205 &mut self,
206 decoder: &mut fidl::encoding::Decoder<'_, D>,
207 offset: usize,
208 _depth: fidl::encoding::Depth,
209 ) -> fidl::Result<()> {
210 decoder.debug_check_bounds::<Self>(offset);
211 let prim = decoder.read_num::<u8>(offset);
212
213 *self = Self::from_primitive(prim).ok_or(fidl::Error::InvalidEnumValue)?;
214 Ok(())
215 }
216 }
217 unsafe impl fidl::encoding::TypeMarker for BufferingMode {
218 type Owned = Self;
219
220 #[inline(always)]
221 fn inline_align(_context: fidl::encoding::Context) -> usize {
222 std::mem::align_of::<u8>()
223 }
224
225 #[inline(always)]
226 fn inline_size(_context: fidl::encoding::Context) -> usize {
227 std::mem::size_of::<u8>()
228 }
229
230 #[inline(always)]
231 fn encode_is_copy() -> bool {
232 true
233 }
234
235 #[inline(always)]
236 fn decode_is_copy() -> bool {
237 false
238 }
239 }
240
241 impl fidl::encoding::ValueTypeMarker for BufferingMode {
242 type Borrowed<'a> = Self;
243 #[inline(always)]
244 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
245 *value
246 }
247 }
248
249 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D> for BufferingMode {
250 #[inline]
251 unsafe fn encode(
252 self,
253 encoder: &mut fidl::encoding::Encoder<'_, D>,
254 offset: usize,
255 _depth: fidl::encoding::Depth,
256 ) -> fidl::Result<()> {
257 encoder.debug_check_bounds::<Self>(offset);
258 encoder.write_num(self.into_primitive(), offset);
259 Ok(())
260 }
261 }
262
263 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for BufferingMode {
264 #[inline(always)]
265 fn new_empty() -> Self {
266 Self::Oneshot
267 }
268
269 #[inline]
270 unsafe fn decode(
271 &mut self,
272 decoder: &mut fidl::encoding::Decoder<'_, D>,
273 offset: usize,
274 _depth: fidl::encoding::Depth,
275 ) -> fidl::Result<()> {
276 decoder.debug_check_bounds::<Self>(offset);
277 let prim = decoder.read_num::<u8>(offset);
278
279 *self = Self::from_primitive(prim).ok_or(fidl::Error::InvalidEnumValue)?;
280 Ok(())
281 }
282 }
283
284 impl fidl::encoding::ValueTypeMarker for KnownCategory {
285 type Borrowed<'a> = &'a Self;
286 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
287 value
288 }
289 }
290
291 unsafe impl fidl::encoding::TypeMarker for KnownCategory {
292 type Owned = Self;
293
294 #[inline(always)]
295 fn inline_align(_context: fidl::encoding::Context) -> usize {
296 8
297 }
298
299 #[inline(always)]
300 fn inline_size(_context: fidl::encoding::Context) -> usize {
301 32
302 }
303 }
304
305 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<KnownCategory, D>
306 for &KnownCategory
307 {
308 #[inline]
309 unsafe fn encode(
310 self,
311 encoder: &mut fidl::encoding::Encoder<'_, D>,
312 offset: usize,
313 _depth: fidl::encoding::Depth,
314 ) -> fidl::Result<()> {
315 encoder.debug_check_bounds::<KnownCategory>(offset);
316 fidl::encoding::Encode::<KnownCategory, D>::encode(
318 (
319 <fidl::encoding::BoundedString<100> as fidl::encoding::ValueTypeMarker>::borrow(
320 &self.name,
321 ),
322 <fidl::encoding::BoundedString<400> as fidl::encoding::ValueTypeMarker>::borrow(
323 &self.description,
324 ),
325 ),
326 encoder,
327 offset,
328 _depth,
329 )
330 }
331 }
332 unsafe impl<
333 D: fidl::encoding::ResourceDialect,
334 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<100>, D>,
335 T1: fidl::encoding::Encode<fidl::encoding::BoundedString<400>, D>,
336 > fidl::encoding::Encode<KnownCategory, D> for (T0, T1)
337 {
338 #[inline]
339 unsafe fn encode(
340 self,
341 encoder: &mut fidl::encoding::Encoder<'_, D>,
342 offset: usize,
343 depth: fidl::encoding::Depth,
344 ) -> fidl::Result<()> {
345 encoder.debug_check_bounds::<KnownCategory>(offset);
346 self.0.encode(encoder, offset + 0, depth)?;
350 self.1.encode(encoder, offset + 16, depth)?;
351 Ok(())
352 }
353 }
354
355 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for KnownCategory {
356 #[inline(always)]
357 fn new_empty() -> Self {
358 Self {
359 name: fidl::new_empty!(fidl::encoding::BoundedString<100>, D),
360 description: fidl::new_empty!(fidl::encoding::BoundedString<400>, D),
361 }
362 }
363
364 #[inline]
365 unsafe fn decode(
366 &mut self,
367 decoder: &mut fidl::encoding::Decoder<'_, D>,
368 offset: usize,
369 _depth: fidl::encoding::Depth,
370 ) -> fidl::Result<()> {
371 decoder.debug_check_bounds::<Self>(offset);
372 fidl::decode!(
374 fidl::encoding::BoundedString<100>,
375 D,
376 &mut self.name,
377 decoder,
378 offset + 0,
379 _depth
380 )?;
381 fidl::decode!(
382 fidl::encoding::BoundedString<400>,
383 D,
384 &mut self.description,
385 decoder,
386 offset + 16,
387 _depth
388 )?;
389 Ok(())
390 }
391 }
392}