~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-10-06 13:38:35 UTC
  • mfrom: (4727.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20091006133835-5mq5guz7d72tvpbd
(vila) Cleanup imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from bzrlib import (
29
29
    add,
30
30
    bzrdir,
 
31
    errors,
31
32
    hooks,
 
33
    osutils,
 
34
    revisiontree,
32
35
    symbol_versioning,
 
36
    trace,
 
37
    tree,
33
38
    )
34
 
from bzrlib.osutils import dirname
35
 
from bzrlib.revisiontree import RevisionTree
36
 
from bzrlib.trace import mutter, warning
37
39
""")
38
40
 
39
 
from bzrlib import (
40
 
    errors,
41
 
    osutils,
42
 
    tree,
43
 
    )
44
41
from bzrlib.decorators import needs_read_lock, needs_write_lock
45
 
from bzrlib.osutils import splitpath
46
42
 
47
43
 
48
44
def needs_tree_write_lock(unbound):
130
126
            # generic constraint checks:
131
127
            if self.is_control_filename(f):
132
128
                raise errors.ForbiddenControlFileError(filename=f)
133
 
            fp = splitpath(f)
 
129
            fp = osutils.splitpath(f)
134
130
        # fill out file kinds for all files [not needed when we stop
135
131
        # caring about the instantaneous file kind within a uncommmitted tree
136
132
        #
390
386
        # perform the canonicalization in bulk.
391
387
        for filepath in osutils.canonical_relpaths(self.basedir, file_list):
392
388
            rf = _FastPath(filepath)
393
 
            # validate user parameters. Our recursive code avoids adding new files
394
 
            # that need such validation
 
389
            # validate user parameters. Our recursive code avoids adding new
 
390
            # files that need such validation
395
391
            if self.is_control_filename(rf.raw_path):
396
392
                raise errors.ForbiddenControlFileError(filename=rf.raw_path)
397
393
 
403
399
            else:
404
400
                if not InventoryEntry.versionable_kind(kind):
405
401
                    raise errors.BadFileKindError(filename=abspath, kind=kind)
406
 
            # ensure the named path is added, so that ignore rules in the later directory
407
 
            # walk dont skip it.
408
 
            # we dont have a parent ie known yet.: use the relatively slower inventory
409
 
            # probing method
 
402
            # ensure the named path is added, so that ignore rules in the later
 
403
            # directory walk dont skip it.
 
404
            # we dont have a parent ie known yet.: use the relatively slower
 
405
            # inventory probing method
410
406
            versioned = inv.has_filename(rf.raw_path)
411
407
            if versioned:
412
408
                continue
443
439
            kind = osutils.file_kind(abspath)
444
440
 
445
441
            if not InventoryEntry.versionable_kind(kind):
446
 
                warning("skipping %s (can't add file of kind '%s')", abspath, kind)
 
442
                trace.warning("skipping %s (can't add file of kind '%s')",
 
443
                              abspath, kind)
447
444
                continue
448
445
            if illegalpath_re.search(directory.raw_path):
449
 
                warning("skipping %r (contains \\n or \\r)" % abspath)
 
446
                trace.warning("skipping %r (contains \\n or \\r)" % abspath)
450
447
                continue
451
448
 
452
449
            if parent_ie is not None:
475
472
                pass
476
473
                # mutter("%r is already versioned", abspath)
477
474
            elif sub_tree:
478
 
                # XXX: This is wrong; people *might* reasonably be trying to add
479
 
                # subtrees as subtrees.  This should probably only be done in formats
480
 
                # which can represent subtrees, and even then perhaps only when
481
 
                # the user asked to add subtrees.  At the moment you can add them
482
 
                # specially through 'join --reference', which is perhaps
483
 
                # reasonable: adding a new reference is a special operation and
484
 
                # can have a special behaviour.  mbp 20070306
485
 
                mutter("%r is a nested bzr tree", abspath)
 
475
                # XXX: This is wrong; people *might* reasonably be trying to
 
476
                # add subtrees as subtrees.  This should probably only be done
 
477
                # in formats which can represent subtrees, and even then
 
478
                # perhaps only when the user asked to add subtrees.  At the
 
479
                # moment you can add them specially through 'join --reference',
 
480
                # which is perhaps reasonable: adding a new reference is a
 
481
                # special operation and can have a special behaviour.  mbp
 
482
                # 20070306
 
483
                trace.mutter("%r is a nested bzr tree", abspath)
486
484
            else:
487
485
                _add_one(self, inv, parent_ie, directory, kind, action)
488
486
                added.append(directory.raw_path)
495
493
                    # without the parent ie, use the relatively slower inventory
496
494
                    # probing method
497
495
                    this_id = inv.path2id(
498
 
                            self._fix_case_of_inventory_path(directory.raw_path))
 
496
                        self._fix_case_of_inventory_path(directory.raw_path))
499
497
                    if this_id is None:
500
498
                        this_ie = None
501
499
                    else:
510
508
                    # faster - its impossible for a non root dir to have a
511
509
                    # control file.
512
510
                    if self.is_control_filename(subp):
513
 
                        mutter("skip control directory %r", subp)
 
511
                        trace.mutter("skip control directory %r", subp)
514
512
                    elif subf in this_ie.children:
515
513
                        # recurse into this already versioned subdir.
516
514
                        dirs_to_add.append((_FastPath(subp, subf), this_ie))
572
570
        inventory = basis.inventory._get_mutable_inventory()
573
571
        basis.unlock()
574
572
        inventory.apply_delta(delta)
575
 
        rev_tree = RevisionTree(self.branch.repository, inventory, new_revid)
 
573
        rev_tree = revisiontree.RevisionTree(self.branch.repository,
 
574
                                             inventory, new_revid)
576
575
        self.set_parent_trees([(new_revid, rev_tree)])
577
576
 
578
577
 
661
660
        # there are a limited number of dirs we can be nested under, it should
662
661
        # generally find it very fast and not recurse after that.
663
662
        added = _add_one_and_parent(tree, inv, None,
664
 
            _FastPath(dirname(path.raw_path)), 'directory', action)
665
 
        parent_id = inv.path2id(dirname(path.raw_path))
 
663
            _FastPath(osutils.dirname(path.raw_path)), 'directory', action)
 
664
        parent_id = inv.path2id(osutils.dirname(path.raw_path))
666
665
        parent_ie = inv[parent_id]
667
666
    _add_one(tree, inv, parent_ie, path, kind, action)
668
667
    return added + [path.raw_path]