~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-03-08 14:31:23 UTC
  • mfrom: (1598 +trunk)
  • mto: (1685.1.1 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060308143123-448308b0db4de410
[merge] bzr.dev 1573, lots of updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 Canonical Ltd
 
2
 
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
 
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
 
18
 
 
19
"""UI abstraction.
 
20
 
 
21
This tells the library how to display things to the user.  Through this
 
22
layer different applications can choose the style of UI.
 
23
 
 
24
At the moment this layer is almost trivial: the application can just
 
25
choose the style of progress bar.
 
26
 
 
27
Set the ui_factory member to define the behaviour.  The default
 
28
displays no output.
 
29
"""
 
30
 
 
31
 
 
32
import bzrlib.progress
 
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()."""
 
82
        return bzrlib.progress.DummyProgress()
 
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
 
 
93
 
 
94
ui_factory = SilentUIFactory()
 
95
"""IMPORTANT: never import this symbol directly. ONLY ever access it as 
 
96
ui.ui_factory."""