~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

Exclude more files from dumb-rsync upload

Show diffs side-by-side

added added

removed removed

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