~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

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.
89
90
 
90
91
def read_weave(f):
91
92
    # FIXME: detect the weave type and dispatch
92
 
    from bzrlib.weave import Weave
 
93
    from bzrlib.trace import mutter
 
94
    from weave import Weave
93
95
    w = Weave(getattr(f, 'name', None))
94
96
    _read_weave_v5(f, w)
95
97
    return w
97
99
 
98
100
def _read_weave_v5(f, w):
99
101
    """Private helper routine to read a weave format 5 file into memory.
100
 
 
 
102
    
101
103
    This is only to be used by read_weave and WeaveFile.__init__.
102
104
    """
103
105
    #  200   0   2075.5080   1084.0360   bzrlib.weavefile:104(_read_weave_v5)
113
115
    #  200   0    851.7250    501.1120   bzrlib.weavefile:104(_read_weave_v5)
114
116
    # +59363 0    311.8780    311.8780   +<method 'append' of 'list' objects>
115
117
    # +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
 
 
 
118
                  
 
119
    from weave import WeaveFormatError
 
120
 
 
121
    lines = iter(f.readlines())
 
122
    
124
123
    try:
125
124
        l = lines.next()
126
125
    except StopIteration: