~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2005-08-24 00:34:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050824003421-33dd8e5c739cad2a
- send trace messages out through python logging module

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