~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: John Arbash Meinel
  • Date: 2009-12-15 19:59:00 UTC
  • mfrom: (4634.108.2 2.0)
  • mto: This revision was merged to the branch mainline in revision 4900.
  • Revision ID: john@arbash-meinel.com-20091215195900-fvgxdv9ycbrnzp1o
merge the 2.0.4 branch into 2.1.0b5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2008, 2009 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
"""Text UI, write output to the console.
 
19
"""
 
20
 
 
21
import codecs
 
22
import getpass
 
23
import os
 
24
import sys
 
25
import time
 
26
import warnings
 
27
 
 
28
from bzrlib.lazy_import import lazy_import
 
29
lazy_import(globals(), """
 
30
from bzrlib import (
 
31
    debug,
 
32
    progress,
 
33
    osutils,
 
34
    symbol_versioning,
 
35
    )
 
36
 
 
37
""")
 
38
 
 
39
from bzrlib.ui import (
 
40
    UIFactory,
 
41
    NullProgressView,
 
42
    )
 
43
 
 
44
 
 
45
class TextUIFactory(UIFactory):
 
46
    """A UI factory for Text user interefaces."""
 
47
 
 
48
    def __init__(self,
 
49
                 stdin=None,
 
50
                 stdout=None,
 
51
                 stderr=None):
 
52
        """Create a TextUIFactory.
 
53
        """
 
54
        super(TextUIFactory, self).__init__()
 
55
        # TODO: there's no good reason not to pass all three streams, maybe we
 
56
        # should deprecate the default values...
 
57
        self.stdin = stdin
 
58
        self.stdout = stdout
 
59
        self.stderr = stderr
 
60
        # paints progress, network activity, etc
 
61
        self._progress_view = self.make_progress_view()
 
62
        
 
63
    def clear_term(self):
 
64
        """Prepare the terminal for output.
 
65
 
 
66
        This will, clear any progress bars, and leave the cursor at the
 
67
        leftmost position."""
 
68
        # XXX: If this is preparing to write to stdout, but that's for example
 
69
        # directed into a file rather than to the terminal, and the progress
 
70
        # bar _is_ going to the terminal, we shouldn't need
 
71
        # to clear it.  We might need to separately check for the case of
 
72
        self._progress_view.clear()
 
73
 
 
74
    def get_boolean(self, prompt):
 
75
        while True:
 
76
            self.prompt(prompt + "? [y/n]: ")
 
77
            line = self.stdin.readline().lower()
 
78
            if line in ('y\n', 'yes\n'):
 
79
                return True
 
80
            elif line in ('n\n', 'no\n'):
 
81
                return False
 
82
            elif line in ('', None):
 
83
                # end-of-file; possibly should raise an error here instead
 
84
                return None
 
85
 
 
86
    def get_integer(self, prompt):
 
87
        while True:
 
88
            self.prompt(prompt)
 
89
            line = self.stdin.readline()
 
90
            try:
 
91
                return int(line)
 
92
            except ValueError:
 
93
                pass
 
94
 
 
95
    def get_non_echoed_password(self):
 
96
        isatty = getattr(self.stdin, 'isatty', None)
 
97
        if isatty is not None and isatty():
 
98
            # getpass() ensure the password is not echoed and other
 
99
            # cross-platform niceties
 
100
            password = getpass.getpass('')
 
101
        else:
 
102
            # echo doesn't make sense without a terminal
 
103
            password = self.stdin.readline()
 
104
            if not password:
 
105
                password = None
 
106
            elif password[-1] == '\n':
 
107
                password = password[:-1]
 
108
        return password
 
109
 
 
110
    def get_password(self, prompt='', **kwargs):
 
111
        """Prompt the user for a password.
 
112
 
 
113
        :param prompt: The prompt to present the user
 
114
        :param kwargs: Arguments which will be expanded into the prompt.
 
115
                       This lets front ends display different things if
 
116
                       they so choose.
 
117
        :return: The password string, return None if the user
 
118
                 canceled the request.
 
119
        """
 
120
        prompt += ': '
 
121
        self.prompt(prompt, **kwargs)
 
122
        # There's currently no way to say 'i decline to enter a password'
 
123
        # as opposed to 'my password is empty' -- does it matter?
 
124
        return self.get_non_echoed_password()
 
125
 
 
126
    def get_username(self, prompt, **kwargs):
 
