~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Martin Pool
  • Date: 2005-06-15 06:03:16 UTC
  • Revision ID: mbp@sourcefrog.net-20050615060316-97b948fb1eade31f
Tags: bzr-0.0.5
0.0.5 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 Aaron Bentley <aaron.bentley@utoronto.ca>
 
2
# Copyright (C) 2005 Canonical <canonical.com>
 
3
#
 
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.
 
8
#
 
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.
 
13
#
 
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
 
17
 
 
18
 
 
19
"""
 
20
Simple text-mode progress indicator.
 
21
 
 
22
Everyone loves ascii art!
 
23
 
 
24
To display an indicator, create a ProgressBar object.  Call it,
 
25
passing Progress objects indicating the current state.  When done,
 
26
call clear().
 
27
 
 
28
Progress is suppressed when output is not sent to a terminal, so as
 
29
not to clutter log files.
 
30
"""
 
31
 
 
32
# TODO: remove functions in favour of keeping everything in one class
 
33
 
 
34
# TODO: should be a global option e.g. --silent that disables progress
 
35
# indicators, preferably without needing to adjust all code that
 
36
# potentially calls them.
 
37
 
 
38
# TODO: Perhaps don't write updates faster than a certain rate, say
 
39
# 5/second.
 
40
 
 
41
 
 
42
import sys
 
43
import time
 
44
 
 
45
 
 
46
def _width():
 
47
    """Return estimated terminal width.
 
48
 
 
49
    TODO: Do something smart on Windows?
 
50
 
 
51
    TODO: Is there anything that gets a better update when the window
 
52
          is resized while the program is running?
 
53
    """
 
54
    import os
 
55
    try:
 
56
        return int(os.environ['COLUMNS'])
 
57
    except (IndexError, KeyError, ValueError):
 
58
        return 80
 
59
 
 
60
 
 
61
def _supports_progress(f):
 
62
    return hasattr(f, 'isatty') and f.isatty()
 
63
 
 
64
 
 
65
 
 
66
class ProgressBar(object):
 
67
    """Progress bar display object.
 
68
 
 
69
    Several options are available to control the display.  These can
 
70
    be passed as parameters to the constructor or assigned at any time:
 
71
 
 
72
    show_pct
 
73
        Show percentage complete.
 
74
    show_spinner
 
75
        Show rotating baton.  This ticks over on every update even
 
76
        if the values don't change.
 
77
    show_eta
 
78
        Show predicted time-to-completion.
 
79
    show_bar
 
80
        Show bar graph.
 
81
    show_count
 
82
        Show numerical counts.
 
83
 
 
84
    The output file should be in line-buffered or unbuffered mode.
 
85
    """
 
86
    SPIN_CHARS = r'/-\|'
 
87
    MIN_PAUSE = 0.1 # seconds
 
88
 
 
89
    start_time = None
 
90
    last_update = None
 
91
    
 
92
    def __init__(self,
 
93
                 to_file=sys.stderr,
 
94
                 show_pct=False,
 
95
                 show_spinner=False,
 
96
                 show_eta=True,
 
97
                 show_bar=True,
 
98
                 show_count=True):
 
99
        object.__init__(self)
 
100
        self.to_file = to_file
 
101
        self.suppressed = not _supports_progress(self.to_file)
 
102
        self.spin_pos = 0
 
103
 
 
104
        self.last_msg = None
 
105
        self.last_cnt = None
 
106
        self.last_total = None
 
107
        self.show_pct = show_pct
 
108
        self.show_spinner = show_spinner
 
109
        self.show_eta = show_eta
 
110
        self.show_bar = show_bar
 
111
        self.show_count = show_count
 
112
 
 
113
 
 
114
    def tick(self):
 
115
        self.update(self.last_msg, self.last_cnt, self.last_total)
 
116
                 
 
117
 
 
118
 
 
119
    def update(self, msg, current_cnt=None, total_cnt=None):
 
120
        """Update and redraw progress bar."""
 
121
        if self.suppressed:
 
122
            return
 
123
 
 
124
        # save these for the tick() function
 
125
        self.last_msg = msg
 
126
        self.last_cnt = current_cnt
 
127
        self.last_total = total_cnt
 
128
            
 
129
        now = time.time()
 
130
        if self.start_time is None:
 
131
            self.start_time = now
 
132
        else:
 
133
            interval = now - self.last_update
 
134
            if interval > 0 and interval < self.MIN_PAUSE:
 
135
                return
 
136
 
 
137
        self.last_update = now
 
138
        
 
139
        width = _width()
 
140
 
 
141
        if total_cnt:
 
142
            assert current_cnt <= total_cnt
 
143
        if current_cnt:
 
