/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/weavefile.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-10 01:35:53 UTC
  • mto: (6670.4.8 move-bzr)
  • mto: This revision was merged to the branch mainline in revision 6681.
  • Revision ID: jelmer@jelmer.uk-20170610013553-560y7mn3su4pp763
Fix remaining tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005-2010 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
16
16
#
17
17
# Author: Martin Pool <mbp@canonical.com>
18
18
 
19
 
 
20
 
 
21
 
 
22
19
"""Store and retrieve weaves in files.
23
20
 
24
21
There is one format marker followed by a blank line, followed by a
37
34
line contains a newline, or ',' if not.
38
35
"""
39
36
 
 
37
from __future__ import absolute_import
 
38
 
40
39
# TODO: When extracting a single version it'd be enough to just pass
41
40
# an iterator returning the weave lines...  We don't really need to
42
41
# deserialize it into memory.
90
89
 
91
90
def read_weave(f):
92
91
    # FIXME: detect the weave type and dispatch
93
 
    from bzrlib.trace import mutter
94
 
    from weave import Weave
 
92
    from .weave import Weave
95
93
    w = Weave(getattr(f, 'name', None))
96
94
    _read_weave_v5(f, w)
97
95
    return w
102
100
 
103
101
    This is only to be used by read_weave and WeaveFile.__init__.
104
102
    """
105
 
    #  200   0   2075.5080   1084.0360   bzrlib.weavefile:104(_read_weave_v5)
 
103
    #  200   0   2075.5080   1084.0360   breezy.weavefile:104(_read_weave_v5)
106
104
    # +60412 0    366.5900    366.5900   +<method 'readline' of 'file' objects>
107
105
    # +59982 0    320.5280    320.5280   +<method 'startswith' of 'str' objects>
108
106
    # +59363 0    297.8080    297.8080   +<method 'append' of 'list' objects>
109
107
    # replace readline call with iter over all lines ->
110
108
    # safe because we already suck on memory.
111
 
    #  200   0   1492.7170    802.6220   bzrlib.weavefile:104(_read_weave_v5)
 
109
    #  200   0   1492.7170    802.6220   breezy.weavefile:104(_read_weave_v5)
112
110
    # +59982 0    329.9100    329.9100   +<method 'startswith' of 'str' objects>
113
111
    # +59363 0    320.2980    320.2980   +<method 'append' of 'list' objects>
114
112
    # replaced startswith with slice lookups:
115
 
    #  200   0    851.7250    501.1120   bzrlib.weavefile:104(_read_weave_v5)
 
113
    #  200   0    851.7250    501.1120   breezy.weavefile:104(_read_weave_v5)
116
114
    # +59363 0    311.8780    311.8780   +<method 'append' of 'list' objects>
117
115
    # +200   0     30.2500     30.2500   +<method 'readlines' of 'file' objects>
118
116
 
119
 
    from weave import WeaveFormatError
120
 
 
121
 
    lines = iter(f.readlines())
122
 
 
123
 
    try:
124
 
        l = lines.next()
 
117
    from .weave import WeaveFormatError
 
118
 
 
119
    try:
 
120
        lines = iter(f.readlines())
 
121
    finally:
 
122
        f.close()
 
123
 
 
124
    try:
 
125
        l = next(lines)
125
126
    except StopIteration:
126
127
        raise WeaveFormatError('invalid weave file: no header')
127
128
 
131
132
    ver = 0
132
133
    # read weave header.
133
134
    while True:
134
 
        l = lines.next()
 
135
        l = next(lines)
135
136
        if l[0] == 'i':
136
137
            if len(l) > 2:
137
 
                w._parents.append(map(int, l[2:].split(' ')))
 
138
                w._parents.append(list(map(int, l[2:].split(' '))))
138
139
            else:
139
140
                w._parents.append([])
140
141
            l = lines.next()[:-1]
141
142
            w._sha1s.append(l[2:])
142
 
            l = lines.next()
 
143
            l = next(lines)
143
144
            name = l[2:-1]
144
145
            w._names.append(name)
145
146
            w._name_map[name] = ver
146
 
            l = lines.next()
 
147
            l = next(lines)
147
148
            ver += 1
148
149
        elif l == 'w\n':
149
150
            break
152
153
 
153
154
    # read weave body
154
155
    while True:
155
 
        l = lines.next()
 
156
        l = next(lines)
156
157
        if l == 'W\n':
157
158
            break
158
159
        elif '. ' == l[0:2]: