1
# Copyright (C) 2005 Aaron Bentley <aaron.bentley@utoronto.ca>
 
 
2
# Copyright (C) 2005, 2006 Canonical <canonical.com>
 
 
4
#    This program is free software; you can redistribute it and/or modify
 
 
5
#    it under the terms of the GNU General Public License as published by
 
 
6
#    the Free Software Foundation; either version 2 of the License, or
 
 
7
#    (at your option) any later version.
 
 
9
#    This program is distributed in the hope that it will be useful,
 
 
10
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 
11
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
 
12
#    GNU General Public License for more details.
 
 
14
#    You should have received a copy of the GNU General Public License
 
 
15
#    along with this program; if not, write to the Free Software
 
 
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
19
"""Simple text-mode progress indicator.
 
 
21
To display an indicator, create a ProgressBar object.  Call it,
 
 
22
passing Progress objects indicating the current state.  When done,
 
 
25
Progress is suppressed when output is not sent to a terminal, so as
 
 
26
not to clutter log files.
 
 
29
# TODO: should be a global option e.g. --silent that disables progress
 
 
30
# indicators, preferably without needing to adjust all code that
 
 
31
# potentially calls them.
 
 
33
# TODO: If not on a tty perhaps just print '......' for the benefit of IDEs, etc
 
 
35
# TODO: Optionally show elapsed time instead/as well as ETA; nicer
 
 
36
# when the rate is unpredictable
 
 
42
from collections import deque
 
 
45
import bzrlib.errors as errors
 
 
46
from bzrlib.trace import mutter 
 
 
49
def _supports_progress(f):
 
 
50
    if not hasattr(f, 'isatty'):
 
 
54
    if os.environ.get('TERM') == 'dumb':
 
 
55
        # e.g. emacs compile window
 
 
61
def ProgressBar(to_file=sys.stderr, **kwargs):
 
 
62
    """Abstract factory"""
 
 
63
    if _supports_progress(to_file):
 
 
64
        return TTYProgressBar(to_file=to_file, **kwargs)
 
 
66
        return DotsProgressBar(to_file=to_file, **kwargs)
 
 
69
class ProgressBarStack(object):
 
 
70
    """A stack of progress bars."""
 
 
79
                 to_messages_file=sys.stdout,
 
 
81
        """Setup the stack with the parameters the progress bars should have."""
 
 
82
        self._to_file = to_file
 
 
83
        self._show_pct = show_pct
 
 
84
        self._show_spinner = show_spinner
 
 
85
        self._show_eta = show_eta
 
 
86
        self._show_bar = show_bar
 
 
87
        self._show_count = show_count
 
 
88
        self._to_messages_file = to_messages_file
 
 
90
        self._klass = klass or TTYProgressBar
 
 
93
        if len(self._stack) != 0:
 
 
94
            return self._stack[-1]
 
 
99
        """Return a nested progress bar."""
 
 
100
        if len(self._stack) == 0:
 
 
103
            func = self.top().child_progress
 
 
104
        new_bar = func(to_file=self._to_file,
 
 
105
                       show_pct=self._show_pct,
 
 
106
                       show_spinner=self._show_spinner,
 
 
107
                       show_eta=self._show_eta,
 
 
108
                       show_bar=self._show_bar,
 
 
109
                       show_count=self._show_count,
 
 
110
                       to_messages_file=self._to_messages_file,
 
 
112
        self._stack.append(new_bar)
 
 
115
    def return_pb(self, bar):
 
 
116
        """Return bar after its been used."""
 
 
117
        if bar is not self._stack[-1]:
 
 
118
            raise errors.MissingProgressBarFinish()
 
 
122
class _BaseProgressBar(object):
 
 
131
                 to_messages_file=sys.stdout,
 
 
133
        object.__init__(self)
 
 
134
        self.to_file = to_file
 
 
135
        self.to_messages_file = to_messages_file
 
 
138
        self.last_total = None
 
 
139
        self.show_pct = show_pct
 
 
140
        self.show_spinner = show_spinner
 
 
141
        self.show_eta = show_eta
 
 
142
        self.show_bar = show_bar
 
 
143
        self.show_count = show_count
 
 
147
        """Return this bar to its progress stack."""
 
 
149
        assert self._stack is not None
 
 
150
        self._stack.return_pb(self)
 
 
152
    def note(self, fmt_string, *args, **kwargs):
 
 
153
        """Record a note without disrupting the progress bar."""
 
 
155
        self.to_messages_file.write(fmt_string % args)
 
 
156
        self.to_messages_file.write('\n')
 
 
158
    def child_progress(self, **kwargs):
 
 
159
        return ChildProgress(**kwargs)
 
 
162
class DummyProgress(_BaseProgressBar):
 
 
163
    """Progress-bar standin that does nothing.
 
 
