~bzr-pqm/bzr/bzr.dev

2323.6.4 by Martin Pool
BzrDir._check_supported now also takes care of recommending upgrades, which
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
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
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
31
import sys
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
32
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
33
from bzrlib.lazy_import import lazy_import
34
lazy_import(globals(), """
2294.4.4 by Vincent Ladeuil
Provide a better implementation for testing passwords.
35
import getpass
36
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
37
from bzrlib import (
2461.1.2 by Vincent Ladeuil
Take jam's remark into account.
38
    osutils,
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
39
    progress,
2323.6.2 by Martin Pool
Move responsibility for suggesting upgrades to ui object
40
    trace,
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
41
    )
42
""")
43
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
44
from bzrlib.symbol_versioning import (deprecated_method, zero_eight)
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
45
46
1185.49.21 by John Arbash Meinel
Refactored bzrlib/ui.py into a module with the possibility for multiple ui forms.
47
class UIFactory(object):
48
    """UI abstraction.
49
50
    This tells the library how to display things to the user.  Through this
51
    layer different applications can choose the style of UI.
52
    """
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
53
1594.1.3 by Robert Collins
Fixup pb usage to use nested_progress_bar.
54
    def __init__(self):
55
        super(UIFactory, self).__init__()
56
        self._progress_bar_stack = None
57
1594.1.2 by Robert Collins
Update news and deprecated the old progress bar api.
58
    @deprecated_method(zero_eight)
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
59
    def progress_bar(self):
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
60
        """See UIFactory.nested_progress_bar()."""
61
        raise NotImplementedError(self.progress_bar)
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
62
63
    def get_password(self, prompt='', **kwargs):
64
        """Prompt the user for a password.
65
66
        :param prompt: The prompt to present the user
67
        :param kwargs: Arguments which will be expanded into the prompt.
68
                       This lets front ends display different things if
69
                       they so choose.
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
70
71
        :return: The password string, return None if the user canceled the
72
                 request. Note that we do not touch the encoding, users may
73
                 have whatever they see fit and the password should be
74
                 transported as is.
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
75
        """
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
76
        raise NotImplementedError(self.get_password)
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
77
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
78
    def nested_progress_bar(self):
79
        """Return a nested progress bar.
80
2095.4.5 by mbp at sourcefrog
Use regular progress-bar classes, not a special mechanism
81
        When the bar has been finished with, it should be released by calling
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
82
        bar.finished().
83
        """
84
        raise NotImplementedError(self.nested_progress_bar)
85
1558.8.1 by Aaron Bentley
Fix overall progress bar's interaction with 'note' and 'warning'
86
    def clear_term(self):
87
        """Prepare the terminal for output.
88
89
        This will, for example, clear text progress bars, and leave the
90
        cursor at the leftmost position."""
91
        raise NotImplementedError(self.clear_term)
92
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
93
    def get_boolean(self, prompt):
94
        """Get a boolean question answered from the user. 
95
96
        :param prompt: a message to prompt the user with. Should be a single
97
        line without terminating \n.
98
        :return: True or False for y/yes or n/no.
99
        """
100
        raise NotImplementedError(self.get_boolean)
101
2323.6.2 by Martin Pool
Move responsibility for suggesting upgrades to ui object
102
    def recommend_upgrade(self,
103
        current_format_name,
104
        basedir):
2323.6.4 by Martin Pool
BzrDir._check_supported now also takes care of recommending upgrades, which
105
        # this should perhaps be in the TextUIFactory and the default can do
106
        # nothing
2323.6.2 by Martin Pool
Move responsibility for suggesting upgrades to ui object
107
        trace.warning("%s is deprecated "
108
            "and a better format is available.\n"
109
            "It is recommended that you upgrade by "
110
            "running the command\n"
111
            "  bzr upgrade %s",
112
            current_format_name,
113
            basedir)
2323.6.4 by Martin Pool
BzrDir._check_supported now also takes care of recommending upgrades, which
114
2461.1.1 by Vincent Ladeuil
Fix 110204 by letting TestUIFactory encode password prompt.
115
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
116
class CLIUIFactory(UIFactory):
117
    """Common behaviour for command line UI factories."""
118
119
    def __init__(self):
120
        super(CLIUIFactory, self).__init__()