127
        """Prompt the user for a username.
 
128
 
 
129
        :param prompt: The prompt to present the user
 
130
        :param kwargs: Arguments which will be expanded into the prompt.
 
131
                       This lets front ends display different things if
 
132
                       they so choose.
 
133
        :return: The username string, return None if the user
 
134
                 canceled the request.
 
135
        """
 
136
        prompt += ': '
 
137
        self.prompt(prompt, **kwargs)
 
138
        username = self.stdin.readline()
 
139
        if not username:
 
140
            username = None
 
141
        elif username[-1] == '\n':
 
142
            username = username[:-1]
 
143
        return username
 
144
 
 
145
    def make_progress_view(self):
 
146
        """Construct and return a new ProgressView subclass for this UI.
 
147
        """
 
148
        # if the user specifically requests either text or no progress bars,
 
149
        # always do that.  otherwise, guess based on $TERM and tty presence.
 
150
        if os.environ.get('BZR_PROGRESS_BAR') == 'text':
 
151
            return TextProgressView(self.stderr)
 
152
        elif os.environ.get('BZR_PROGRESS_BAR') == 'none':
 
153
            return NullProgressView()
 
154
        elif progress._supports_progress(self.stderr):
 
155
            return TextProgressView(self.stderr)
 
156
        else:
 
157
            return NullProgressView()
 
158
 
 
159
    def _make_output_stream_explicit(self, encoding, encoding_type):
 
160
        if encoding_type == 'exact':
 
161
            # force sys.stdout to be binary stream on win32; 
 
162
            # NB: this leaves the file set in that mode; may cause problems if
 
163
            # one process tries to do binary and then text output
 
164
            if sys.platform == 'win32':
 
165
                fileno = getattr(self.stdout, 'fileno', None)
 
166
                if fileno:
 
167
                    import msvcrt
 
168
                    msvcrt.setmode(fileno(), os.O_BINARY)
 
169
            return TextUIOutputStream(self, self.stdout)
 
170
        else:
 
171
            encoded_stdout = codecs.getwriter(encoding)(self.stdout,
 
172
                errors=encoding_type)
 
173
            # For whatever reason codecs.getwriter() does not advertise its encoding
 
174
            # it just returns the encoding of the wrapped file, which is completely
 
175
            # bogus. So set the attribute, so we can find the correct encoding later.
 
176
            encoded_stdout.encoding = encoding
 
177
            return TextUIOutputStream(self, encoded_stdout)
 
178
 
 
179
    def note(self, msg):
 
180
        """Write an already-formatted message, clearing the progress bar if necessary."""
 
181
        self.clear_term()
 
182
        self.stdout.write(msg + '\n')
 
183
 
 
184
    def prompt(self, prompt, **kwargs):
 
185
        """Emit prompt on the CLI.
 
186
        
 
187
        :param kwargs: Dictionary of arguments to insert into the prompt,
 
188
            to allow UIs to reformat the prompt.
 
189
        """
 
190
        if kwargs:
 
191
            # See <https://launchpad.net/bugs/365891>
 
192
            prompt = prompt % kwargs
 
193
        prompt = prompt.encode(osutils.get_terminal_encoding(), 'replace')
 
194
        self.clear_term()
 
195
        self.stderr.write(prompt)
 
196
 
 
197
    def report_transport_activity(self, transport, byte_count, direction):
 
198
        """Called by transports as they do IO.
 
199
 
 
200
        This may update a progress bar, spinner, or similar display.
 
201
        By default it does nothing.
 
202
        """
 
203
        self._progress_view.show_transport_activity(transport,
 
204
            direction, byte_count)
 
205
 
 
206
    def show_error(self, msg):
 
207
        self.clear_term()
 
208
        self.stderr.write("bzr: error: %s\n" % msg)
 
209
 
 
210
    def show_message(self, msg):
 
211
        self.note(msg)
 
212
 
 
213
    def show_warning(self, msg):
 
214
        self.clear_term()
 
215
        self.stderr.write("bzr: warning: %s\n" % msg)
 
216
 
 
217
    def _progress_updated(self, task):
 
218
        """A task has been updated and wants to be displayed.
 
219
        """
 
220
        if not self._task_stack:
 
221
            warnings.warn("%r updated but no tasks are active" %
 
222
                (task,))
 
223
        elif task != self._task_stack[-1]:
 
224
            warnings.warn("%r is not the top progress task %r" %
 
225
                (task, self._task_stack[-1]))
 
226
        self._progress_view.show_progress(task)
 
