~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Robert Collins
  • Date: 2005-08-23 06:52:09 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050823065209-81cd5962c401751b
move io redirection into each test case from the global runner

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
 
 
3
# Copyright (C) 2005 Canonical Ltd
 
4
 
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
 
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
 
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
# Author: Martin Pool <mbp@canonical.com>
 
20
 
 
21
 
 
22
 
 
23
 
 
24
"""Store and retrieve weaves in files.
 
25
 
 
26
There is one format marker followed by a blank line, followed by a
 
27
series of version headers, followed by the weave itself.
 
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.
 
36
 
 
37
The weave is bracketed by 'w' and 'W' lines, and includes the '{}[]'
 
38
processing instructions.  Lines of text are prefixed by '.' if the
 
39
line contains a newline, or ',' if not.
 
40
"""
 
41
 
 
42
# 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.
 
45
 
 
46
FORMAT_1 = '# bzr weave file v5\n'
 
47
 
 
48
 
 
49
def write_weave(weave, f, format=None):
 
50
    if format == None or format == 1:
 
51
        return write_weave_v5(weave, f)
 
52
    else:
 
53
        raise ValueError("unknown weave format %r" % format)
 
54
 
 
55
 
 
56
def write_weave_v5(weave, f):
 
57
    """Write weave to file f."""
 
58
    print >>f, FORMAT_1,
 
59
 
 
60
    for version, included in enumerate(weave._parents):
 
61
        if included:
 
62
            # mininc = weave.minimal_parents(version)
 
63
            mininc = included
 
64
            print >>f, 'i',
 
65
            for i in mininc:
 
66
                print >>f, i,
 
67
            print >>f
 
68
        else:
 
69
            print >>f, 'i'
 
70
        print >>f, '1', weave._sha1s[version]
 
71
        print >>f, 'n', weave._names[version]
 
72
        print >>f
 
73
 
 
74
    print >>f, 'w'
 
75
 
 
76
    for l in weave._weave:
 
77
        if isinstance(l, tuple):
 
78
            assert l[0] in '{}[]'
 
79
            if l[0] == '}':
 
80
                print >>f, '}'
 
81
            else:
 
82
                print >>f, '%s %d' % l
 
83
        else: # text line
 
84
            if not l:
 
85
                print >>f, ', '
 
86
            elif l[-1] == '\n':
 
87
                assert l.find('\n', 0, -1) == -1
 
88
                print >>f, '.', l,
 
89
            else:
 
90
                assert l.find('\n') == -1
 
91
                print >>f, ',', l
 
92
 
 
93
    print >>f, 'W'
 
94
 
 
95
 
 
96
 
 
97
def read_weave(f):
 
98
    return read_weave_v5(f)
 
99
 
 
100
 
 
101
def read_weave_v5(f):
 
102
    from weave import Weave, WeaveFormatError
 
103
    w = Weave()
 
104
 
 
105
    wfe = WeaveFormatError
 
106
    l = f.readline()
 
107
    if l != FORMAT_1:
 
108
        raise WeaveFormatError('invalid weave file header: %r' % l)
 
109
 
 
110
    ver = 0
 
111
    while True:
 
112
        l = f.readline()
 
113
        if l[0] == 'i':
 
114
            if len(l) > 2:
 
115
                w._parents.append(map(int, l[2:].split(' ')))
 
116
            else:
 
117
                w._parents.append([])
 
118
 
 
119
            l = f.readline()[:-1]
 
120
            assert l.startswith('1 ')
 
121
            w._sha1s.append(l[2:])
 
122
                
 
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()
 
131
            assert l == '\n'
 
132
 
 
133
            ver += 1
 
134
        elif l == 'w\n':
 
135
            break
 
136
        else:
 
137
            raise WeaveFormatError('unexpected line %r' % l)
 
138
 
 
139
    while True:
 
140
        l = f.readline()
 
141
        if l == 'W\n':
 
142
            break
 
143
        elif l.startswith('. '):
 
144
            w._weave.append(l[2:])  # include newline
 
145
        elif l.startswith(', '):
 
146
            w._weave.append(l[2:-1])        # exclude newline
 
147
        elif l == '}\n':
 
148
            w._weave.append(('}', None))
 
149
        else:
 
150
            assert l[0] in '{[]', l
 
151
            assert l[1] == ' ', l
 
152
            w._weave.append((intern(l[0]), int(l[2:])))
 
153
 
 
154
    return w
 
155