~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Ian Clatworthy
  • Date: 2008-05-28 07:01:06 UTC
  • mto: (3515.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3516.
  • Revision ID: ian.clatworthy@canonical.com-20080528070106-6w0oc8zat4bs29g1
make iter_search_rules a tree method

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
import bzrlib
25
25
from bzrlib import (
 
26
    conflicts as _mod_conflicts,
26
27
    delta,
27
28
    osutils,
28
29
    revision as _mod_revision,
29
 
    conflicts as _mod_conflicts,
 
30
    rules,
30
31
    symbol_versioning,
31
32
    )
32
33
from bzrlib.decorators import needs_read_lock
509
510
        """
510
511
        raise NotImplementedError(self.walkdirs)
511
512
 
 
513
    def iter_search_rules(self, path_names, pref_names=None,
 
514
        _default_searcher=rules._per_user_searcher):
 
515
        """Find the preferences for filenames in a tree.
 
516
 
 
517
        :param path_names: an iterable of paths to find attributes for.
 
518
          Paths are given relative to the root of the tree.
 
519
        :param pref_names: the list of preferences to lookup - None for all
 
520
        :param _default_searcher: private parameter to assist testing - don't use
 
521
        :return: an iterator of tuple sequences, one per path-name.
 
522
          See _RulesSearcher.get_items for details on the tuple sequence.
 
523
        """
 
524
        searcher = self._get_rules_searcher(_default_searcher)
 
525
        if searcher is not None:
 
526
            for path in path_names:
 
527
                yield searcher.get_items(path, pref_names)
 
528
 
 
529
    @needs_read_lock
 
530
    def _get_rules_searcher(self, default_searcher):
 
531
        """Get the RulesSearcher for this tree given the default one."""
 
532
        searcher = default_searcher
 
533
        file_id = self.path2id(rules.RULES_TREE_FILENAME)
 
534
        if file_id is not None:
 
535
            ini_file = self.get_file(file_id)
 
536
            searcher = rules._StackedRulesSearcher(
 
537
                [rules._IniBasedRulesSearcher(ini_file), default_searcher])
 
538
        return searcher
 
539
 
512
540
 
513
541
class EmptyTree(Tree):
514
542