~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Vincent Ladeuil
  • Date: 2011-11-24 15:48:29 UTC
  • mfrom: (6289 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6337.
  • Revision ID: v.ladeuil+lp@free.fr-20111124154829-avowjpsxdl8yp2vz
merge trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
    conformance tests for - rather we are testing MemoryTree specifically, and
72
72
    interface testing implementations of WorkingTree.
73
73
 
74
 
    A mutable tree always has an associated Branch and BzrDir object - the
 
74
    A mutable tree always has an associated Branch and ControlDir object - the
75
75
    branch and bzrdir attributes.
76
76
    """
77
77
    def __init__(self, *args, **kw):
260
260
        :param more_warning: Details about what is happening.
261
261
        """
262
262
        if strict is None:
263
 
            strict = self.branch.get_config().get_user_option_as_bool(opt_name)
 
263
            strict = self.branch.get_config_stack().get(opt_name)
264
264
        if strict is not False:
265
265
            err_class = None
266
266
            if (self.has_changes()):
582
582
        :param parent_ie: Parent inventory entry if known, or None.  If
583
583
            None, the parent is looked up by name and used if present, otherwise it
584
584
            is recursively added.
 
585
        :param path: 
585
586
        :param kind: Kind of new entry (file, directory, etc)
586
 
        :param action: callback(tree, parent_ie, path, kind); can return file_id
 
587
        :param inv_path:
587
588
        :return: Inventory entry for path and a list of paths which have been added.
588
589
        """
589
590
        # Nothing to do if path is already versioned.
628
629
            if (prev_dir is None or not is_inside([prev_dir], path)):
629
630
                yield (path, inv_path, this_ie, None)
630
631
            prev_dir = path
631
 
 
 
632
        
632
633
    def __init__(self, tree, action, conflicts_related=None):
633
634
        self.tree = tree
634
635
        if action is None:
695
696
 
696
697
            # get the contents of this directory.
697
698
 
698
 
            # find the kind of the path being added.
 
699
            # find the kind of the path being added, and save stat_value
 
700
            # for reuse
 
701
            stat_value = None
699
702
            if this_ie is None:
700
 
                kind = osutils.file_kind(abspath)
 
703
                stat_value = osutils.file_stat(abspath)
 
704
                kind = osutils.file_kind_from_stat_mode(stat_value.st_mode)
701
705
            else:
702
706
                kind = this_ie.kind
703
 
 
 
707
            
 
708
            # allow AddAction to skip this file
 
709
            if self.action.skip_file(self.tree,  abspath,  kind,  stat_value):
 
710
                continue
704
711
            if not InventoryEntry.versionable_kind(kind):
705
712
                trace.warning("skipping %s (can't add file of kind '%s')",
706
713
                              abspath, kind)
718
725
 
719
726
            if kind == 'directory' and directory != '':
720
727
                try:
721
 
                    transport = _mod_transport.get_transport(abspath)
 
728
                    transport = _mod_transport.get_transport_from_path(abspath)
722
729
                    controldir.ControlDirFormat.find_format(transport)
723
730
                    sub_tree = True
724
731
                except errors.NotBranchError:
739
746
                # which is perhaps reasonable: adding a new reference is a
740
747
                # special operation and can have a special behaviour.  mbp
741
748
                # 20070306
742
 
                trace.mutter("%r is a nested bzr tree", abspath)
 
749
                trace.warning("skipping nested tree %r", abspath)
743
750
            else:
744
 
                this_ie = self._add_one_and_parent(parent_ie, directory, kind, inv_path)
 
751
                this_ie = self._add_one_and_parent(parent_ie, directory, kind,
 
752
                    inv_path)
745
753
 
746
754
            if kind == 'directory' and not sub_tree:
747
755
                if this_ie.kind != 'directory':
769
777
                        # recurse into this already versioned subdir.
770
778
                        things_to_add.append((subp, sub_invp, sub_ie, this_ie))
771
779
                    else:
772
 
                        # user selection overrides ignoes
 
780
                        # user selection overrides ignores
773
781
                        # ignore while selecting files - if we globbed in the
774
782
                        # outer loop we would ignore user files.
775
783
                        ignore_glob = self.tree.is_ignored(subp)