165
    This can be used as the default argument for methods that
 
 
166
    take an optional progress indicator."""
 
 
170
    def update(self, msg=None, current=None, total=None):
 
 
173
    def child_update(self, message, current, total):
 
 
179
    def note(self, fmt_string, *args, **kwargs):
 
 
180
        """See _BaseProgressBar.note()."""
 
 
182
    def child_progress(self, **kwargs):
 
 
183
        return DummyProgress(**kwargs)
 
 
185
class DotsProgressBar(_BaseProgressBar):
 
 
187
    def __init__(self, **kwargs):
 
 
188
        _BaseProgressBar.__init__(self, **kwargs)
 
 
195
    def update(self, msg=None, current_cnt=None, total_cnt=None):
 
 
196
        if msg and msg != self.last_msg:
 
 
198
                self.to_file.write('\n')
 
 
200
            self.to_file.write(msg + ': ')
 
 
203
        self.to_file.write('.')
 
 
207
            self.to_file.write('\n')
 
 
209
    def child_update(self, message, current, total):
 
 
212
class TTYProgressBar(_BaseProgressBar):
 
 
213
    """Progress bar display object.
 
 
215
    Several options are available to control the display.  These can
 
 
216
    be passed as parameters to the constructor or assigned at any time:
 
 
219
        Show percentage complete.
 
 
221
        Show rotating baton.  This ticks over on every update even
 
 
222
        if the values don't change.
 
 
224
        Show predicted time-to-completion.
 
 
228
        Show numerical counts.
 
 
230
    The output file should be in line-buffered or unbuffered mode.
 
 
233
    MIN_PAUSE = 0.1 # seconds
 
 
236
    def __init__(self, **kwargs):
 
 
237
        from bzrlib.osutils import terminal_width
 
 
238
        _BaseProgressBar.__init__(self, **kwargs)
 
 
240
        self.width = terminal_width()
 
 
241
        self.start_time = None
 
 
242
        self.last_update = None
 
 
243
        self.last_updates = deque()
 
 
244
        self.child_fraction = 0
 
 
248
        """Return True if the bar was updated too recently"""
 
 
250
        if self.start_time is None:
 
 
251
            self.start_time = self.last_update = now
 
 
254
            interval = now - self.last_update
 
 
255
            if interval > 0 and interval < self.MIN_PAUSE:
 
 
258
        self.last_updates.append(now - self.last_update)
 
 
259
        self.last_update = now
 
 
264
        self.update(self.last_msg, self.last_cnt, self.last_total, 
 
 
267
    def child_update(self, message, current, total):
 
 
268
        child_fraction = float(current) / total
 
 
269
        if self.last_cnt is None:
 
 
271
        elif self.last_cnt + child_fraction <= total:
 
 
272
            self.child_fraction = child_fraction
 
 
274
            mutter('not updating child fraction')
 
 
278
    def update(self, msg, current_cnt=None, total_cnt=None, 
 
 
280
        """Update and redraw progress bar."""
 
 
281
        self.child_fraction = child_fraction
 
 
286
        if current_cnt > total_cnt:
 
 
287
            total_cnt = current_cnt
 
 
289
        old_msg = self.last_msg
 
 
290
        # save these for the tick() function
 
 
292
        self.last_cnt = current_cnt
 
 
293
        self.last_total = total_cnt
 
 
295
        if old_msg == self.last_msg and self.throttle():
 
 
298
        if self.show_eta and self.start_time and total_cnt:
 
 
299
            eta = get_eta(self.start_time, current_cnt, total_cnt,
 
 
300
                    last_updates = self.last_updates)
 
 
301
            eta_str = " " + str_tdelta(eta)
 
 
305
        if self.show_spinner:
 
 
306
            spin_str = self.SPIN_CHARS[self.spin_pos % 4] + ' '            
 
 
310
        # always update this; it's also used for the bar
 
 
313
        if self.show_pct and total_cnt and current_cnt:
 
 
314
            pct = 100.0 * (current_cnt / total_cnt + child_fraction)
 
 
315
            pct_str = ' (%5.1f%%)' % pct
 
 
319
        if not self.show_count:
 
 
321
        elif current_cnt is None:
 
 
323
        elif total_cnt is None:
 
 
324
            count_str = ' %i' % (current_cnt)
 
 
326
            # make both fields the same size
 
 
327
            t = '%i' % (total_cnt)
 
 
328
            c = '%*i' % (len(t), current_cnt)
 
 
329
            count_str = ' ' + c + '/' + t 
 
 
332
            # progress bar, if present, soaks up all remaining space
 
 
333
            cols = self.width - 1 - len(msg) - len(spin_str) - len(pct_str) \
 
 
334
                   - len(eta_str) - len(count_str) - 3
 
 
337
                # number of markers highlighted in bar
 
 
338
                markers = int(round(float(cols) * current_cnt / total_cnt))
 
 
339
                bar_str = '[' + ('=' * markers).ljust(cols) + '] '
 
 
341
                # don't know total, so can't show completion.
 
 
342
                # so just show an expanded spinning thingy
 
 
343
                m = self.spin_pos % cols
 
 
344
                ms = (' ' * m + '*').ljust(cols)
 
 
346
                bar_str = '[' + ms + '] '
 
 
352
        m = spin_str + bar_str + msg + count_str + pct_str + eta_str
 
 
354
        assert len(m) < self.width
 
 
355
        self.to_file.write('\r' + m.ljust(self.width - 1))
 
 
356
        #self.to_file.flush()
 
 
359
        self.to_file.write('\r%s\r' % (' ' * (self.width - 1)))
 
 
360
        #self.to_file.flush()        
 
 
363
class ChildProgress(_BaseProgressBar):
 
 
364
    """A progress indicator that pushes its data to the parent"""
 
 
365
    def __init__(self, _stack, **kwargs):
 
 
366
        _BaseProgressBar.__init__(self, _stack=_stack, **kwargs)
 
 
367
        self.parent = _stack.top()
 
 
370
        self.child_fraction = 0
 
 
373
    def update(self, msg, current_cnt=None, total_cnt=None):
 
 
374
        self.current = current_cnt
 
 
375
        self.total = total_cnt
 
 
377
        self.child_fraction = 0
 
 
380
    def child_update(self, message, current, total):
 
 
381
        self.child_fraction = float(current) / total
 
 
385
        count = self.current+self.child_fraction
 
 
386
        if count > self.total:
 
 
387
            mutter('clamping count of %d to %d' % (count, self.total))
 
 
389
        self.parent.child_update(self.message, count, self.total)
 
 
395
def str_tdelta(delt):
 
 
398
    delt = int(round(delt))
 
 
399
    return '%d:%02d:%02d' % (delt/3600,
 
 
404
def get_eta(start_time, current, total, enough_samples=3, last_updates=None, n_recent=10):
 
 
405
    if start_time is None:
 
 
411
    if current < enough_samples:
 
 
417
    elapsed = time.time() - start_time
 
 
419
    if elapsed < 2.0:                   # not enough time to estimate
 
 
422
    total_duration = float(elapsed) * float(total) / float(current)
 
 
424
    assert total_duration >= elapsed
 
 
426
    if last_updates and len(last_updates) >= n_recent:
 
 
427
        while len(last_updates) > n_recent:
 
 
428
            last_updates.popleft()
 
 
429
        avg = sum(last_updates) / float(len(last_updates))
 
 
430
        time_left = avg * (total - current)
 
 
432
        old_time_left = total_duration - elapsed
 
 
434
        # We could return the average, or some other value here
 
 
435
        return (time_left + old_time_left) / 2
 
 
437
    return total_duration - elapsed
 
 
442
    result = doctest.testmod()
 
 
445
            print "All tests passed"
 
 
447
        print "No tests to run"
 
 
453
    print 'dumb-terminal test:'
 
 
454
    pb = DotsProgressBar()
 
 
456
        pb.update('Leoparden', i, 99)
 
 
462
    print 'smart-terminal test:'
 
 
463
    pb = ProgressBar(show_pct=True, show_bar=True, show_spinner=False)
 
 
465
        pb.update('Elephanten', i, 99)
 
 
473
if __name__ == "__main__":