2017-04-27 16:12:57 +02:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use encoder::EncodeContext;
|
|
|
|
use schema::{Lazy, LazySeq};
|
|
|
|
use rustc::ty::TyCtxt;
|
|
|
|
use rustc_serialize::Encodable;
|
|
|
|
|
|
|
|
/// The IsolatedEncoder provides facilities to write to crate metadata while
|
|
|
|
/// making sure that anything going through it is also feed into an ICH hasher.
|
|
|
|
pub struct IsolatedEncoder<'a, 'b: 'a, 'tcx: 'b> {
|
|
|
|
pub tcx: TyCtxt<'b, 'tcx, 'tcx>,
|
|
|
|
ecx: &'a mut EncodeContext<'b, 'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b: 'a, 'tcx: 'b> IsolatedEncoder<'a, 'b, 'tcx> {
|
|
|
|
|
|
|
|
pub fn new(ecx: &'a mut EncodeContext<'b, 'tcx>) -> Self {
|
|
|
|
let tcx = ecx.tcx;
|
|
|
|
IsolatedEncoder {
|
2017-08-06 22:54:09 -07:00
|
|
|
tcx,
|
|
|
|
ecx,
|
2017-04-27 16:12:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy<T>(&mut self, value: &T) -> Lazy<T>
|
2017-11-29 16:28:25 +01:00
|
|
|
where T: Encodable
|
2017-04-27 16:12:57 +02:00
|
|
|
{
|
|
|
|
self.ecx.lazy(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_seq<I, T>(&mut self, iter: I) -> LazySeq<T>
|
|
|
|
where I: IntoIterator<Item = T>,
|
2017-11-29 16:28:25 +01:00
|
|
|
T: Encodable
|
2017-04-27 16:12:57 +02:00
|
|
|
{
|
2017-11-29 16:28:25 +01:00
|
|
|
self.ecx.lazy_seq(iter)
|
2017-04-27 16:12:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_seq_ref<'x, I, T>(&mut self, iter: I) -> LazySeq<T>
|
|
|
|
where I: IntoIterator<Item = &'x T>,
|
2017-11-29 16:28:25 +01:00
|
|
|
T: 'x + Encodable
|
2017-04-27 16:12:57 +02:00
|
|
|
{
|
2017-11-29 16:28:25 +01:00
|
|
|
self.ecx.lazy_seq_ref(iter)
|
2017-04-27 16:12:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_seq_from_slice<T>(&mut self, slice: &[T]) -> LazySeq<T>
|
2017-11-29 16:28:25 +01:00
|
|
|
where T: Encodable
|
2017-04-27 16:12:57 +02:00
|
|
|
{
|
|
|
|
self.ecx.lazy_seq_ref(slice.iter())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_seq_ref_from_slice<T>(&mut self, slice: &[&T]) -> LazySeq<T>
|
2017-11-29 16:28:25 +01:00
|
|
|
where T: Encodable
|
2017-04-27 16:12:57 +02:00
|
|
|
{
|
|
|
|
self.ecx.lazy_seq_ref(slice.iter().map(|x| *x))
|
|
|
|
}
|
|
|
|
}
|