~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: Ian Clatworthy
  • Date: 2009-01-19 02:24:15 UTC
  • mto: This revision was merged to the branch mainline in revision 3944.
  • Revision ID: ian.clatworthy@canonical.com-20090119022415-mo0mcfeiexfktgwt
apply jam's log --short fix (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
2
 
 
 
1
# Copyright (C) 2005, 2008 Canonical Ltd
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
"""Text UI, write output to the console.
20
20
"""
21
21
 
 
22
import sys
 
23
import time
 
24
 
 
25
from bzrlib.lazy_import import lazy_import
 
26
lazy_import(globals(), """
22
27
import getpass
23
 
import sys
24
 
 
25
 
import bzrlib.progress
26
 
from bzrlib.symbol_versioning import *
 
28
 
 
29
from bzrlib import (
 
30
    progress,
 
31
    osutils,
 
32
    symbol_versioning,
 
33
    )
 
34
 
 
35
""")
 
36
 
27
37
from bzrlib.ui import CLIUIFactory
28
38
 
29
39
 
32
42
 
33
43
    def __init__(self,
34
44
                 bar_type=None,
 
45
                 stdin=None,
35
46
                 stdout=None,
36
47
                 stderr=None):
37
48
        """Create a TextUIFactory.
38
49
 
39
50
        :param bar_type: The type of progress bar to create. It defaults to 
40
51
                         letting the bzrlib.progress.ProgressBar factory auto
41
 
                         select.
 
52
                         select.   Deprecated.
42
53
        """
43
 
        super(TextUIFactory, self).__init__()
44
 
        self._bar_type = bar_type
45
 
        if stdout is None:
46
 
            self.stdout = sys.stdout
47
 
        else:
48
 
            self.stdout = stdout
49
 
        if stderr is None:
50
 
            self.stderr = sys.stderr
51
 
        else:
52
 
            self.stderr = stderr
 
54
        super(TextUIFactory, self).__init__(stdin=stdin,
 
55
                stdout=stdout, stderr=stderr)
 
56
        if bar_type:
 
57
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 11, 0))
 
58
                % "bar_type parameter")
 
59
        # paints progress, network activity, etc
 
60
        self._progress_view = TextProgressView(self.stderr)
53
61
 
54
62
    def prompt(self, prompt):
55
63
        """Emit prompt on the CLI."""
56
 
        self.stdout.write(prompt + "? [y/n]:")
57
 
        
58
 
    @deprecated_method(zero_eight)
59
 
    def progress_bar(self):
60
 
        """See UIFactory.nested_progress_bar()."""
61
 
        # this in turn is abstract, and creates either a tty or dots
62
 
        # bar depending on what we think of the terminal
63
 
        return bzrlib.progress.ProgressBar()
64
 
 
65
 
    def get_password(self, prompt='', **kwargs):
66
 
        """Prompt the user for a password.
67
 
 
68
 
        :param prompt: The prompt to present the user
69
 
        :param kwargs: Arguments which will be expanded into the prompt.
70
 
                       This lets front ends display different things if
71
 
                       they so choose.
72
 
        :return: The password string, return None if the user 
73
 
                 canceled the request.
74
 
        """
75
 
        prompt = (prompt % kwargs).encode(sys.stdout.encoding, 'replace')
76
 
        prompt += ': '
77
 
        try:
78
 
            return getpass.getpass(prompt)
79
 
        except KeyboardInterrupt:
80
 
            return None
81
 
 
82
 
    def nested_progress_bar(self):
83
 
        """Return a nested progress bar.
84
 
        
85
 
        The actual bar type returned depends on the progress module which
86
 
        may return a tty or dots bar depending on the terminal.
87
 
        """
88
 
        if self._progress_bar_stack is None:
89
 
            self._progress_bar_stack = bzrlib.progress.ProgressBarStack(
90
 
                klass=self._bar_type)
91
 
        return self._progress_bar_stack.get_nested()
92
 
 
 
64
        self.stdout.write(prompt)
 
65
        
93
66
    def clear_term(self):
94
67
        """Prepare the terminal for output.
95
68
 
96
69
        This will, clear any progress bars, and leave the cursor at the
97
70
        leftmost position."""
98
 
        if self._progress_bar_stack is None:
 
71
        # XXX: If this is preparing to write to stdout, but that's for example
 
72
        # directed into a file rather than to the terminal, and the progress
 
73
        # bar _is_ going to the terminal, we shouldn't need
 
74
        # to clear it.  We might need to separately check for the case of 
 
75
        self._progress_view.clear()
 
76
 
 
77
    def note(self, msg):
 
78
        """Write an already-formatted message, clearing the progress bar if necessary."""
 
79
        self.clear_term()
 
80
        self.stdout.write(msg + '\n')
 
81
 
 
82
    def report_transport_activity(self, transport, byte_count, direction):
 
83
        """Called by transports as they do IO.
 
84
        
 
85
        This may update a progress bar, spinner, or similar display.
 
86
        By default it does nothing.
 
87
        """
 
88
        self._progress_view.show_transport_activity(byte_count)
 
89
 
 
90
    def show_progress(self, task):
 
91
        """A task has been updated and wants to be displayed.
 
92
        """
 
93
        self._progress_view.show_progress(task)
 
94
 
 
95
    def progress_finished(self, task):
 
96
        CLIUIFactory.progress_finished(self, task)
 
97
        if not self._task_stack:
 
