~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2005-08-18 07:51:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050818075157-5f69075fa843d558
- add space to store revision-id in weave files

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
There is one format marker followed by a blank line, followed by a
27
27
series of version headers, followed by the weave itself.
28
28
 
29
 
Each version marker has 'i' and the included previous versions, then
30
 
'1' and the SHA-1 of the text, if known.  The inclusions do not need
31
 
to list versions included by a parent.
 
29
Each version marker has
 
30
 
 
31
 'i'   parent version indexes
 
32
 '1'   SHA-1 of text
 
33
 'n'   name
 
34
 
 
35
The inclusions do not need to list versions included by a parent.
32
36
 
33
37
The weave is bracketed by 'w' and 'W' lines, and includes the '{}[]'
34
38
processing instructions.  Lines of text are prefixed by '.' if the
39
43
# an iterator returning the weave lines...  We don't really need to
40
44
# deserialize it into memory.
41
45
 
42
 
FORMAT_1 = '# bzr weave file v4\n'
 
46
FORMAT_1 = '# bzr weave file v5\n'
43
47
 
44
48
 
45
49
def write_weave(weave, f, format=None):
46
50
    if format == None or format == 1:
47
 
        return write_weave_v4(weave, f)
 
51
        return write_weave_v5(weave, f)
48
52
    else:
49
53
        raise ValueError("unknown weave format %r" % format)
50
54
 
51
55
 
52
 
def write_weave_v4(weave, f):
 
56
def write_weave_v5(weave, f):
53
57
    """Write weave to file f."""
54
58
    print >>f, FORMAT_1,
55
59
 
64
68
        else:
65
69
            print >>f, 'i'
66
70
        print >>f, '1', weave._sha1s[version]
 
71
        print >>f, 'n', weave._names[version]
67
72
        print >>f
68
73
 
69
74
    print >>f, 'w'
90
95
 
91
96
 
92
97
def read_weave(f):
93
 
    return read_weave_v4(f)
94
 
 
95
 
 
96
 
def read_weave_v4(f):
 
98
    return read_weave_v5(f)
 
99
 
 
100
 
 
101
def read_weave_v5(f):
97
102
    from weave import Weave, WeaveFormatError
98
103
    w = Weave()
99
104
 
106
111
    while True:
107
112
        l = f.readline()
108
113
        if l[0] == 'i':
109
 
            ver += 1
110
 
 
111
114
            if len(l) > 2:
112
115
                w._parents.append(map(int, l[2:].split(' ')))
113
116
            else:
118
121
            w._sha1s.append(l[2:])
119
122
                
120
123
            l = f.readline()
 
124
            assert l.startswith('n ')
 
125
            name = l[2:-1]
 
126
            assert name not in w._name_map
 
127
            w._names.append(name)
 
128
            w._name_map[name] = ver
 
129
                
 
130
            l = f.readline()
121
131
            assert l == '\n'
 
132
 
 
133
            ver += 1
122
134
        elif l == 'w\n':
123
135
            break
124
136
        else: