~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

(mbp) merge bzr.dev to 0.8, prepare for release

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
from bzrlib.inventory import Inventory
27
27
from bzrlib.osutils import appendpath, fingerprint_file
28
28
 
29
 
 
30
 
exporters = {}
31
 
 
32
29
class Tree(object):
33
30
    """Abstract file tree.
34
31
 
107
104
        """Print file with id `file_id` to stdout."""
108
105
        import sys
109
106
        sys.stdout.write(self.get_file_text(file_id))
110
 
        
111
 
        
112
 
    def export(self, dest, format='dir', root=None):
113
 
        """Export this tree."""
114
 
        try:
115
 
            exporter = exporters[format]
116
 
        except KeyError:
117
 
            from bzrlib.errors import BzrCommandError
118
 
            raise BzrCommandError("export format %r not supported" % format)
119
 
        exporter(self, dest, root)
120
 
 
121
 
 
122
 
 
 
107
 
 
108
    def lock_read(self):
 
109
        pass
 
110
 
 
111
    def unlock(self):
 
112
        pass
 
113
 
 
114
    def filter_unversioned_files(self, paths):
 
115
        """Filter out paths that are not versioned.
 
116
 
 
117
        :return: set of paths.
 
118
        """
 
119
        # NB: we specifically *don't* call self.has_filename, because for
 
120
        # WorkingTrees that can indicate files that exist on disk but that 
 
121
        # are not versioned.
 
122
        pred = self.inventory.has_filename
 
123
        return set((p for p in paths if not pred(p)))
 
124
        
 
125
        
123
126
class RevisionTree(Tree):
124
127
    """Tree viewing a previous revision.
125
128
 
130
133
           or at least passing a description to the constructor.
131
134
    """
132
135
    
133
 
    def __init__(self, weave_store, inv, revision_id):
134
 
        self._weave_store = weave_store
 
136
    def __init__(self, branch, inv, revision_id):
 
137
        self._branch = branch
 
138
        self._weave_store = branch.weave_store
135
139
        self._inventory = inv
136
140
        self._revision_id = revision_id
137
141
 
138
142
    def get_weave(self, file_id):
139
 
        # FIXME: RevisionTree should be given a branch
140
 
        # not a store, or the store should know the branch.
141
 
        import bzrlib.transactions as transactions
142
143
        return self._weave_store.get_weave(file_id,
143
 
            transactions.PassThroughTransaction())
144
 
 
 
144
                self._branch.get_transaction())
145
145
 
146
146
    def get_file_lines(self, file_id):
147
147
        ie = self._inventory[file_id]
148
148
        weave = self.get_weave(file_id)
149
 
        return weave.get(ie.revision)
150
 
        
 
149
        return weave.get_lines(ie.revision)
151
150
 
152
151
    def get_file_text(self, file_id):
153
152
        return ''.join(self.get_file_lines(file_id))
154
153
 
155
 
 
156
154
    def get_file(self, file_id):
157
155
        return StringIO(self.get_file_text(file_id))
158
156
 
185
183
    def kind(self, file_id):
186
184
        return self._inventory[file_id].kind
187
185
 
 
186
    def lock_read(self):
 
187
        self._branch.lock_read()
 
188
 
 
189
    def unlock(self):
 
190
        self._branch.unlock()
 
191
 
188
192
 
189
193
class EmptyTree(Tree):
190
194
    def __init__(self):
277
281
            
278
282
 
279
283
 
280
 
######################################################################
281
 
# export
282
 
 
283
 
def dir_exporter(tree, dest, root):
284
 
    """Export this tree to a new directory.
285
 
 
286
 
    `dest` should not exist, and will be created holding the
287
 
    contents of this tree.
288
 
 
289
 
    TODO: To handle subdirectories we need to create the
290
 
           directories first.
291
 
 
292
 
    :note: If the export fails, the destination directory will be
293
 
           left in a half-assed state.
294
 
    """
295
 
    import os
296
 
    os.mkdir(dest)
297
 
    mutter('export version %r' % tree)
298
 
    inv = tree.inventory
299
 
    for dp, ie in inv.iter_entries():
300
 
        ie.put_on_disk(dest, dp, tree)
301
 
 
302
 
exporters['dir'] = dir_exporter
303
 
 
304
 
try:
305
 
    import tarfile
306
 
except ImportError:
307
 
    pass
308
 
else:
309
 
    def get_root_name(dest):
310
 
        """Get just the root name for a tarball.
311
 
 
312
 
        >>> get_root_name('mytar.tar')
313
 
        'mytar'
314
 
        >>> get_root_name('mytar.tar.bz2')
315
 
        'mytar'
316
 
        >>> get_root_name('tar.tar.tar.tgz')
317
 
        'tar.tar.tar'
318
 
        >>> get_root_name('bzr-0.0.5.tar.gz')
319
 
        'bzr-0.0.5'
320
 
        >>> get_root_name('a/long/path/mytar.tgz')
321
 
        'mytar'
322
 
        >>> get_root_name('../parent/../dir/other.tbz2')
323
 
        'other'
324
 
        """
325
 
        endings = ['.tar', '.tar.gz', '.tgz', '.tar.bz2', '.tbz2']
326
 
        dest = os.path.basename(dest)
327
 
        for end in endings:
328
 
            if dest.endswith(end):
329
 
                return dest[:-len(end)]
330
 
 
331
 
    def tar_exporter(tree, dest, root, compression=None):
332
 
        """Export this tree to a new tar file.
333
 
 
334
 
        `dest` will be created holding the contents of this tree; if it
335
 
        already exists, it will be clobbered, like with "tar -c".
336
 
        """
337
 
        from time import time
338
 
        now = time()
339
 
        compression = str(compression or '')
340
 
        if root is None:
341
 
            root = get_root_name(dest)
342
 
        try:
343
 
            ball = tarfile.open(dest, 'w:' + compression)
344
 
        except tarfile.CompressionError, e:
345
 
            raise BzrError(str(e))
346
 
        mutter('export version %r' % tree)
347
 
        inv = tree.inventory
348
 
        for dp, ie in inv.iter_entries():
349
 
            mutter("  export {%s} kind %s to %s" % (ie.file_id, ie.kind, dest))
350
 
            item, fileobj = ie.get_tar_item(root, dp, now, tree)
351
 
            ball.addfile(item, fileobj)
352
 
        ball.close()
353
 
 
354
 
    exporters['tar'] = tar_exporter
355
 
 
356
 
    def tgz_exporter(tree, dest, root):
357
 
        tar_exporter(tree, dest, root, compression='gz')
358
 
    exporters['tgz'] = tgz_exporter
359
 
 
360
 
    def tbz_exporter(tree, dest, root):
361
 
        tar_exporter(tree, dest, root, compression='bz2')
362
 
    exporters['tbz2'] = tbz_exporter