~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-09 06:39:13 UTC
  • mfrom: (1596.2.6 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060309063913-6d8ce700706d0802
Merge knit performance stage 1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
"""
30
30
 
31
31
 
32
 
 
33
 
 
34
 
 
35
32
import bzrlib.progress
36
 
 
37
 
 
38
 
class TextUIFactory(object):
39
 
    def progress_bar(self):
40
 
 
41
 
        # this in turn is abstract, and creates either a tty or dots
42
 
        # bar depending on what we think of the terminal
43
 
        return bzrlib.progress.ProgressBar()
44
 
 
45
 
 
46
 
class SilentUIFactory(object):
47
 
    def progress_bar(self):
 
33
from bzrlib.symbol_versioning import *
 
34
 
 
35
 
 
36
class UIFactory(object):
 
37
    """UI abstraction.
 
38
 
 
39
    This tells the library how to display things to the user.  Through this
 
40
    layer different applications can choose the style of UI.
 
41
    """
 
42
 
 
43
    def __init__(self):
 
44
        super(UIFactory, self).__init__()
 
45
        self._progress_bar_stack = None
 
46
 
 
47
    @deprecated_method(zero_eight)
 
48
    def progress_bar(self):
 
49
        """See UIFactory.nested_progress_bar()."""
 
50
        raise NotImplementedError(self.progress_bar)
 
51
 
 
52
    def get_password(self, prompt='', **kwargs):
 
53
        """Prompt the user for a password.
 
54
 
 
55
        :param prompt: The prompt to present the user
 
56
        :param kwargs: Arguments which will be expanded into the prompt.
 
57
                       This lets front ends display different things if
 
58
                       they so choose.
 
59
        :return: The password string, return None if the user 
 
60
                 canceled the request.
 
61
        """
 
62
        raise NotImplementedError(self.get_password)
 
63
        
 
64
    def nested_progress_bar(self):
 
65
        """Return a nested progress bar.
 
66
 
 
67
        When the bar has been finished with, it should be released bu calling
 
68
        bar.finished().
 
69
        """
 
70
        raise NotImplementedError(self.nested_progress_bar)
 
71
 
 
72
 
 
73
class SilentUIFactory(UIFactory):
 
74
    """A UI Factory which never prints anything.
 
75
 
 
76
    This is the default UI, if another one is never registered.
 
77
    """
 
78
 
 
79
    @deprecated_method(zero_eight)
 
80
    def progress_bar(self):
 
81
        """See UIFactory.nested_progress_bar()."""
48
82
        return bzrlib.progress.DummyProgress()
49
83
 
 
84
    def get_password(self, prompt='', **kwargs):
 
85
        return None
 
86
 
 
87
    def nested_progress_bar(self):
 
88
        if self._progress_bar_stack is None:
 
89
            self._progress_bar_stack = bzrlib.progress.ProgressBarStack(
 
90
                klass=bzrlib.progress.DummyProgress)
 
91
        return self._progress_bar_stack.get_nested()
 
92
 
50
93
 
51
94
ui_factory = SilentUIFactory()
 
95
"""IMPORTANT: never import this symbol directly. ONLY ever access it as 
 
96
ui.ui_factory."""