227
 
 
228
    def _progress_all_finished(self):
 
229
        self._progress_view.clear()
 
230
 
 
231
 
 
232
class TextProgressView(object):
 
233
    """Display of progress bar and other information on a tty.
 
234
 
 
235
    This shows one line of text, including possibly a network indicator, spinner,
 
236
    progress bar, message, etc.
 
237
 
 
238
    One instance of this is created and held by the UI, and fed updates when a
 
239
    task wants to be painted.
 
240
 
 
241
    Transports feed data to this through the ui_factory object.
 
242
 
 
243
    The Progress views can comprise a tree with _parent_task pointers, but
 
244
    this only prints the stack from the nominated current task up to the root.
 
245
    """
 
246
 
 
247
    def __init__(self, term_file):
 
248
        self._term_file = term_file
 
249
        # true when there's output on the screen we may need to clear
 
250
        self._have_output = False
 
251
        # XXX: We could listen for SIGWINCH and update the terminal width...
 
252
        # https://launchpad.net/bugs/316357
 
253
        self._width = osutils.terminal_width()
 
254
        self._last_transport_msg = ''
 
255
        self._spin_pos = 0
 
256
        # time we last repainted the screen
 
257
        self._last_repaint = 0
 
258
        # time we last got information about transport activity
 
259
        self._transport_update_time = 0
 
260
        self._last_task = None
 
261
        self._total_byte_count = 0
 
262
        self._bytes_since_update = 0
 
263
        self._fraction = 0
 
264
        # force the progress bar to be off, as at the moment it doesn't 
 
265
        # correspond reliably to overall command progress
 
266
        self.enable_bar = False
 
267
 
 
268
    def _show_line(self, s):
 
269
        # sys.stderr.write("progress %r\n" % s)
 
270
        if self._width is not None:
 
271
            n = self._width - 1
 
272
            s = '%-*.*s' % (n, n, s)
 
273
        self._term_file.write('\r' + s + '\r')
 
274
 
 
275
    def clear(self):
 
276
        if self._have_output:
 
277
            self._show_line('')
 
278
        self._have_output = False
 
279
 
 
280
    def _render_bar(self):
 
281
        # return a string for the progress bar itself
 
282
        if self.enable_bar and (
 
283
            (self._last_task is None) or self._last_task.show_bar):
 
284
            # If there's no task object, we show space for the bar anyhow.
 
285
            # That's because most invocations of bzr will end showing progress
 
286
            # at some point, though perhaps only after doing some initial IO.
 
287
            # It looks better to draw the progress bar initially rather than
 
288
            # to have what looks like an incomplete progress bar.
 
289
            spin_str =  r'/-\|'[self._spin_pos % 4]
 
290
            self._spin_pos += 1
 
291
            cols = 20
 
292
            if self._last_task is None:
 
293
                completion_fraction = 0
 
294
                self._fraction = 0
 
295
            else:
 
296
                completion_fraction = \
 
297
                    self._last_task._overall_completion_fraction() or 0
 
298
            if (completion_fraction < self._fraction and 'progress' in
 
299
                debug.debug_flags):
 
300
                import pdb;pdb.set_trace()
 
301
            self._fraction = completion_fraction
 
302
            markers = int(round(float(cols) * completion_fraction)) - 1
 
303
            bar_str = '[' + ('#' * markers + spin_str).ljust(cols) + '] '
 
304
            return bar_str
 
305
        elif self._last_task.show_spinner:
 
306
            # The last task wanted just a spinner, no bar
 
307
            spin_str =  r'/-\|'[self._spin_pos % 4]
 
308
            self._spin_pos += 1
 
309
            return spin_str + ' '
 
310
        else:
 
311
            return ''
 
312
 
 
313
    def _format_task(self, task):
 
314
        if not task.show_count:
 
315
            s = ''
 
316
        elif task.current_cnt is not None and task.total_cnt is not None:
 
317
            s = ' %d/%d' % (task.current_cnt, task.total_cnt)
 
318
        elif task.current_cnt is not None:
 
319
            s = ' %d' % (task.current_cnt)
 
320
        else:
 
321
            s = ''
 
322
        # compose all the parent messages
 
323
        t = task
 
324
        m = task.msg
 
325
        while t._parent_task:
 
326
            t = t._parent_task
 
327
            if t.msg:
 
328
                m = t.msg + ':' + m
 
329
        return m + s
 
330
 
 
331
    def _render_line(self):
 
332
        bar_string = self._render_bar()
 
