~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2006-01-06 01:13:05 UTC
  • mfrom: (1534.1.4 integration)
  • Revision ID: mbp@sourcefrog.net-20060106011305-3772285d84b5cbb4
[merge] robertc

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
 
55
 
    for version, included in enumerate(weave._v):
 
58
    for version, included in enumerate(weave._parents):
56
59
        if included:
57
 
            # find a minimal expression of it; bias towards using
58
 
            # later revisions
59
 
            li = list(included)
60
 
            li.sort()
61
 
            li.reverse()
62
 
 
63
 
            mininc = []
64
 
            gotit = set()
65
 
 
66
 
            for pv in li:
67
 
                if pv not in gotit:
68
 
                    mininc.append(pv)
69
 
                    gotit.update(weave._v[pv])
70
 
 
71
 
            assert mininc[0] >= 0
72
 
            assert mininc[-1] < version
 
60
            # mininc = weave.minimal_parents(version)
 
61
            mininc = included
73
62
            print >>f, 'i',
74
63
            for i in mininc:
75
64
                print >>f, i,
77
66
        else:
78
67
            print >>f, 'i'
79
68
        print >>f, '1', weave._sha1s[version]
 
69
        print >>f, 'n', weave._names[version]
80
70
        print >>f
81
71
 
82
72
    print >>f, 'w'
83
73
 
84
 
    for l in weave._l:
 
74
    for l in weave._weave:
85
75
        if isinstance(l, tuple):
86
76
            assert l[0] in '{}[]'
87
 
            print >>f, '%s %d' % l
 
77
            if l[0] == '}':
 
78
                print >>f, '}'
 
79
            else:
 
80
                print >>f, '%s %d' % l
88
81
        else: # text line
89
82
            if not l:
90
83
                print >>f, ', '
99
92
 
100
93
 
101
94
 
102
 
def read_weave(f):
103
 
    return read_weave_v1(f)
104
 
 
105
 
 
106
 
def read_weave_v1(f):
 
95
def read_weave(f,prelude=False):
 
96
    return read_weave_v5(f,prelude=prelude)
 
97
 
 
98
 
 
99
def read_weave_v5(f,prelude=False):
107
100
    from weave import Weave, WeaveFormatError
108
 
    w = Weave()
 
101
    w = Weave(getattr(f, 'name', None))
109
102
 
110
 
    wfe = WeaveFormatError
111
103
    l = f.readline()
112
104
    if l != FORMAT_1:
113
105
        raise WeaveFormatError('invalid weave file header: %r' % l)
116
108
    while True:
117
109
        l = f.readline()
118
110
        if l[0] == 'i':
119
 
            ver += 1
120
 
 
121
111
            if len(l) > 2:
122
 
                included = map(int, l[2:].split(' '))
123
 
                full = set()
124
 
                for pv in included:
125
 
                    full.add(pv)
126
 
                    full.update(w._v[pv])
127
 
                w._addversion(full)
 
112
                w._parents.append(map(int, l[2:].split(' ')))
128
113
            else:
129
 
                w._addversion(None)
 
114
                w._parents.append([])
130
115
 
131
116
            l = f.readline()[:-1]
132
117
            assert l.startswith('1 ')
133
118
            w._sha1s.append(l[2:])
134
119
                
135
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()
136
128
            assert l == '\n'
 
129
 
 
130
            ver += 1
137
131
        elif l == 'w\n':
138
132
            break
139
133
        else:
140
134
            raise WeaveFormatError('unexpected line %r' % l)
141
135
 
 
136
    if prelude:
 
137
        return w
 
138
 
142
139
    while True:
143
140
        l = f.readline()
144
141
        if l == 'W\n':
145
142
            break
146
143
        elif l.startswith('. '):
147
 
            w._l.append(intern(l[2:]))  # include newline
 
144
            w._weave.append(l[2:])  # include newline
148
145
        elif l.startswith(', '):
149
 
            w._l.append(l[2:-1])        # exclude newline
 
146
            w._weave.append(l[2:-1])        # exclude newline
 
147
        elif l == '}\n':
 
148
            w._weave.append(('}', None))
150
149
        else:
151
 
            assert l[0] in '{}[]', l
 
150
            assert l[0] in '{[]', l
152
151
            assert l[1] == ' ', l
153
 
            w._l.append((intern(l[0]), int(l[2:])))
 
152
            w._weave.append((intern(l[0]), int(l[2:])))
154
153
 
155
154
    return w
156
155