~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/text.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, 2006, 2008, 2009, 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
"""A store that keeps the full text of every version.
18
18
 
20
20
do any sort of delta compression.
21
21
"""
22
22
 
23
 
from __future__ import absolute_import
24
 
 
25
23
import gzip
26
24
import os
 
25
from cStringIO import StringIO
27
26
 
28
27
from bzrlib import osutils
29
28
from bzrlib.errors import BzrError, NoSuchFile, FileExists
45
44
    def _add_compressed(self, fn, f):
46
45
        from cStringIO import StringIO
47
46
        from bzrlib.osutils import pumpfile
48
 
 
 
47
        
49
48
        if isinstance(f, basestring):
50
49
            f = StringIO(f)
51
 
 
 
50
            
52
51
        sio = StringIO()
53
52
        gf = gzip.GzipFile(mode='wb', fileobj=sio)
54
53
        # if pumpfile handles files that don't fit in ram,
119
118
        # so buffer them in a StringIO instead
120
119
        if getattr(f, 'tell', None) is not None:
121
120
            return gzip.GzipFile(mode='rb', fileobj=f)
122
 
        try:
 
121
        else:
123
122
            from cStringIO import StringIO
124
123
            sio = StringIO(f.read())
125
124
            return gzip.GzipFile(mode='rb', fileobj=sio)
126
 
        finally:
127
 
            f.close()