~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2005-08-12 15:24:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050812152419-8f65f048a739f44d
- add revert command to tutorial

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
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.
 
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.
36
32
 
37
33
The weave is bracketed by 'w' and 'W' lines, and includes the '{}[]'
38
34
processing instructions.  Lines of text are prefixed by '.' if the
40
36
"""
41
37
 
42
38
# TODO: When extracting a single version it'd be enough to just pass
43
 
# an iterator returning the weave lines...  We don't really need to
44
 
# deserialize it into memory.
 
39
# an iterator returning the weave lines...
45
40
 
46
 
FORMAT_1 = '# bzr weave file v5\n'
 
41
FORMAT_1 = '# bzr weave file v3\n'
47
42
 
48
43
 
49
44
def write_weave(weave, f, format=None):
50
45
    if format == None or format == 1:
51
 
        return write_weave_v5(weave, f)
 
46
        return write_weave_v1(weave, f)
52
47
    else:
53
48
        raise ValueError("unknown weave format %r" % format)
54
49
 
55
50
 
56
 
def write_weave_v5(weave, f):
 
51
def write_weave_v1(weave, f):
57
52
    """Write weave to file f."""
58
53
    print >>f, FORMAT_1,
59
54
 
68
63
        else:
69
64
            print >>f, 'i'
70
65
        print >>f, '1', weave._sha1s[version]
71
 
        print >>f, 'n', weave._names[version]
72
66
        print >>f
73
67
 
74
68
    print >>f, 'w'
76
70
    for l in weave._weave:
77
71
        if isinstance(l, tuple):
78
72
            assert l[0] in '{}[]'
79
 
            if l[0] == '}':
80
 
                print >>f, '}'
81
 
            else:
82
 
                print >>f, '%s %d' % l
 
73
            print >>f, '%s %d' % l
83
74
        else: # text line
84
75
            if not l:
85
76
                print >>f, ', '
95
86
 
96
87
 
97
88
def read_weave(f):
98
 
    return read_weave_v5(f)
99
 
 
100
 
 
101
 
def read_weave_v5(f):
 
89
    return read_weave_v1(f)
 
90
 
 
91
 
 
92
def read_weave_v1(f):
102
93
    from weave import Weave, WeaveFormatError
103
94
    w = Weave()
104
95
 
 
96
    wfe = WeaveFormatError
105
97
    l = f.readline()
106
98
    if l != FORMAT_1:
107
99
        raise WeaveFormatError('invalid weave file header: %r' % l)
110
102
    while True:
111
103
        l = f.readline()
112
104
        if l[0] == 'i':
 
105
            ver += 1
 
106
 
113
107
            if len(l) > 2:
114
 
                w._parents.append(map(int, l[2:].split(' ')))
 
108
                w._parents.append(frozenset(map(int, l[2:].split(' '))))
115
109
            else:
116
 
                w._parents.append([])
 
110
                w._parents.append(frozenset())
117
111
 
118
112
            l = f.readline()[:-1]
119
113
            assert l.startswith('1 ')
120
114
            w._sha1s.append(l[2:])
121
115
                
122
116
            l = f.readline()
123
 
            assert l.startswith('n ')
124
 
            name = l[2:-1]
125
 
            assert name not in w._name_map
126
 
            w._names.append(name)
127
 
            w._name_map[name] = ver
128
 
                
129
 
            l = f.readline()
130
117
            assert l == '\n'
131
 
 
132
 
            ver += 1
133
118
        elif l == 'w\n':
134
119
            break
135
120
        else:
143
128
            w._weave.append(l[2:])  # include newline
144
129
        elif l.startswith(', '):
145
130
            w._weave.append(l[2:-1])        # exclude newline
146
 
        elif l == '}\n':
147
 
            w._weave.append(('}', None))
148
131
        else:
149
 
            assert l[0] in '{[]', l
 
132
            assert l[0] in '{}[]', l
150
133
            assert l[1] == ' ', l
151
134
            w._weave.append((intern(l[0]), int(l[2:])))
152
135