1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
use core::borrow::Borrow;
use std::collections::HashMap;
use std::fs::{File, OpenOptions};
use std::io::{self, Seek, Write};
use std::path::Path;
use crate::{
AtomicConfig, Config, Constraint, Context, ContextUnit, Element, FixedText, Preamble, Source,
Witness,
};
#[derive(Debug)]
pub struct Encoder<WI, CI, T> {
preamble: Preamble,
witnesses: WI,
constraints: CI,
target: T,
}
impl<WI, CI, T> Encoder<WI, CI, T> {
pub(crate) const fn new(preamble: Preamble, witnesses: WI, constraints: CI, target: T) -> Self {
Self {
preamble,
witnesses,
constraints,
target,
}
}
pub fn into_inner(self) -> T {
self.target
}
}
impl<W, WI, C, CI, T> Encoder<WI, CI, T>
where
W: Borrow<Witness>,
WI: Iterator<Item = W> + ExactSizeIterator,
C: Borrow<Constraint>,
CI: Iterator<Item = C> + ExactSizeIterator,
{
pub fn init_preamble(config: Config, witnesses: &WI, constraints: &CI) -> Preamble {
*Preamble::new()
.with_config(config)
.with_witnesses(witnesses.len())
.with_constraints(constraints.len())
}
}
impl<W, WI, C, CI> Encoder<WI, CI, File>
where
W: Borrow<Witness>,
WI: Iterator<Item = W> + ExactSizeIterator,
C: Borrow<Constraint>,
CI: Iterator<Item = C> + ExactSizeIterator,
{
pub fn init_file<P>(config: Config, witnesses: WI, constraints: CI, path: P) -> io::Result<Self>
where
P: AsRef<Path>,
{
let preamble = Self::init_preamble(config, &witnesses, &constraints);
let len = preamble.source_cache_offset(0);
let file = OpenOptions::new().write(true).create(true).open(path)?;
file.set_len(len as u64)?;
Ok(Self::new(preamble, witnesses, constraints, file))
}
}
impl<W, WI, C, CI, B> Encoder<WI, CI, io::BufWriter<B>>
where
W: Borrow<Witness>,
WI: Iterator<Item = W> + ExactSizeIterator,
C: Borrow<Constraint>,
CI: Iterator<Item = C> + ExactSizeIterator,
B: io::Write + io::Seek,
{
pub fn init_buffer(
config: Config,
witnesses: WI,
constraints: CI,
buffer: B,
) -> io::Result<Self> {
let preamble = Self::init_preamble(config, &witnesses, &constraints);
let len = preamble.source_cache_offset(0);
let mut buffer = io::BufWriter::new(buffer);
let n = buffer
.rewind()
.and_then(|_| buffer.write(&vec![0u8; len]))?;
if n != len {
return Err(io::Error::new(
io::ErrorKind::Other,
format!(
"the target wrote {} bytes instead of the expected {}!",
n, len
),
));
}
Ok(Self::new(preamble, witnesses, constraints, buffer))
}
}
impl<W, WI, C, CI> Encoder<WI, CI, io::Cursor<Vec<u8>>>
where
W: Borrow<Witness>,
WI: Iterator<Item = W> + ExactSizeIterator,
C: Borrow<Constraint>,
CI: Iterator<Item = C> + ExactSizeIterator,
{
pub fn init_cursor(config: Config, witnesses: WI, constraints: CI) -> Self {
let preamble = Self::init_preamble(config, &witnesses, &constraints);
let len = preamble.source_cache_offset(0);
let bytes = vec![0u8; len];
let cursor = io::Cursor::new(bytes);
Self::new(preamble, witnesses, constraints, cursor)
}
}
impl<W, WI, C, CI, T> Encoder<WI, CI, T>
where
W: Borrow<Witness>,
WI: Iterator<Item = W> + ExactSizeIterator,
C: Borrow<Constraint>,
CI: Iterator<Item = C> + ExactSizeIterator,
T: io::Write + io::Seek,
{
#[allow(clippy::too_many_arguments)]
fn write_iter<B, E, I, FID, FP, FO>(
config: &<E as Element>::Config,
preamble: &Preamble,
source_cache: &mut HashMap<FixedText<{ Source::PATH_LEN }>, usize>,
context: &mut ContextUnit,
n: usize,
mut iter: I,
fid: FID,
fp: FP,
fo: FO,
target: &mut T,
) -> io::Result<usize>
where
B: Borrow<E>,
E: Element,
I: Iterator<Item = B>,
FID: Fn(&E) -> usize,
FP: Fn(&E) -> FixedText<{ Source::PATH_LEN }>,
FO: Fn(&Preamble, usize) -> Option<usize>,
{
iter.try_fold(n, |n, l| {
let l = l.borrow();
let id = fid(l);
let path = fp(l);
let source_id = source_cache.len();
let source_id = *source_cache.entry(path).or_insert(source_id);
let ctx = context.with_source_cache_id(source_id);
fo(preamble, id)
.ok_or_else(|| io::Error::new(io::ErrorKind::Other, "failed to calculate offset"))
.map(|ofs| io::SeekFrom::Start(ofs as u64))
.and_then(|ofs| target.seek(ofs))
.and_then(|_| l.try_to_writer(target.by_ref(), config, ctx))
.map(|x| n + x)
})
}
pub fn write_all(&mut self) -> io::Result<usize>
where
W: Borrow<Witness>,
WI: Iterator<Item = W>,
C: Borrow<Constraint>,
CI: Iterator<Item = C>,
{
let preamble = &self.preamble;
let config = &self.preamble.config;
let witnesses = &mut self.witnesses;
let constraints = &mut self.constraints;
let target = &mut self.target;
let context = &mut Context::unit();
let mut source_cache: HashMap<FixedText<{ Source::PATH_LEN }>, usize> = HashMap::new();
let n = preamble.try_to_writer(target.by_ref(), &AtomicConfig, context)?;
let n = Self::write_iter(
config,
preamble,
&mut source_cache,
context,
n,
witnesses,
|w| w.id(),
|w| w.source().path().clone(),
Preamble::witness_offset,
target,
)?;
let n = Self::write_iter(
config,
preamble,
&mut source_cache,
context,
n,
constraints,
|c| c.id(),
|c| c.source().path().clone(),
Preamble::constraint_offset,
target,
)?;
let mut source_cache: Vec<(FixedText<{ Source::PATH_LEN }>, usize)> =
source_cache.into_iter().collect();
source_cache.as_mut_slice().sort_by_key(|x| x.1);
let ofs = preamble.source_cache_offset(0);
let ofs = io::SeekFrom::Start(ofs as u64);
target.seek(ofs)?;
let n = source_cache.into_iter().try_fold(n, |n, (path, _idx)| {
path.try_to_writer(target.by_ref(), config, context)
.map(|x| x + n)
.and_then(|n| target.seek(io::SeekFrom::Start(n as u64)).map(|_| n))
})?;
Ok(n)
}
}