121
        self.stdin = sys.stdin
122
123
    def get_boolean(self, prompt):
124
        self.clear_term()
125
        # FIXME: make a regexp and handle case variations as well.
126
        while True:
2294.4.1 by Vincent Ladeuil
Add a UIFactory.get_login method, fix tests.
127
            self.prompt(prompt + "? [y/n]: ")
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
128
            line = self.stdin.readline()
129
            if line in ('y\n', 'yes\n'):
130
                return True
131
            if line in ('n\n', 'no\n'):
132
                return False
133
2294.4.4 by Vincent Ladeuil
Provide a better implementation for testing passwords.
134
    def get_non_echoed_password(self, prompt):
2461.1.2 by Vincent Ladeuil
Take jam's remark into account.
135
        encoding = osutils.get_terminal_encoding()
136
        return getpass.getpass(prompt.encode(encoding, 'replace'))
2294.4.4 by Vincent Ladeuil
Provide a better implementation for testing passwords.
137
138
    def get_password(self, prompt='', **kwargs):
139
        """Prompt the user for a password.
140
141
        :param prompt: The prompt to present the user
142
        :param kwargs: Arguments which will be expanded into the prompt.
143
                       This lets front ends display different things if
144
                       they so choose.
145
        :return: The password string, return None if the user 
146
                 canceled the request.
147
        """
148
        prompt += ': '
2461.1.1 by Vincent Ladeuil
Fix 110204 by letting TestUIFactory encode password prompt.
149
        prompt = (prompt % kwargs)
2294.4.4 by Vincent Ladeuil
Provide a better implementation for testing passwords.
150
        # There's currently no way to say 'i decline to enter a password'
151
        # as opposed to 'my password is empty' -- does it matter?
152
        return self.get_non_echoed_password(prompt)
153
1687.1.4 by Robert Collins
Add bzrlib.ui.ui_factory.get_boolean().
154
    def prompt(self, prompt):
155
        """Emit prompt on the CLI."""
156
157
158
class SilentUIFactory(CLIUIFactory):
1185.49.21 by John Arbash Meinel
Refactored bzrlib/ui.py into a module with the possibility for multiple ui forms.
159
    """A UI Factory which never prints anything.
160
161
    This is the default UI, if another one is never registered.
162
    """
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
163
1594.1.2 by Robert Collins
Update news and deprecated the old progress bar api.
164
    @deprecated_method(zero_eight)
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
165
    def progress_bar(self):
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
166
        """See UIFactory.nested_progress_bar()."""
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
167
        return progress.DummyProgress()
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
168
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
169
    def get_password(self, prompt='', **kwargs):
170
        return None
171
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
172
    def nested_progress_bar(self):
1594.1.3 by Robert Collins
Fixup pb usage to use nested_progress_bar.
173
        if self._progress_bar_stack is None:
1996.3.32 by John Arbash Meinel
from bzrlib.ui lazy import progress, and make progress import lazily
174
            self._progress_bar_stack = progress.ProgressBarStack(
175
                klass=progress.DummyProgress)
1594.1.3 by Robert Collins
Fixup pb usage to use nested_progress_bar.
176
        return self._progress_bar_stack.get_nested()
1594.1.1 by Robert Collins
Introduce new bzr progress bar api. ui_factory.nested_progress_bar.
177
1558.8.1 by Aaron Bentley
Fix overall progress bar's interaction with 'note' and 'warning'
178
    def clear_term(self):
179
        pass
180
2323.6.4 by Martin Pool
BzrDir._check_supported now also takes care of recommending upgrades, which
181
    def recommend_upgrade(self, *args):
182
        pass
183
1558.8.1 by Aaron Bentley
Fix overall progress bar's interaction with 'note' and 'warning'
184
185
def clear_decorator(func, *args, **kwargs):
186
    """Decorator that clears the term"""
187
    ui_factory.clear_term()
188
    func(*args, **kwargs)
189
1185.49.22 by John Arbash Meinel
Added get_password to the UIFactory, using it inside of sftp.py
190
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
191
ui_factory = SilentUIFactory()
1534.5.9 by Robert Collins
Advise users running upgrade on a checkout to also run it on the branch.
192
"""IMPORTANT: never import this symbol directly. ONLY ever access it as 
193
ui.ui_factory."""