333
        if self._last_task:
 
334
            task_msg = self._format_task(self._last_task)
 
335
        else:
 
336
            task_msg = ''
 
337
        if self._last_task and not self._last_task.show_transport_activity:
 
338
            trans = ''
 
339
        else:
 
340
            trans = self._last_transport_msg
 
341
            if trans:
 
342
                trans += ' | '
 
343
        return (bar_string + trans + task_msg)
 
344
 
 
345
    def _repaint(self):
 
346
        s = self._render_line()
 
347
        self._show_line(s)
 
348
        self._have_output = True
 
349
 
 
350
    def show_progress(self, task):
 
351
        """Called by the task object when it has changed.
 
352
        
 
353
        :param task: The top task object; its parents are also included 
 
354
            by following links.
 
355
        """
 
356
        must_update = task is not self._last_task
 
357
        self._last_task = task
 
358
        now = time.time()
 
359
        if (not must_update) and (now < self._last_repaint + task.update_latency):
 
360
            return
 
361
        if now > self._transport_update_time + 10:
 
362
            # no recent activity; expire it
 
363
            self._last_transport_msg = ''
 
364
        self._last_repaint = now
 
365
        self._repaint()
 
366
 
 
367
    def show_transport_activity(self, transport, direction, byte_count):
 
368
        """Called by transports via the ui_factory, as they do IO.
 
369
 
 
370
        This may update a progress bar, spinner, or similar display.
 
371
        By default it does nothing.
 
372
        """
 
373
        # XXX: Probably there should be a transport activity model, and that
 
374
        # too should be seen by the progress view, rather than being poked in
 
375
        # here.
 
376
        if not self._have_output:
 
377
            # As a workaround for <https://launchpad.net/bugs/321935> we only
 
378
            # show transport activity when there's already a progress bar
 
379
            # shown, which time the application code is expected to know to
 
380
            # clear off the progress bar when it's going to send some other
 
381
            # output.  Eventually it would be nice to have that automatically
 
382
            # synchronized.
 
383
            return
 
384
        self._total_byte_count += byte_count
 
385
        self._bytes_since_update += byte_count
 
386
        now = time.time()
 
387
        if self._total_byte_count < 2000:
 
388
            # a little resistance at first, so it doesn't stay stuck at 0
 
389
            # while connecting...
 
390
            return
 
391
        if self._transport_update_time is None:
 
392
            self._transport_update_time = now
 
393
        elif now >= (self._transport_update_time + 0.5):
 
394
            # guard against clock stepping backwards, and don't update too
 
395
            # often
 
396
            rate = self._bytes_since_update / (now - self._transport_update_time)
 
397
            msg = ("%6dKB %5dKB/s" %
 
398
                    (self._total_byte_count>>10, int(rate)>>10,))
 
399
            self._transport_update_time = now
 
400
            self._last_repaint = now
 
401
            self._bytes_since_update = 0
 
402
            self._last_transport_msg = msg
 
403
            self._repaint()
 
404
 
 
405
 
 
406
class TextUIOutputStream(object):
 
407
    """Decorates an output stream so that the terminal is cleared before writing.
 
408
 
 
409
    This is supposed to ensure that the progress bar does not conflict with bulk
 
410
    text output.
 
411
    """
 
412
    # XXX: this does not handle the case of writing part of a line, then doing
 
413
    # progress bar output: the progress bar will probably write over it.
 
414
    # one option is just to buffer that text until we have a full line;
 
415
    # another is to save and restore it
 
416
 
 
417
    # XXX: might need to wrap more methods
 
418
 
 
419
    def __init__(self, ui_factory, wrapped_stream):
 
420
        self.ui_factory = ui_factory
 
421
        self.wrapped_stream = wrapped_stream
 
422
        # this does no transcoding, but it must expose the underlying encoding
 
423
        # because some callers need to know what can be written - see for
 
424
        # example unescape_for_display.
 
425
        self.encoding = getattr(wrapped_stream, 'encoding', None)
 
426
 
 
427
    def flush(self):
 
428
        self.ui_factory.clear_term()
 
429
        self.wrapped_stream.flush()
 
430
 
 
431
    def write(self, to_write):
 
432
        self.ui_factory.clear_term()
 
433
        self.wrapped_stream.write(to_write)
 
434
 
 
435
    def writelines(self, lines):
 
436
        self.ui_factory.clear_term()
 
437
        self.wrapped_stream.writelines(lines)