]> git.proxmox.com Git - rustc.git/blame - vendor/rustc-ap-rustc_serialize/src/serialize.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / vendor / rustc-ap-rustc_serialize / src / serialize.rs
CommitLineData
f20569fa
XL
1//! Support code for encoding and decoding types.
2
3/*
4Core encoding and decoding interfaces.
5*/
6
7use std::borrow::Cow;
8use std::cell::{Cell, RefCell};
9use std::marker::PhantomData;
10use std::path;
11use std::rc::Rc;
12use std::sync::Arc;
13
14pub trait Encoder {
15 type Error;
16
17 // Primitive types:
18 fn emit_unit(&mut self) -> Result<(), Self::Error>;
19 fn emit_usize(&mut self, v: usize) -> Result<(), Self::Error>;
20 fn emit_u128(&mut self, v: u128) -> Result<(), Self::Error>;
21 fn emit_u64(&mut self, v: u64) -> Result<(), Self::Error>;
22 fn emit_u32(&mut self, v: u32) -> Result<(), Self::Error>;
23 fn emit_u16(&mut self, v: u16) -> Result<(), Self::Error>;
24 fn emit_u8(&mut self, v: u8) -> Result<(), Self::Error>;
25 fn emit_isize(&mut self, v: isize) -> Result<(), Self::Error>;
26 fn emit_i128(&mut self, v: i128) -> Result<(), Self::Error>;
27 fn emit_i64(&mut self, v: i64) -> Result<(), Self::Error>;
28 fn emit_i32(&mut self, v: i32) -> Result<(), Self::Error>;
29 fn emit_i16(&mut self, v: i16) -> Result<(), Self::Error>;
30 fn emit_i8(&mut self, v: i8) -> Result<(), Self::Error>;
31 fn emit_bool(&mut self, v: bool) -> Result<(), Self::Error>;
32 fn emit_f64(&mut self, v: f64) -> Result<(), Self::Error>;
33 fn emit_f32(&mut self, v: f32) -> Result<(), Self::Error>;
34 fn emit_char(&mut self, v: char) -> Result<(), Self::Error>;
35 fn emit_str(&mut self, v: &str) -> Result<(), Self::Error>;
36
37 // Compound types:
38 #[inline]
39 fn emit_enum<F>(&mut self, _name: &str, f: F) -> Result<(), Self::Error>
40 where
41 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
42 {
43 f(self)
44 }
45
46 fn emit_enum_variant<F>(
47 &mut self,
48 _v_name: &str,
49 v_id: usize,
50 _len: usize,
51 f: F,
52 ) -> Result<(), Self::Error>
53 where
54 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
55 {
56 self.emit_usize(v_id)?;
57 f(self)
58 }
59
60 #[inline]
61 fn emit_enum_variant_arg<F>(&mut self, _a_idx: usize, f: F) -> Result<(), Self::Error>
62 where
63 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
64 {
65 f(self)
66 }
67
68 fn emit_enum_struct_variant<F>(
69 &mut self,
70 v_name: &str,
71 v_id: usize,
72 len: usize,
73 f: F,
74 ) -> Result<(), Self::Error>
75 where
76 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
77 {
78 self.emit_enum_variant(v_name, v_id, len, f)
79 }
80
81 fn emit_enum_struct_variant_field<F>(
82 &mut self,
83 _f_name: &str,
84 f_idx: usize,
85 f: F,
86 ) -> Result<(), Self::Error>
87 where
88 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
89 {
90 self.emit_enum_variant_arg(f_idx, f)
91 }
92
93 #[inline]
94 fn emit_struct<F>(&mut self, _name: &str, _len: usize, f: F) -> Result<(), Self::Error>
95 where
96 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
97 {
98 f(self)
99 }
100
101 #[inline]
102 fn emit_struct_field<F>(
103 &mut self,
104 _f_name: &str,
105 _f_idx: usize,
106 f: F,
107 ) -> Result<(), Self::Error>
108 where
109 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
110 {
111 f(self)
112 }
113
114 #[inline]
115 fn emit_tuple<F>(&mut self, _len: usize, f: F) -> Result<(), Self::Error>
116 where
117 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
118 {
119 f(self)
120 }
121
122 #[inline]
123 fn emit_tuple_arg<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error>
124 where
125 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
126 {
127 f(self)
128 }
129
130 fn emit_tuple_struct<F>(&mut self, _name: &str, len: usize, f: F) -> Result<(), Self::Error>
131 where
132 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
133 {
134 self.emit_tuple(len, f)
135 }
136
137 fn emit_tuple_struct_arg<F>(&mut self, f_idx: usize, f: F) -> Result<(), Self::Error>
138 where
139 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
140 {
141 self.emit_tuple_arg(f_idx, f)
142 }
143
144 // Specialized types:
145 fn emit_option<F>(&mut self, f: F) -> Result<(), Self::Error>
146 where
147 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
148 {
149 self.emit_enum("Option", f)
150 }
151
152 #[inline]
153 fn emit_option_none(&mut self) -> Result<(), Self::Error> {
154 self.emit_enum_variant("None", 0, 0, |_| Ok(()))
155 }
156
157 fn emit_option_some<F>(&mut self, f: F) -> Result<(), Self::Error>
158 where
159 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
160 {
161 self.emit_enum_variant("Some", 1, 1, f)
162 }
163
164 fn emit_seq<F>(&mut self, len: usize, f: F) -> Result<(), Self::Error>
165 where
166 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
167 {
168 self.emit_usize(len)?;
169 f(self)
170 }
171
172 #[inline]
173 fn emit_seq_elt<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error>
174 where
175 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
176 {
177 f(self)
178 }
179
180 fn emit_map<F>(&mut self, len: usize, f: F) -> Result<(), Self::Error>
181 where
182 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
183 {
184 self.emit_usize(len)?;
185 f(self)
186 }
187
188 #[inline]
189 fn emit_map_elt_key<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error>
190 where
191 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
192 {
193 f(self)
194 }
195
196 #[inline]
197 fn emit_map_elt_val<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error>
198 where
199 F: FnOnce(&mut Self) -> Result<(), Self::Error>,
200 {
201 f(self)
202 }
203}
204
205pub trait Decoder {
206 type Error;
207
208 // Primitive types:
209 fn read_nil(&mut self) -> Result<(), Self::Error>;
210 fn read_usize(&mut self) -> Result<usize, Self::Error>;
211 fn read_u128(&mut self) -> Result<u128, Self::Error>;
212 fn read_u64(&mut self) -> Result<u64, Self::Error>;
213 fn read_u32(&mut self) -> Result<u32, Self::Error>;
214 fn read_u16(&mut self) -> Result<u16, Self::Error>;
215 fn read_u8(&mut self) -> Result<u8, Self::Error>;
216 fn read_isize(&mut self) -> Result<isize, Self::Error>;
217 fn read_i128(&mut self) -> Result<i128, Self::Error>;
218 fn read_i64(&mut self) -> Result<i64, Self::Error>;
219 fn read_i32(&mut self) -> Result<i32, Self::Error>;
220 fn read_i16(&mut self) -> Result<i16, Self::Error>;
221 fn read_i8(&mut self) -> Result<i8, Self::Error>;
222 fn read_bool(&mut self) -> Result<bool, Self::Error>;
223 fn read_f64(&mut self) -> Result<f64, Self::Error>;
224 fn read_f32(&mut self) -> Result<f32, Self::Error>;
225 fn read_char(&mut self) -> Result<char, Self::Error>;
226 fn read_str(&mut self) -> Result<Cow<'_, str>, Self::Error>;
227
228 // Compound types:
229 #[inline]
230 fn read_enum<T, F>(&mut self, _name: &str, f: F) -> Result<T, Self::Error>
231 where
232 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
233 {
234 f(self)
235 }
236
237 #[inline]
238 fn read_enum_variant<T, F>(&mut self, _names: &[&str], mut f: F) -> Result<T, Self::Error>
239 where
240 F: FnMut(&mut Self, usize) -> Result<T, Self::Error>,
241 {
242 let disr = self.read_usize()?;
243 f(self, disr)
244 }
245
246 #[inline]
247 fn read_enum_variant_arg<T, F>(&mut self, _a_idx: usize, f: F) -> Result<T, Self::Error>
248 where
249 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
250 {
251 f(self)
252 }
253
254 fn read_enum_struct_variant<T, F>(&mut self, names: &[&str], f: F) -> Result<T, Self::Error>
255 where
256 F: FnMut(&mut Self, usize) -> Result<T, Self::Error>,
257 {
258 self.read_enum_variant(names, f)
259 }
260
261 fn read_enum_struct_variant_field<T, F>(
262 &mut self,
263 _f_name: &str,
264 f_idx: usize,
265 f: F,
266 ) -> Result<T, Self::Error>
267 where
268 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
269 {
270 self.read_enum_variant_arg(f_idx, f)
271 }
272
273 #[inline]
274 fn read_struct<T, F>(&mut self, _s_name: &str, _len: usize, f: F) -> Result<T, Self::Error>
275 where
276 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
277 {
278 f(self)
279 }
280
281 #[inline]
282 fn read_struct_field<T, F>(
283 &mut self,
284 _f_name: &str,
285 _f_idx: usize,
286 f: F,
287 ) -> Result<T, Self::Error>
288 where
289 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
290 {
291 f(self)
292 }
293
294 #[inline]
295 fn read_tuple<T, F>(&mut self, _len: usize, f: F) -> Result<T, Self::Error>
296 where
297 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
298 {
299 f(self)
300 }
301
302 #[inline]
303 fn read_tuple_arg<T, F>(&mut self, _a_idx: usize, f: F) -> Result<T, Self::Error>
304 where
305 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
306 {
307 f(self)
308 }
309
310 fn read_tuple_struct<T, F>(&mut self, _s_name: &str, len: usize, f: F) -> Result<T, Self::Error>
311 where
312 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
313 {
314 self.read_tuple(len, f)
315 }
316
317 fn read_tuple_struct_arg<T, F>(&mut self, a_idx: usize, f: F) -> Result<T, Self::Error>
318 where
319 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
320 {
321 self.read_tuple_arg(a_idx, f)
322 }
323
324 // Specialized types:
325 fn read_option<T, F>(&mut self, mut f: F) -> Result<T, Self::Error>
326 where
327 F: FnMut(&mut Self, bool) -> Result<T, Self::Error>,
328 {
329 self.read_enum("Option", move |this| {
330 this.read_enum_variant(&["None", "Some"], move |this, idx| match idx {
331 0 => f(this, false),
332 1 => f(this, true),
333 _ => Err(this.error("read_option: expected 0 for None or 1 for Some")),
334 })
335 })
336 }
337
338 fn read_seq<T, F>(&mut self, f: F) -> Result<T, Self::Error>
339 where
340 F: FnOnce(&mut Self, usize) -> Result<T, Self::Error>,
341 {
342 let len = self.read_usize()?;
343 f(self, len)
344 }
345
346 #[inline]
347 fn read_seq_elt<T, F>(&mut self, _idx: usize, f: F) -> Result<T, Self::Error>
348 where
349 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
350 {
351 f(self)
352 }
353
354 fn read_map<T, F>(&mut self, f: F) -> Result<T, Self::Error>
355 where
356 F: FnOnce(&mut Self, usize) -> Result<T, Self::Error>,
357 {
358 let len = self.read_usize()?;
359 f(self, len)
360 }
361
362 #[inline]
363 fn read_map_elt_key<T, F>(&mut self, _idx: usize, f: F) -> Result<T, Self::Error>
364 where
365 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
366 {
367 f(self)
368 }
369
370 #[inline]
371 fn read_map_elt_val<T, F>(&mut self, _idx: usize, f: F) -> Result<T, Self::Error>
372 where
373 F: FnOnce(&mut Self) -> Result<T, Self::Error>,
374 {
375 f(self)
376 }
377
378 // Failure
379 fn error(&mut self, err: &str) -> Self::Error;
380}
381
382/// Trait for types that can be serialized
383///
384/// This can be implemented using the `Encodable`, `TyEncodable` and
385/// `MetadataEncodable` macros.
386///
387/// * `Encodable` should be used in crates that don't depend on
388/// `rustc_middle`.
389/// * `MetadataEncodable` is used in `rustc_metadata` for types that contain
390/// `rustc_metadata::rmeta::Lazy`.
391/// * `TyEncodable` should be used for types that are only serialized in crate
392/// metadata or the incremental cache. This is most types in `rustc_middle`.
393pub trait Encodable<S: Encoder> {
394 fn encode(&self, s: &mut S) -> Result<(), S::Error>;
395}
396
397/// Trait for types that can be deserialized
398///
399/// This can be implemented using the `Decodable`, `TyDecodable` and
400/// `MetadataDecodable` macros.
401///
402/// * `Decodable` should be used in crates that don't depend on
403/// `rustc_middle`.
404/// * `MetadataDecodable` is used in `rustc_metadata` for types that contain
405/// `rustc_metadata::rmeta::Lazy`.
406/// * `TyDecodable` should be used for types that are only serialized in crate
407/// metadata or the incremental cache. This is most types in `rustc_middle`.
408pub trait Decodable<D: Decoder>: Sized {
409 fn decode(d: &mut D) -> Result<Self, D::Error>;
410}
411
412macro_rules! direct_serialize_impls {
413 ($($ty:ident $emit_method:ident $read_method:ident),*) => {
414 $(
415 impl<S: Encoder> Encodable<S> for $ty {
416 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
417 s.$emit_method(*self)
418 }
419 }
420
421 impl<D: Decoder> Decodable<D> for $ty {
422 fn decode(d: &mut D) -> Result<$ty, D::Error> {
423 d.$read_method()
424 }
425 }
426 )*
427 }
428}
429
430direct_serialize_impls! {
431 usize emit_usize read_usize,
432 u8 emit_u8 read_u8,
433 u16 emit_u16 read_u16,
434 u32 emit_u32 read_u32,
435 u64 emit_u64 read_u64,
436 u128 emit_u128 read_u128,
437 isize emit_isize read_isize,
438 i8 emit_i8 read_i8,
439 i16 emit_i16 read_i16,
440 i32 emit_i32 read_i32,
441 i64 emit_i64 read_i64,
442 i128 emit_i128 read_i128,
443 f32 emit_f32 read_f32,
444 f64 emit_f64 read_f64,
445 bool emit_bool read_bool,
446 char emit_char read_char
447}
448
449impl<S: Encoder> Encodable<S> for ::std::num::NonZeroU32 {
450 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
451 s.emit_u32(self.get())
452 }
453}
454
455impl<D: Decoder> Decodable<D> for ::std::num::NonZeroU32 {
456 fn decode(d: &mut D) -> Result<Self, D::Error> {
457 d.read_u32().map(|d| ::std::num::NonZeroU32::new(d).unwrap())
458 }
459}
460
461impl<S: Encoder> Encodable<S> for str {
462 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
463 s.emit_str(self)
464 }
465}
466
467impl<S: Encoder> Encodable<S> for &str {
468 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
469 s.emit_str(self)
470 }
471}
472
473impl<S: Encoder> Encodable<S> for String {
474 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
475 s.emit_str(&self[..])
476 }
477}
478
479impl<D: Decoder> Decodable<D> for String {
480 fn decode(d: &mut D) -> Result<String, D::Error> {
481 Ok(d.read_str()?.into_owned())
482 }
483}
484
485impl<S: Encoder> Encodable<S> for () {
486 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
487 s.emit_unit()
488 }
489}
490
491impl<D: Decoder> Decodable<D> for () {
492 fn decode(d: &mut D) -> Result<(), D::Error> {
493 d.read_nil()
494 }
495}
496
497impl<S: Encoder, T> Encodable<S> for PhantomData<T> {
498 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
499 s.emit_unit()
500 }
501}
502
503impl<D: Decoder, T> Decodable<D> for PhantomData<T> {
504 fn decode(d: &mut D) -> Result<PhantomData<T>, D::Error> {
505 d.read_nil()?;
506 Ok(PhantomData)
507 }
508}
509
510impl<D: Decoder, T: Decodable<D>> Decodable<D> for Box<[T]> {
511 fn decode(d: &mut D) -> Result<Box<[T]>, D::Error> {
512 let v: Vec<T> = Decodable::decode(d)?;
513 Ok(v.into_boxed_slice())
514 }
515}
516
517impl<S: Encoder, T: Encodable<S>> Encodable<S> for Rc<T> {
518 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
519 (**self).encode(s)
520 }
521}
522
523impl<D: Decoder, T: Decodable<D>> Decodable<D> for Rc<T> {
524 fn decode(d: &mut D) -> Result<Rc<T>, D::Error> {
525 Ok(Rc::new(Decodable::decode(d)?))
526 }
527}
528
529impl<S: Encoder, T: Encodable<S>> Encodable<S> for [T] {
530 default fn encode(&self, s: &mut S) -> Result<(), S::Error> {
531 s.emit_seq(self.len(), |s| {
532 for (i, e) in self.iter().enumerate() {
533 s.emit_seq_elt(i, |s| e.encode(s))?
534 }
535 Ok(())
536 })
537 }
538}
539
540impl<S: Encoder, T: Encodable<S>> Encodable<S> for Vec<T> {
541 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
542 let slice: &[T] = self;
543 slice.encode(s)
544 }
545}
546
547impl<D: Decoder, T: Decodable<D>> Decodable<D> for Vec<T> {
548 default fn decode(d: &mut D) -> Result<Vec<T>, D::Error> {
549 d.read_seq(|d, len| {
550 let mut v = Vec::with_capacity(len);
551 for i in 0..len {
552 v.push(d.read_seq_elt(i, |d| Decodable::decode(d))?);
553 }
554 Ok(v)
555 })
556 }
557}
558
559impl<S: Encoder, T: Encodable<S>, const N: usize> Encodable<S> for [T; N] {
560 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
561 let slice: &[T] = self;
562 slice.encode(s)
563 }
564}
565
566impl<D: Decoder, const N: usize> Decodable<D> for [u8; N] {
567 fn decode(d: &mut D) -> Result<[u8; N], D::Error> {
568 d.read_seq(|d, len| {
569 assert!(len == N);
570 let mut v = [0u8; N];
571 for i in 0..len {
572 v[i] = d.read_seq_elt(i, |d| Decodable::decode(d))?;
573 }
574 Ok(v)
575 })
576 }
577}
578
579impl<'a, S: Encoder, T: Encodable<S>> Encodable<S> for Cow<'a, [T]>
580where
581 [T]: ToOwned<Owned = Vec<T>>,
582{
583 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
584 let slice: &[T] = self;
585 slice.encode(s)
586 }
587}
588
589impl<D: Decoder, T: Decodable<D> + ToOwned> Decodable<D> for Cow<'static, [T]>
590where
591 [T]: ToOwned<Owned = Vec<T>>,
592{
593 fn decode(d: &mut D) -> Result<Cow<'static, [T]>, D::Error> {
594 let v: Vec<T> = Decodable::decode(d)?;
595 Ok(Cow::Owned(v))
596 }
597}
598
599impl<S: Encoder, T: Encodable<S>> Encodable<S> for Option<T> {
600 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
601 s.emit_option(|s| match *self {
602 None => s.emit_option_none(),
603 Some(ref v) => s.emit_option_some(|s| v.encode(s)),
604 })
605 }
606}
607
608impl<D: Decoder, T: Decodable<D>> Decodable<D> for Option<T> {
609 fn decode(d: &mut D) -> Result<Option<T>, D::Error> {
610 d.read_option(|d, b| if b { Ok(Some(Decodable::decode(d)?)) } else { Ok(None) })
611 }
612}
613
614impl<S: Encoder, T1: Encodable<S>, T2: Encodable<S>> Encodable<S> for Result<T1, T2> {
615 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
616 s.emit_enum("Result", |s| match *self {
617 Ok(ref v) => {
618 s.emit_enum_variant("Ok", 0, 1, |s| s.emit_enum_variant_arg(0, |s| v.encode(s)))
619 }
620 Err(ref v) => {
621 s.emit_enum_variant("Err", 1, 1, |s| s.emit_enum_variant_arg(0, |s| v.encode(s)))
622 }
623 })
624 }
625}
626
627impl<D: Decoder, T1: Decodable<D>, T2: Decodable<D>> Decodable<D> for Result<T1, T2> {
628 fn decode(d: &mut D) -> Result<Result<T1, T2>, D::Error> {
629 d.read_enum("Result", |d| {
630 d.read_enum_variant(&["Ok", "Err"], |d, disr| match disr {
631 0 => Ok(Ok(d.read_enum_variant_arg(0, |d| T1::decode(d))?)),
632 1 => Ok(Err(d.read_enum_variant_arg(0, |d| T2::decode(d))?)),
633 _ => {
634 panic!(
635 "Encountered invalid discriminant while \
636 decoding `Result`."
637 );
638 }
639 })
640 })
641 }
642}
643
644macro_rules! peel {
645 ($name:ident, $($other:ident,)*) => (tuple! { $($other,)* })
646}
647
648/// Evaluates to the number of tokens passed to it.
649///
650/// Logarithmic counting: every one or two recursive expansions, the number of
651/// tokens to count is divided by two, instead of being reduced by one.
652/// Therefore, the recursion depth is the binary logarithm of the number of
653/// tokens to count, and the expanded tree is likewise very small.
654macro_rules! count {
655 () => (0usize);
656 ($one:tt) => (1usize);
657 ($($pairs:tt $_p:tt)*) => (count!($($pairs)*) << 1usize);
658 ($odd:tt $($rest:tt)*) => (count!($($rest)*) | 1usize);
659}
660
661macro_rules! tuple {
662 () => ();
663 ( $($name:ident,)+ ) => (
664 impl<D: Decoder, $($name: Decodable<D>),+> Decodable<D> for ($($name,)+) {
665 #[allow(non_snake_case)]
666 fn decode(d: &mut D) -> Result<($($name,)+), D::Error> {
667 let len: usize = count!($($name)+);
668 d.read_tuple(len, |d| {
669 let mut i = 0;
670 let ret = ($(d.read_tuple_arg({ i+=1; i-1 }, |d| -> Result<$name, D::Error> {
671 Decodable::decode(d)
672 })?,)+);
673 Ok(ret)
674 })
675 }
676 }
677 impl<S: Encoder, $($name: Encodable<S>),+> Encodable<S> for ($($name,)+) {
678 #[allow(non_snake_case)]
679 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
680 let ($(ref $name,)+) = *self;
681 let mut n = 0;
682 $(let $name = $name; n += 1;)+
683 s.emit_tuple(n, |s| {
684 let mut i = 0;
685 $(s.emit_tuple_arg({ i+=1; i-1 }, |s| $name.encode(s))?;)+
686 Ok(())
687 })
688 }
689 }
690 peel! { $($name,)+ }
691 )
692}
693
694tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
695
696impl<S: Encoder> Encodable<S> for path::Path {
697 fn encode(&self, e: &mut S) -> Result<(), S::Error> {
698 self.to_str().unwrap().encode(e)
699 }
700}
701
702impl<S: Encoder> Encodable<S> for path::PathBuf {
703 fn encode(&self, e: &mut S) -> Result<(), S::Error> {
704 path::Path::encode(self, e)
705 }
706}
707
708impl<D: Decoder> Decodable<D> for path::PathBuf {
709 fn decode(d: &mut D) -> Result<path::PathBuf, D::Error> {
710 let bytes: String = Decodable::decode(d)?;
711 Ok(path::PathBuf::from(bytes))
712 }
713}
714
715impl<S: Encoder, T: Encodable<S> + Copy> Encodable<S> for Cell<T> {
716 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
717 self.get().encode(s)
718 }
719}
720
721impl<D: Decoder, T: Decodable<D> + Copy> Decodable<D> for Cell<T> {
722 fn decode(d: &mut D) -> Result<Cell<T>, D::Error> {
723 Ok(Cell::new(Decodable::decode(d)?))
724 }
725}
726
727// FIXME: #15036
728// Should use `try_borrow`, returning a
729// `encoder.error("attempting to Encode borrowed RefCell")`
730// from `encode` when `try_borrow` returns `None`.
731
732impl<S: Encoder, T: Encodable<S>> Encodable<S> for RefCell<T> {
733 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
734 self.borrow().encode(s)
735 }
736}
737
738impl<D: Decoder, T: Decodable<D>> Decodable<D> for RefCell<T> {
739 fn decode(d: &mut D) -> Result<RefCell<T>, D::Error> {
740 Ok(RefCell::new(Decodable::decode(d)?))
741 }
742}
743
744impl<S: Encoder, T: Encodable<S>> Encodable<S> for Arc<T> {
745 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
746 (**self).encode(s)
747 }
748}
749
750impl<D: Decoder, T: Decodable<D>> Decodable<D> for Arc<T> {
751 fn decode(d: &mut D) -> Result<Arc<T>, D::Error> {
752 Ok(Arc::new(Decodable::decode(d)?))
753 }
754}
755
756impl<S: Encoder, T: ?Sized + Encodable<S>> Encodable<S> for Box<T> {
757 fn encode(&self, s: &mut S) -> Result<(), S::Error> {
758 (**self).encode(s)
759 }
760}
761impl<D: Decoder, T: Decodable<D>> Decodable<D> for Box<T> {
762 fn decode(d: &mut D) -> Result<Box<T>, D::Error> {
763 Ok(box Decodable::decode(d)?)
764 }
765}