144
            assert current_cnt >= 0
 
145
        
 
146
        if self.show_eta and self.start_time and total_cnt:
 
147
            eta = get_eta(self.start_time, current_cnt, total_cnt)
 
148
            eta_str = " " + str_tdelta(eta)
 
149
        else:
 
150
            eta_str = ""
 
151
 
 
152
        if self.show_spinner:
 
153
            spin_str = self.SPIN_CHARS[self.spin_pos % 4] + ' '            
 
154
        else:
 
155
            spin_str = ''
 
156
 
 
157
        # always update this; it's also used for the bar
 
158
        self.spin_pos += 1
 
159
 
 
160
        if self.show_pct and total_cnt and current_cnt:
 
161
            pct = 100.0 * current_cnt / total_cnt
 
162
            pct_str = ' (%5.1f%%)' % pct
 
163
        else:
 
164
            pct_str = ''
 
165
 
 
166
        if not self.show_count:
 
167
            count_str = ''
 
168
        elif current_cnt is None:
 
169
            count_str = ''
 
170
        elif total_cnt is None:
 
171
            count_str = ' %i' % (current_cnt)
 
172
        else:
 
173
            # make both fields the same size
 
174
            t = '%i' % (total_cnt)
 
175
            c = '%*i' % (len(t), current_cnt)
 
176
            count_str = ' ' + c + '/' + t 
 
177
 
 
178
        if self.show_bar:
 
179
            # progress bar, if present, soaks up all remaining space
 
180
            cols = width - 1 - len(msg) - len(spin_str) - len(pct_str) \
 
181
                   - len(eta_str) - len(count_str) - 3
 
182
 
 
183
            if total_cnt:
 
184
                # number of markers highlighted in bar
 
185
                markers = int(round(float(cols) * current_cnt / total_cnt))
 
186
                bar_str = '[' + ('=' * markers).ljust(cols) + '] '
 
187
            elif False:
 
188
                # don't know total, so can't show completion.
 
189
                # so just show an expanded spinning thingy
 
190
                m = self.spin_pos % cols
 
191
                ms = (' ' * m + '*').ljust(cols)
 
192
                
 
193
                bar_str = '[' + ms + '] '
 
194
            else:
 
195
                bar_str = ''
 
196
        else:
 
197
            bar_str = ''
 
198
 
 
199
        m = spin_str + bar_str + msg + count_str + pct_str + eta_str
 
200
 
 
201
        assert len(m) < width
 
202
        self.to_file.write('\r' + m.ljust(width - 1))
 
203
        #self.to_file.flush()
 
204
            
 
205
 
 
206
    def clear(self):
 
207
        if self.suppressed:
 
208
            return
 
209
        
 
210
        self.to_file.write('\r%s\r' % (' ' * (_width() - 1)))
 
211
        #self.to_file.flush()        
 
212
    
 
213
 
 
214
        
 
215
def str_tdelta(delt):
 
216
    if delt is None:
 
217
        return "-:--:--"
 
218
    delt = int(round(delt))
 
219
    return '%d:%02d:%02d' % (delt/3600,
 
220
                             (delt/60) % 60,
 
221
                             delt % 60)
 
222
 
 
223
 
 
224
def get_eta(start_time, current, total, enough_samples=3):
 
225
    if start_time is None:
 
226
        return None
 
227
 
 
228
    if not total:
 
229
        return None
 
230
 
 
231
    if current < enough_samples:
 
232
        return None
 
233
 
 
234
    if current > total:
 
235
        return None                     # wtf?
 
236
 
 
237
    elapsed = time.time() - start_time
 
238
 
 
239
    if elapsed < 2.0:                   # not enough time to estimate
 
240
        return None
 
241
    
 
242
    total_duration = float(elapsed) * float(total) / float(current)
 
243
 
 
244
    assert total_duration >= elapsed
 
245
 
 
246
    return total_duration - elapsed
 
247
 
 
248
 
 
249
def run_tests():
 
250
    import doctest
 
251
    result = doctest.testmod()
 
252
    if result[1] > 0:
 
253
        if result[0] == 0:
 
254
            print "All tests passed"
 
255
    else:
 
256
        print "No tests to run"
 
257
 
 
258
 
 
259
def demo():
 
260
    from time import sleep
 
261
    pb = ProgressBar(show_pct=True, show_bar=True, show_spinner=False)
 
262
    for i in range(100):
 
263
        pb.update('Elephanten', i, 99)
 
264
        sleep(0.1)
 
265
    sleep(2)
 
266
    pb.clear()
 
267
    sleep(1)
 
268
    print 'done!'
 
269
 
 
270
if __name__ == "__main__":
 
271
    demo()