98
            # finished top-level task
 
99
            self._progress_view.clear()
 
100
 
 
101
 
 
102
class TextProgressView(object):
 
103
    """Display of progress bar and other information on a tty.
 
104
    
 
105
    This shows one line of text, including possibly a network indicator, spinner, 
 
106
    progress bar, message, etc.
 
107
 
 
108
    One instance of this is created and held by the UI, and fed updates when a
 
109
    task wants to be painted.
 
110
 
 
111
    Transports feed data to this through the ui_factory object.
 
112
    """
 
113
 
 
114
    def __init__(self, term_file):
 
115
        self._term_file = term_file
 
116
        # true when there's output on the screen we may need to clear
 
117
        self._have_output = False
 
118
        # XXX: We could listen for SIGWINCH and update the terminal width...
 
119
        self._width = osutils.terminal_width()
 
120
        self._last_transport_msg = ''
 
121
        self._spin_pos = 0
 
122
        # time we last repainted the screen
 
123
        self._last_repaint = 0
 
124
        # time we last got information about transport activity
 
125
        self._transport_update_time = 0
 
126
        self._task_fraction = None
 
127
        self._last_task = None
 
128
        self._total_byte_count = 0
 
129
        self._bytes_since_update = 0
 
130
 
 
131
    def _show_line(self, s):
 
132
        n = self._width - 1
 
133
        self._term_file.write('\r%-*.*s\r' % (n, n, s))
 
134
 
 
135
    def clear(self):
 
136
        if self._have_output:
 
137
            self._show_line('')
 
138
        self._have_output = False
 
139
 
 
140
    def _render_bar(self):
 
141
        # return a string for the progress bar itself
 
142
        if (self._last_task is not None) and self._last_task.show_bar:
 
143
            spin_str =  r'/-\|'[self._spin_pos % 4]
 
144
            self._spin_pos += 1
 
145
            f = self._task_fraction or 0
 
146
            cols = 20
 
147
            # number of markers highlighted in bar
 
148
            markers = int(round(float(cols) * f)) - 1
 
149
            bar_str = '[' + ('#' * markers + spin_str).ljust(cols) + '] '
 
150
            return bar_str
 
151
        elif (self._last_task is None) or self._last_task.show_spinner:
 
152
            spin_str =  r'/-\|'[self._spin_pos % 4]
 
153
            self._spin_pos += 1
 
154
            return spin_str + ' '
 
155
        else:
 
156
            return ''
 
157
 
 
158
    def _format_task(self, task):
 
159
        if not task.show_count:
 
160
            s = ''
 
161
        elif task.total_cnt is not None:
 
162
            s = ' %d/%d' % (task.current_cnt, task.total_cnt)
 
163
        elif task.current_cnt is not None:
 
164
            s = ' %d' % (task.current_cnt)
 
165
        else:
 
166
            s = ''
 
167
        self._task_fraction = task._overall_completion_fraction()
 
168
        # compose all the parent messages
 
169
        t = task
 
170
        m = task.msg
 
171
        while t._parent_task:
 
172
            t = t._parent_task
 
173
            if t.msg:
 
174
                m = t.msg + ':' + m
 
175
        return m + s
 
176
 
 
177
    def _repaint(self):
 
178
        bar_string = self._render_bar()
 
179
        if self._last_task:
 
180
            task_msg = self._format_task(self._last_task)
 
181
        else:
 
182
            task_msg = ''
 
183
        trans = self._last_transport_msg
 
184
        if trans and task_msg:
 
185
            trans += ' | '
 
186
        s = (bar_string
 
187
             + trans
 
188
             + task_msg
 
189
             )
 
190
        self._show_line(s)
 
191
        self._have_output = True
 
192
 
 
193
    def show_progress(self, task):
 
194
        self._last_task = task
 
195
        now = time.time()
 
196
        if now < self._last_repaint + 0.1:
99
197
            return
100
 
        overall_pb = self._progress_bar_stack.bottom()
101
 
        if overall_pb is not None:
102
 
            overall_pb.clear()
 
198
        if now > self._transport_update_time + 5:
 
199
            # no recent activity; expire it
 
200
            self._last_transport_msg = ''
 
201
        self._last_repaint = now
 
202
        self._repaint()
 
203
 
 
204
    def show_transport_activity(self, byte_count):
 
205
        """Called by transports as they do IO.
 
206
        
 
207
        This may update a progress bar, spinner, or similar display.
 
208
        By default it does nothing.
 
209
        """
 
210
        # XXX: Probably there should be a transport activity model, and that
 
211
        # too should be seen by the progress view, rather than being poked in
 
212
        # here.
 
213
        self._total_byte_count += byte_count
 
214
        self._bytes_since_update += byte_count
 
215
        now = time.time()
 
216
        if self._transport_update_time is None:
 
217
            self._transport_update_time = now
 
218
        elif now >= (self._transport_update_time + 0.2):
 
219
            # guard against clock stepping backwards, and don't update too
 
220
            # often
 
221
            rate = self._bytes_since_update / (now - self._transport_update_time)
 
222
            msg = ("%6dkB @ %4dkB/s" %
 
223
                (self._total_byte_count>>10, int(rate)>>10,))
 
224
            self._transport_update_time = now
 
225
            self._last_repaint = now
 
226
            self._bytes_since_update = 0
 
227
            self._last_transport_msg = msg
 
228
            self._repaint()
 
229
 
 
230