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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
use binjs_shared::SharedString;
use clap;
mod read;
mod write;
const HEADER_STRINGS_TABLE: &str = "[STRINGS]";
const HEADER_GRAMMAR_TABLE: &str = "[GRAMMAR]";
const HEADER_TREE: &str = "[TREE]";
trait FormatInTable {
const HAS_LENGTH_INDEX: bool;
}
impl FormatInTable for Option<SharedString> {
const HAS_LENGTH_INDEX: bool = false;
}
pub use self::read::TreeTokenReader;
pub use self::write::{Statistics, Targets, TreeTokenWriter};
pub struct FormatProvider;
impl ::FormatProvider for FormatProvider {
fn subcommand<'a, 'b>(&self) -> clap::App<'a, 'b> {
use clap::*;
SubCommand::with_name("multipart")
.about("Use the multipart format (default)")
.arg(Arg::with_name("x-inner-compression")
.help("(EXPERIMENTAL) Apply a secondary compression *inside* the file. Used only when compressing.")
.long("x-inner-compression")
.takes_value(true)
.possible_values(&["identity", "gzip", "deflate", "br", "lzw"])
)
.arg(Arg::with_name("x-dump-sections")
.help("(EXPERIMENTAL) Export sections to individual files. Used only when compressing.")
.long("x-dump-sections")
)
}
fn handle_subcommand(
&self,
_spec: &binjs_meta::spec::Spec,
matches: Option<&clap::ArgMatches>,
) -> Result<::Format, ::std::io::Error> {
use bytes::compress::Compression;
use std::cell::RefCell;
use std::rc::Rc;
let stats = Rc::new(RefCell::new(Statistics::default().with_source_bytes(0)));
let compression = matches
.map(|matches| {
Compression::parse(matches.value_of("x-inner-compression"))
.expect("Could not parse x-inner-compression")
})
.unwrap_or(Compression::Identity);
Ok(::Format::Multipart {
targets: Targets {
strings_table: ::CompressionTarget::new(compression.clone()),
grammar_table: ::CompressionTarget::new(compression.clone()),
tree: ::CompressionTarget::new(compression.clone()),
},
stats,
})
}
}
#[test]
fn test_multipart_io() {
println!("Multipart (de)tokenizer test starting");
extern crate env_logger;
extern crate tempdir;
env_logger::init();
use binjs_shared::ast::Path;
use binjs_shared::{FieldName, InterfaceName, SharedString};
use io::{TokenReader, TokenWriterWithTree};
use multipart::*;
use CompressionTarget;
use std::fs;
use std::io::Cursor;
let dir = tempdir::TempDir::new("test_multipart_io").unwrap();
let root = dir.path();
let write_file = |prefix: &str, suffix: &str, contents: &[u8]| {
let path = root.join(format!("{}-{}.binjs", prefix, suffix));
fs::write(&path, contents)
.unwrap_or_else(|e| panic!("Could not write file {:?}: {:?}", path, e))
};
let all_options = {
use bytes::compress::Compression::*;
let mut vec = vec![];
let compressions = [Identity, Gzip, Deflate ];
for grammar_table in &compressions {
for strings_table in &compressions {
for tree in &compressions {
vec.push(Targets {
grammar_table: CompressionTarget::new(grammar_table.clone()),
strings_table: CompressionTarget::new(strings_table.clone()),
tree: CompressionTarget::new(tree.clone()),
});
}
}
}
vec
};
for mut options in all_options {
println!("Options {:?}", options);
let suffix = format!(
"{:?}-{:?}-{:?}",
options.grammar_table, options.strings_table, options.tree
);
let path = Path::new();
{
options.reset();
let mut writer = TreeTokenWriter::new(options.clone());
writer
.string(Some(&SharedString::from_str("simple string")))
.expect("Writing simple string");
let output = writer.done().expect("Finalizing data");
write_file("test-simple-string", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).expect("Creating reader");
let simple_string = reader
.string_at(&path)
.expect("Reading simple string")
.expect("Non-null string");
assert_eq!(&simple_string, "simple string");
}
{
options.reset();
let data = SharedString::from_str("string with escapes \u{0}\u{1}\u{0}");
let mut writer = TreeTokenWriter::new(options.clone());
writer
.string(Some(&data))
.expect("Writing string with escapes");
let output = writer.done().expect("Finalizing data");
write_file("test-string-with-escapes", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).unwrap();
let escapes_string = reader
.string_at(&path)
.expect("Reading string with escapes")
.expect("Non-null string");
assert_eq!(escapes_string, data);
}
println!("Testing tagged tuple I/O");
{
options.reset();
let mut writer = TreeTokenWriter::new(options.clone());
let item_0 = writer.string(Some(&SharedString::from_str("foo"))).unwrap();
let item_1 = writer.string(Some(&SharedString::from_str("bar"))).unwrap();
let item_2 = writer.float(Some(3.1415)).unwrap();
writer
.tagged_tuple(
&InterfaceName::from_str("some tuple"),
&[
(&FieldName::from_str("abc"), item_0),
(&FieldName::from_str("def"), item_1),
(&FieldName::from_str("value"), item_2),
],
)
.expect("Writing trivial tagged tuple");
let output = writer.done().expect("Finalizing data");
write_file("test-simple-tagged-tuple", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).unwrap();
let (name, fields) = reader
.enter_tagged_tuple_at(&path)
.expect("Reading trivial tagged tuple");
assert_eq!(name, "some tuple");
assert_eq!(fields, None);
let simple_string_1 = reader
.string_at(&path)
.expect("Reading trivial tagged tuple[0]")
.expect("Reading a non-null string");
let simple_string_2 = reader
.string_at(&path)
.expect("Reading trivial tagged tuple[1]")
.expect("Reading a non-null string");
let simple_float = reader
.float_at(&path)
.expect("Reading trivial tagged tuple[2]")
.expect("Reading a non-null float");
reader
.exit_tagged_tuple_at(&path)
.expect("Trivial tagged tuple read properly");
assert_eq!(&simple_string_1, "foo");
assert_eq!(&simple_string_2, "bar");
assert_eq!(simple_float, 3.1415);
}
println!("Testing list I/O");
{
options.reset();
let mut writer = TreeTokenWriter::new(options.clone());
writer.list(vec![]).expect("Writing empty list");
let output = writer.done().expect("Finalizing data");
write_file("test-empty-list", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).unwrap();
let len = reader.enter_list_at(&path).expect("Reading empty list");
assert_eq!(len, 0);
reader
.exit_list_at(&path)
.expect("Empty list read properly");
}
{
options.reset();
let mut writer = TreeTokenWriter::new(options.clone());
let item_0 = writer.string(Some(&SharedString::from_str("foo"))).unwrap();
let item_1 = writer.string(Some(&SharedString::from_str("bar"))).unwrap();
writer
.list(vec![item_0, item_1])
.expect("Writing trivial list");
let output = writer.done().expect("Finalizing data");
write_file("test-trivial-list", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).unwrap();
let len = reader.enter_list_at(&path).expect("Reading trivial list");
assert_eq!(len, 2);
let simple_string = reader
.string_at(&path)
.expect("Reading trivial list[0]")
.expect("Non-null string");
assert_eq!(&simple_string, "foo");
let simple_string = reader
.string_at(&path)
.expect("Reading trivial list[1]")
.expect("Non-null string");
assert_eq!(&simple_string, "bar");
reader
.exit_list_at(&path)
.expect("Trivial list read properly");
}
{
options.reset();
let mut writer = TreeTokenWriter::new(options.clone());
let item_0 = writer.string(Some(&SharedString::from_str("foo"))).unwrap();
let item_1 = writer.string(Some(&SharedString::from_str("bar"))).unwrap();
let list = writer
.list(vec![item_0, item_1])
.expect("Writing inner list");
writer.list(vec![list]).expect("Writing outer list");
let output = writer.done().expect("Finalizing data");
write_file("test-nested-lists", &suffix, &output);
let mut reader = TreeTokenReader::new(Cursor::new(&output)).unwrap();
let len = reader.enter_list_at(&path).expect("Reading outer list");
assert_eq!(len, 1);
let len = reader.enter_list_at(&path).expect("Reading inner list");
assert_eq!(len, 2);
let simple_string = reader
.string_at(&path)
.expect("Reading trivial list[0]")
.expect("Non-null string");
assert_eq!(&simple_string, "foo");
let simple_string = reader
.string_at(&path)
.expect("Reading trivial list[1]")
.expect("Non-null string");
assert_eq!(&simple_string, "bar");
reader
.exit_list_at(&path)
.expect("Inner list read properly");
reader
.exit_list_at(&path)
.expect("Inner list read properly");
}
}
}