~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-27 04:42:41 UTC
  • mfrom: (1092.1.43)
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: aaron.bentley@utoronto.ca-20050827044241-23d676133b9fc981
Merge of robertc@robertcollins.net-20050826013321-52eee1f1da679ee9

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
 
96
 
    wfe = WeaveFormatError
97
105
    l = f.readline()
98
106
    if l != FORMAT_1:
99
107
        raise WeaveFormatError('invalid weave file header: %r' % l)
102
110
    while True:
103
111
        l = f.readline()
104
112
        if l[0] == 'i':
105
 
            ver += 1
106
 
 
107
113
            if len(l) > 2:
108
 
                w._parents.append(frozenset(map(int, l[2:].split(' '))))
 
114
                w._parents.append(map(int, l[2:].split(' ')))
109
115
            else:
110
 
                w._parents.append(frozenset())
 
116
                w._parents.append([])
111
117
 
112
118
            l = f.readline()[:-1]
113
119
            assert l.startswith('1 ')
114
120
            w._sha1s.append(l[2:])
115
121
                
116
122
            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()
117
130
            assert l == '\n'
 
131
 
 
132
            ver += 1
118
133
        elif l == 'w\n':
119
134
            break
120
135
        else:
128
143
            w._weave.append(l[2:])  # include newline
129
144
        elif l.startswith(', '):
130
145
            w._weave.append(l[2:-1])        # exclude newline
 
146
        elif l == '}\n':
 
147
            w._weave.append(('}', None))
131
148
        else:
132
 
            assert l[0] in '{}[]', l
 
149
            assert l[0] in '{[]', l
133
150
            assert l[1] == ' ', l
134
151
            w._weave.append((intern(l[0]), int(l[2:])))
135
152