/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Martin Pool
  • Date: 2005-06-13 12:14:52 UTC
  • Revision ID: mbp@sourcefrog.net-20050613121452-c50982a6affa3782
- draft 'meta' command by john

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.show_pct = show_pct
 
105
        self.show_spinner = show_spinner
 
106
        self.show_eta = show_eta
 
107
        self.show_bar = show_bar
 
108
        self.show_count = show_count
 
109
 
 
110
 
 
111
    def tick(self):
 
112
        self.update(self.last_msg, self.last_cnt, self.last_total)
 
113
                 
 
114
 
 
115
 
 
116
    def update(self, msg, current_cnt=None, total_cnt=None):
 
117
        """Update and redraw progress bar."""
 
118
        if self.suppressed:
 
119
            return
 
120
 
 
121
        # save these for the tick() function
 
122
        self.last_msg = msg
 
123
        self.last_cnt = current_cnt
 
124
        self.last_total = total_cnt
 
125
            
 
126
        now = time.time()
 
127
        if self.start_time is None:
 
128
            self.start_time = now
 
129
        else:
 
130
            interval = now - self.last_update
 
131
            if interval > 0 and interval < self.MIN_PAUSE:
 
132
                return
 
133
 
 
134
        self.last_update = now
 
135
        
 
136
        width = _width()
 
137
 
 
138
        if total_cnt:
 
139
            assert current_cnt <= total_cnt
 
140
        if current_cnt:
 
141
            assert current_cnt >= 0
 
142
        
 
143
        if self.show_eta and self.start_time and total_cnt:
 
144
            eta = get_eta(self.start_time, current_cnt, total_cnt)
 
145
            eta_str = " " + str_tdelta(eta)
 
146
        else:
 
147
            eta_str = ""
 
148
 
 
149
        if self.show_spinner:
 
150
            spin_str = self.SPIN_CHARS[self.spin_pos % 4] + ' '            
 
151
        else:
 
152
            spin_str = ''
 
153
 
 
154
        # always update this; it's also used for the bar
 
155
        self.spin_pos += 1
 
156
 
 
157
        if self.show_pct and total_cnt and current_cnt:
 
158
            pct = 100.0 * current_cnt / total_cnt
 
159
            pct_str = ' (%5.1f%%)' % pct
 
160
        else:
 
161
            pct_str = ''
 
162
 
 
163
        if not self.show_count:
 
164
            count_str = ''
 
165
        elif current_cnt is None:
 
166
            count_str = ''
 
167
        elif total_cnt is None:
 
168
            count_str = ' %i' % (current_cnt)
 
169
        else:
 
170
            # make both fields the same size
 
171
            t = '%i' % (total_cnt)
 
172
            c = '%*i' % (len(t), current_cnt)
 
173
            count_str = ' ' + c + '/' + t 
 
174
 
 
175
        if self.show_bar:
 
176
            # progress bar, if present, soaks up all remaining space
 
177
            cols = width - 1 - len(msg) - len(spin_str) - len(pct_str) \
 
178
                   - len(eta_str) - len(count_str) - 3
 
179
 
 
180
            if total_cnt:
 
181
                # number of markers highlighted in bar
 
182
                markers = int(round(float(cols) * current_cnt / total_cnt))
 
183
                bar_str = '[' + ('=' * markers).ljust(cols) + '] '
 
184
            elif False:
 
185
                # don't know total, so can't show completion.
 
186
                # so just show an expanded spinning thingy
 
187
                m = self.spin_pos % cols
 
188
                ms = (' ' * m + '*').ljust(cols)
 
189
                
 
190
                bar_str = '[' + ms + '] '
 
191
            else:
 
192
                bar_str = ''
 
193
        else:
 
194
            bar_str = ''
 
195
 
 
196
        m = spin_str + bar_str + msg + count_str + pct_str + eta_str
 
197
 
 
198
        assert len(m) < width
 
199
        self.to_file.write('\r' + m.ljust(width - 1))
 
200
        #self.to_file.flush()
 
201
            
 
202
 
 
203
    def clear(self):
 
204
        if self.suppressed:
 
205
            return
 
206
        
 
207
        self.to_file.write('\r%s\r' % (' ' * (_width() - 1)))
 
208
        #self.to_file.flush()        
 
209
    
 
210
 
 
211
        
 
212
def str_tdelta(delt):
 
213
    if delt is None:
 
214
        return "-:--:--"
 
215
    delt = int(round(delt))
 
216
    return '%d:%02d:%02d' % (delt/3600,
 
217
                             (delt/60) % 60,
 
218
                             delt % 60)
 
219
 
 
220
 
 
221
def get_eta(start_time, current, total, enough_samples=3):
 
222
    if start_time is None:
 
223
        return None
 
224
 
 
225
    if not total:
 
226
        return None
 
227
 
 
228
    if current < enough_samples:
 
229
        return None
 
230
 
 
231
    if current > total:
 
232
        return None                     # wtf?
 
233
 
 
234
    elapsed = time.time() - start_time
 
235
 
 
236
    if elapsed < 2.0:                   # not enough time to estimate
 
237
        return None
 
238
    
 
239
    total_duration = float(elapsed) * float(total) / float(current)
 
240
 
 
241
    assert total_duration >= elapsed
 
242
 
 
243
    return total_duration - elapsed
 
244
 
 
245
 
 
246
def run_tests():
 
247
    import doctest
 
248
    result = doctest.testmod()
 
249
    if result[1] > 0:
 
250
        if result[0] == 0:
 
251
            print "All tests passed"
 
252
    else:
 
253
        print "No tests to run"
 
254
 
 
255
 
 
256
def demo():
 
257
    from time import sleep
 
258
    pb = ProgressBar(show_pct=True, show_bar=True, show_spinner=False)
 
259
    for i in range(100):
 
260
        pb.update('Elephanten', i, 99)
 
261
        sleep(0.1)
 
262
    sleep(2)
 
263
    pb.clear()
 
264
    sleep(1)
 
265
    print 'done!'
 
266
 
 
267
if __name__ == "__main__":
 
268
    demo()