1#![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 const MAX_COMPONENT_URL_LENGTH: u32 = 2083;
13
14pub const MAX_RESOLUTION_CONTEXT_SIZE: u32 = 8192;
16
17#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
19#[repr(u32)]
20pub enum ResolverError {
21 Internal = 1,
23 Io = 2,
25 InvalidArgs = 3,
27 NotSupported = 4,
29 ManifestNotFound = 5,
31 PackageNotFound = 6,
33 NoSpace = 7,
35 ResourceUnavailable = 8,
37 InvalidManifest = 9,
39 ConfigValuesNotFound = 10,
41 AbiRevisionNotFound = 11,
43 InvalidAbiRevision = 12,
45}
46
47impl ResolverError {
48 #[inline]
49 pub fn from_primitive(prim: u32) -> Option<Self> {
50 match prim {
51 1 => Some(Self::Internal),
52 2 => Some(Self::Io),
53 3 => Some(Self::InvalidArgs),
54 4 => Some(Self::NotSupported),
55 5 => Some(Self::ManifestNotFound),
56 6 => Some(Self::PackageNotFound),
57 7 => Some(Self::NoSpace),
58 8 => Some(Self::ResourceUnavailable),
59 9 => Some(Self::InvalidManifest),
60 10 => Some(Self::ConfigValuesNotFound),
61 11 => Some(Self::AbiRevisionNotFound),
62 12 => Some(Self::InvalidAbiRevision),
63 _ => None,
64 }
65 }
66
67 #[inline]
68 pub const fn into_primitive(self) -> u32 {
69 self as u32
70 }
71
72 #[deprecated = "Strict enums should not use `is_unknown`"]
73 #[inline]
74 pub fn is_unknown(&self) -> bool {
75 false
76 }
77}
78
79#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
84pub struct Context {
85 pub bytes: Vec<u8>,
86}
87
88impl fidl::Persistable for Context {}
89
90#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
91pub struct ResolverResolveRequest {
92 pub component_url: String,
93}
94
95impl fidl::Persistable for ResolverResolveRequest {}
96
97#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
98pub struct ResolverResolveWithContextRequest {
99 pub component_url: String,
100 pub context: Context,
101}
102
103impl fidl::Persistable for ResolverResolveWithContextRequest {}
104
105mod internal {
106 use super::*;
107 unsafe impl fidl::encoding::TypeMarker for ResolverError {
108 type Owned = Self;
109
110 #[inline(always)]
111 fn inline_align(_context: fidl::encoding::Context) -> usize {
112 std::mem::align_of::<u32>()
113 }
114
115 #[inline(always)]
116 fn inline_size(_context: fidl::encoding::Context) -> usize {
117 std::mem::size_of::<u32>()
118 }
119
120 #[inline(always)]
121 fn encode_is_copy() -> bool {
122 true
123 }
124
125 #[inline(always)]
126 fn decode_is_copy() -> bool {
127 false
128 }
129 }
130
131 impl fidl::encoding::ValueTypeMarker for ResolverError {
132 type Borrowed<'a> = Self;
133 #[inline(always)]
134 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
135 *value
136 }
137 }
138
139 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D> for ResolverError {
140 #[inline]
141 unsafe fn encode(
142 self,
143 encoder: &mut fidl::encoding::Encoder<'_, D>,
144 offset: usize,
145 _depth: fidl::encoding::Depth,
146 ) -> fidl::Result<()> {
147 encoder.debug_check_bounds::<Self>(offset);
148 encoder.write_num(self.into_primitive(), offset);
149 Ok(())
150 }
151 }
152
153 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for ResolverError {
154 #[inline(always)]
155 fn new_empty() -> Self {
156 Self::Internal
157 }
158
159 #[inline]
160 unsafe fn decode(
161 &mut self,
162 decoder: &mut fidl::encoding::Decoder<'_, D>,
163 offset: usize,
164 _depth: fidl::encoding::Depth,
165 ) -> fidl::Result<()> {
166 decoder.debug_check_bounds::<Self>(offset);
167 let prim = decoder.read_num::<u32>(offset);
168
169 *self = Self::from_primitive(prim).ok_or(fidl::Error::InvalidEnumValue)?;
170 Ok(())
171 }
172 }
173
174 impl fidl::encoding::ValueTypeMarker for Context {
175 type Borrowed<'a> = &'a Self;
176 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
177 value
178 }
179 }
180
181 unsafe impl fidl::encoding::TypeMarker for Context {
182 type Owned = Self;
183
184 #[inline(always)]
185 fn inline_align(_context: fidl::encoding::Context) -> usize {
186 8
187 }
188
189 #[inline(always)]
190 fn inline_size(_context: fidl::encoding::Context) -> usize {
191 16
192 }
193 }
194
195 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Context, D> for &Context {
196 #[inline]
197 unsafe fn encode(
198 self,
199 encoder: &mut fidl::encoding::Encoder<'_, D>,
200 offset: usize,
201 _depth: fidl::encoding::Depth,
202 ) -> fidl::Result<()> {
203 encoder.debug_check_bounds::<Context>(offset);
204 fidl::encoding::Encode::<Context, D>::encode(
206 (<fidl::encoding::Vector<u8, 8192> as fidl::encoding::ValueTypeMarker>::borrow(
207 &self.bytes,
208 ),),
209 encoder,
210 offset,
211 _depth,
212 )
213 }
214 }
215 unsafe impl<
216 D: fidl::encoding::ResourceDialect,
217 T0: fidl::encoding::Encode<fidl::encoding::Vector<u8, 8192>, D>,
218 > fidl::encoding::Encode<Context, D> for (T0,)
219 {
220 #[inline]
221 unsafe fn encode(
222 self,
223 encoder: &mut fidl::encoding::Encoder<'_, D>,
224 offset: usize,
225 depth: fidl::encoding::Depth,
226 ) -> fidl::Result<()> {
227 encoder.debug_check_bounds::<Context>(offset);
228 self.0.encode(encoder, offset + 0, depth)?;
232 Ok(())
233 }
234 }
235
236 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Context {
237 #[inline(always)]
238 fn new_empty() -> Self {
239 Self { bytes: fidl::new_empty!(fidl::encoding::Vector<u8, 8192>, D) }
240 }
241
242 #[inline]
243 unsafe fn decode(
244 &mut self,
245 decoder: &mut fidl::encoding::Decoder<'_, D>,
246 offset: usize,
247 _depth: fidl::encoding::Depth,
248 ) -> fidl::Result<()> {
249 decoder.debug_check_bounds::<Self>(offset);
250 fidl::decode!(fidl::encoding::Vector<u8, 8192>, D, &mut self.bytes, decoder, offset + 0, _depth)?;
252 Ok(())
253 }
254 }
255
256 impl fidl::encoding::ValueTypeMarker for ResolverResolveRequest {
257 type Borrowed<'a> = &'a Self;
258 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
259 value
260 }
261 }
262
263 unsafe impl fidl::encoding::TypeMarker for ResolverResolveRequest {
264 type Owned = Self;
265
266 #[inline(always)]
267 fn inline_align(_context: fidl::encoding::Context) -> usize {
268 8
269 }
270
271 #[inline(always)]
272 fn inline_size(_context: fidl::encoding::Context) -> usize {
273 16
274 }
275 }
276
277 unsafe impl<D: fidl::encoding::ResourceDialect>
278 fidl::encoding::Encode<ResolverResolveRequest, D> for &ResolverResolveRequest
279 {
280 #[inline]
281 unsafe fn encode(
282 self,
283 encoder: &mut fidl::encoding::Encoder<'_, D>,
284 offset: usize,
285 _depth: fidl::encoding::Depth,
286 ) -> fidl::Result<()> {
287 encoder.debug_check_bounds::<ResolverResolveRequest>(offset);
288 fidl::encoding::Encode::<ResolverResolveRequest, D>::encode(
290 (<fidl::encoding::BoundedString<2083> as fidl::encoding::ValueTypeMarker>::borrow(
291 &self.component_url,
292 ),),
293 encoder,
294 offset,
295 _depth,
296 )
297 }
298 }
299 unsafe impl<
300 D: fidl::encoding::ResourceDialect,
301 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<2083>, D>,
302 > fidl::encoding::Encode<ResolverResolveRequest, D> for (T0,)
303 {
304 #[inline]
305 unsafe fn encode(
306 self,
307 encoder: &mut fidl::encoding::Encoder<'_, D>,
308 offset: usize,
309 depth: fidl::encoding::Depth,
310 ) -> fidl::Result<()> {
311 encoder.debug_check_bounds::<ResolverResolveRequest>(offset);
312 self.0.encode(encoder, offset + 0, depth)?;
316 Ok(())
317 }
318 }
319
320 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
321 for ResolverResolveRequest
322 {
323 #[inline(always)]
324 fn new_empty() -> Self {
325 Self { component_url: fidl::new_empty!(fidl::encoding::BoundedString<2083>, D) }
326 }
327
328 #[inline]
329 unsafe fn decode(
330 &mut self,
331 decoder: &mut fidl::encoding::Decoder<'_, D>,
332 offset: usize,
333 _depth: fidl::encoding::Depth,
334 ) -> fidl::Result<()> {
335 decoder.debug_check_bounds::<Self>(offset);
336 fidl::decode!(
338 fidl::encoding::BoundedString<2083>,
339 D,
340 &mut self.component_url,
341 decoder,
342 offset + 0,
343 _depth
344 )?;
345 Ok(())
346 }
347 }
348
349 impl fidl::encoding::ValueTypeMarker for ResolverResolveWithContextRequest {
350 type Borrowed<'a> = &'a Self;
351 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
352 value
353 }
354 }
355
356 unsafe impl fidl::encoding::TypeMarker for ResolverResolveWithContextRequest {
357 type Owned = Self;
358
359 #[inline(always)]
360 fn inline_align(_context: fidl::encoding::Context) -> usize {
361 8
362 }
363
364 #[inline(always)]
365 fn inline_size(_context: fidl::encoding::Context) -> usize {
366 32
367 }
368 }
369
370 unsafe impl<D: fidl::encoding::ResourceDialect>
371 fidl::encoding::Encode<ResolverResolveWithContextRequest, D>
372 for &ResolverResolveWithContextRequest
373 {
374 #[inline]
375 unsafe fn encode(
376 self,
377 encoder: &mut fidl::encoding::Encoder<'_, D>,
378 offset: usize,
379 _depth: fidl::encoding::Depth,
380 ) -> fidl::Result<()> {
381 encoder.debug_check_bounds::<ResolverResolveWithContextRequest>(offset);
382 fidl::encoding::Encode::<ResolverResolveWithContextRequest, D>::encode(
384 (
385 <fidl::encoding::BoundedString<2083> as fidl::encoding::ValueTypeMarker>::borrow(&self.component_url),
386 <Context as fidl::encoding::ValueTypeMarker>::borrow(&self.context),
387 ),
388 encoder, offset, _depth
389 )
390 }
391 }
392 unsafe impl<
393 D: fidl::encoding::ResourceDialect,
394 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<2083>, D>,
395 T1: fidl::encoding::Encode<Context, D>,
396 > fidl::encoding::Encode<ResolverResolveWithContextRequest, D> for (T0, T1)
397 {
398 #[inline]
399 unsafe fn encode(
400 self,
401 encoder: &mut fidl::encoding::Encoder<'_, D>,
402 offset: usize,
403 depth: fidl::encoding::Depth,
404 ) -> fidl::Result<()> {
405 encoder.debug_check_bounds::<ResolverResolveWithContextRequest>(offset);
406 self.0.encode(encoder, offset + 0, depth)?;
410 self.1.encode(encoder, offset + 16, depth)?;
411 Ok(())
412 }
413 }
414
415 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
416 for ResolverResolveWithContextRequest
417 {
418 #[inline(always)]
419 fn new_empty() -> Self {
420 Self {
421 component_url: fidl::new_empty!(fidl::encoding::BoundedString<2083>, D),
422 context: fidl::new_empty!(Context, D),
423 }
424 }
425
426 #[inline]
427 unsafe fn decode(
428 &mut self,
429 decoder: &mut fidl::encoding::Decoder<'_, D>,
430 offset: usize,
431 _depth: fidl::encoding::Depth,
432 ) -> fidl::Result<()> {
433 decoder.debug_check_bounds::<Self>(offset);
434 fidl::decode!(
436 fidl::encoding::BoundedString<2083>,
437 D,
438 &mut self.component_url,
439 decoder,
440 offset + 0,
441 _depth
442 )?;
443 fidl::decode!(Context, D, &mut self.context, decoder, offset + 16, _depth)?;
444 Ok(())
445 }
446 }
447}