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
//! Implement Weave deltas, inspired by SCCS.
//!
//! Although not much remains of the SCCS revision control system, it's "weave" delta format turns
//! out to be a good way of representing multiple versions of data that differ only in parts.
//!
//! This package implements a weave-based storage of "plain text", where plain text consists of
//! lines of UTF-8 printable characters separated by a newline.
//!
//! The format is similar to SCCS, but with no constraints to keep what are relatively poor design
//! decisions from SCCS, such as putting a checksum at the top of the file, and using limited-sized
//! field for values such as the number of lines in a file, or the use of 2-digit years. However,
//! the main body of the weaved file, that which describes inserts and deletes is the same, and
//! allows us to test this version by comparing with the storage of sccs.
//!
//! Writing an initial weave works as a regular file writer. The file itself has a small amount of
//! surrounding meta-data, but is otherwise mostly just the contents of the initial file.
//!
//! Adding a delta to a weave file requires extracting a base version that the delta will be made
//! against (the base does not need to be the tip version, allowing for branches). This crate will
//! need to make several temporary files.
extern crate error_chain;
extern crate derive_error_chain;
extern crate log;
extern crate chrono;
extern crate flate2;
extern crate regex;
extern crate serde;
extern crate serde_json;
extern crate serde_derive;
pub use NamingConvention;
pub use ;
pub use ;
pub use ;
pub use NewWeave;
pub use DeltaWriter;
pub use ;
use Write;
use PathBuf;
/// Something we can write into, that remembers its name. The writer is boxed because the writer
/// may be compressed.
/// Read the header from a weave file.
/// Retrieve the last delta in the weave file. Will panic if the weave file is malformed and
/// contains no revisions.
/// A null sink that does nothing, useful for parsing the header.
;