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
//! A multipart format, in which each part can be compressed independently.
//!
//! # Overview
//!
//! The file is divided in sections. Each section is prefixed by its bytelength, so as to permit
//! skipping a section and/or reading sections concurrently. Each section may be compressed
//! independently, possibly with different compression formats, with the expectation that this
//! will let compressors take best advantage of the distinct structures of each section.
//!
//! (future versions may allow file-wide compression, too)
//!
//! The sections are:
//!
//! 1. the grammar table;
//! 2. the strings table (which contains both strings and identifiers);
//! 3. the representation of the tree.
//!
//! The grammar table lists the AST nodes used in the file. Its primary role is to serve as a lightweight
//! versioning mechanism - for instance, older versions of JS may define a node `Function` with three fields
//! (`body`, `arguments` and optional `name`), while more recent versions of JS may define the same node
//! with *five* fields (`body`, `arguments`, `async`, `generator` and optional `name`). A BinAST file
//! may contain *either* variants of `Function`, depending on when it was created. The grammar table lets recent
//! parsers determine that some fields are omitted and should be replaced by their default value. In fact, a
//! BinAST file could even contain *both* variants of `Function`, for compression purposes. Also, when a
//! parser encounters a grammar table with nodes that either have an unknown name or contain unknown
//! fields, it may decide to reject the file immediately (it doesn't have to, mind you).
//!
//! The strings table lists all strings (including identifiers) in the file. Its primary role is to speed
//! up parsing by making sure that each string only needs to be parsed/checked/atomized once during parsing.
//! Its secondary role is compression.
//!
//! In the current version, the tree is a sequence of tokens. All these tokens are ambiguous and a stream may
//! only be tokenized by a client that knows both the grammar and the grammar table. Specific tokens (lists)
//! contain their byte length, so as to allow skipping them for purposes of lazy parsing and/or concurrent
//! parsing.
//!
//! # Format
//!
//! The entire file is formatted as:
//!
//! - the characters `"BINJS"`;
//! - a container version number (`varnum`, currently `0`);
//! - the compressed grammar table (see below);
//! - the compressed strings table (see below);
//! - the compressed tree (see below).
//!
//! ## Grammar table
//!
//! The grammar table serves to map tagged tuple indices to actual constructions in the JS grammar.
//!
//! - the characters `"[GRAMMAR]"`;
//! - a `prefix` identifying the compression format used for the grammar (one of "identity;", "br;", "gzip;", "compress;", "deflate;").
//! - the number of compressed bytes (`varnum`);
//! - compressed in the format identified by `prefix`:
//!    - the number of entries (`varnum`);
//!    - for each entry,
//!      - byte length of entry (`varnum`);
//!      - one of
//!        - the invalid strings [255, 0] (representing the null interface, only valid if byte length is 2);
//!        - a utf-8 encoded string (utf-8 encoded, `bytelen` bytes, no terminator).
//!
//! ## Strings table
//!
//! The grammar table serves to map tagged tuple indices to strings.
//!
//! - the characters `"[STRINGS]"`;
//! - a `prefix` identifying the compression format used for the grammar (one of "identity;", "br;", "gzip;", "compress;", "deflate;").
//! - the number of compressed bytes (`varnum`);
//! - compressed in the format identified by `prefix`;
//!    - the number of entries (`varnum`);
//!    - for each entry,
//!      - byte length of string (`varnum`);
//!      - one of
//!        - the invalid strings [255, 0] (representing the null string, only valid if byte length is 2);
//!        - a utf-8 encoded string (utf-8 encoded, `bytelen` bytes, no terminator).
//!
//! ## The tree
//!
//! This contains the actual tree for a specific grammar. The file does not contain all the information
//! to determine the nature of next token. Rather, this must be led by the grammar.
//!
//! - the characters `"[TREE]"`;
//! - a `prefix` identifying the compression format used for the grammar (one of "identity;", "br;", "gzip;", "compress;", "deflate;").
//! - the number of compressed bytes (`varnum`);
//! - compressed in the format identified by `prefix`:
//!   - one tree token.
//!
//! ### Tree token
//!
//!  A tree token is defined as one of
//!
//!   - a number of bytes (aka Offset), represented as:
//!     - a `varnum`;
//!   - a null float, represented as:
//!     - a low-endian IEEE764 64-bit floating point value signalling NaN (8 bytes),
//!   - a non-null float, represented as:
//!     - a low-endian IEEE764 64-bit floating point value non-signalling NaN (8 bytes),
//!   - a null boolean, represented as:
//!     -  a single byte with value `2` (one byte);
//!   - a non-null boolean, represented as:
//!     -  a single byte with value `0` (false) or `1` (true) (one byte);
//!   - a string, representing as
//!     - an entry in the table of strings (`varnum`);
//!   - a list, represented as
//!       - number of items (`varnum`);
//!       - for each item
//!          - the token;
//!   - a tagged tuple, represented as
//!     - an entry in the grammar table (`varnum`);
//!     - for each field
//!       - the token

use binjs_shared::SharedString;

use clap;

/// Implementation of the token reader.
mod read;

/// Implementation of the token writer.
mod write;

/// The header of the strings table section.
const HEADER_STRINGS_TABLE: &str = "[STRINGS]";

/// The header of the grammars table section.
const HEADER_GRAMMAR_TABLE: &str = "[GRAMMAR]";

/// The header of the tree section.
const HEADER_TREE: &str = "[TREE]";

/// A trait specifying whether a piece of data needs the addition of a length index.
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};

/// Command-line management.
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))
    };

    // All combinations of options for compression.
    let all_options = {
        use bytes::compress::Compression::*;
        let mut vec = vec![];
        let compressions = [Identity, Gzip, Deflate /*Lzw, Brotli don't work yet*/];
        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");
        }
    }
}