~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-05-06 11:40:10 UTC
  • mfrom: (3400.1.3 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20080506114010-jwclr2qtiekvawjg
Remove erroneous creation of branch-name file in cmd_branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
#
17
17
# Author: Martin Pool <mbp@canonical.com>
18
18
 
 
19
 
 
20
 
 
21
 
19
22
"""Store and retrieve weaves in files.
20
23
 
21
24
There is one format marker followed by a blank line, followed by a
34
37
line contains a newline, or ',' if not.
35
38
"""
36
39
 
37
 
from __future__ import absolute_import
38
 
 
39
40
# TODO: When extracting a single version it'd be enough to just pass
40
41
# an iterator returning the weave lines...  We don't really need to
41
42
# deserialize it into memory.
71
72
 
72
73
    for l in weave._weave:
73
74
        if isinstance(l, tuple):
 
75
            assert l[0] in '{}[]'
74
76
            if l[0] == '}':
75
77
                f.write('}\n')
76
78
            else:
79
81
            if not l:
80
82
                f.write(', \n')
81
83
            elif l[-1] == '\n':
 
84
                assert l.find('\n', 0, -1) == -1
82
85
                f.write('. ' + l)
83
86
            else:
 
87
                assert l.find('\n') == -1
84
88
                f.write(', ' + l + '\n')
85
89
 
86
90
    f.write('W\n')
89
93
 
90
94
def read_weave(f):
91
95
    # FIXME: detect the weave type and dispatch
92
 
    from bzrlib.weave import Weave
 
96
    from bzrlib.trace import mutter
 
97
    from weave import Weave
93
98
    w = Weave(getattr(f, 'name', None))
94
99
    _read_weave_v5(f, w)
95
100
    return w
97
102
 
98
103
def _read_weave_v5(f, w):
99
104
    """Private helper routine to read a weave format 5 file into memory.
100
 
 
 
105
    
101
106
    This is only to be used by read_weave and WeaveFile.__init__.
102
107
    """
103
108
    #  200   0   2075.5080   1084.0360   bzrlib.weavefile:104(_read_weave_v5)
113
118
    #  200   0    851.7250    501.1120   bzrlib.weavefile:104(_read_weave_v5)
114
119
    # +59363 0    311.8780    311.8780   +<method 'append' of 'list' objects>
115
120
    # +200   0     30.2500     30.2500   +<method 'readlines' of 'file' objects>
116
 
 
117
 
    from bzrlib.weave import WeaveFormatError
118
 
 
119
 
    try:
120
 
        lines = iter(f.readlines())
121
 
    finally:
122
 
        f.close()
123
 
 
 
121
                  
 
122
    from weave import WeaveFormatError
 
123
 
 
124
    lines = iter(f.readlines())
 
125
    
124
126
    try:
125
127
        l = lines.next()
126
128
    except StopIteration:
138
140
                w._parents.append(map(int, l[2:].split(' ')))
139
141
            else:
140
142
                w._parents.append([])
 
143
 
141
144
            l = lines.next()[:-1]
 
145
            assert '1 ' == l[0:2]
142
146
            w._sha1s.append(l[2:])
 
147
                
143
148
            l = lines.next()
 
149
            assert 'n ' == l[0:2]
144
150
            name = l[2:-1]
 
151
            assert name not in w._name_map
145
152
            w._names.append(name)
146
153
            w._name_map[name] = ver
 
154
                
147
155
            l = lines.next()
 
156
            assert l == '\n'
 
157
 
148
158
            ver += 1
149
159
        elif l == 'w\n':
150
160
            break
163
173
        elif l == '}\n':
164
174
            w._weave.append(('}', None))
165
175
        else:
 
176
            assert l[0] in '{[]', l
 
177
            assert l[1] == ' ', l
166
178
            w._weave.append((intern(l[0]), int(l[2:])))
 
179
 
167
180
    return w
 
181