/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
649 by Martin Pool
- some cleanups for the progressbar method
1
# Copyright (C) 2005 Aaron Bentley <aaron.bentley@utoronto.ca>
2
# Copyright (C) 2005 Canonical <canonical.com>
648 by Martin Pool
- import aaron's progress-indicator code
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
649 by Martin Pool
- some cleanups for the progressbar method
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
652 by Martin Pool
doc
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
655 by Martin Pool
- better calculation of progress bar position
38
# TODO: Perhaps don't write updates faster than a certain rate, say
39
# 5/second.
40
649 by Martin Pool
- some cleanups for the progressbar method
41
648 by Martin Pool
- import aaron's progress-indicator code
42
import sys
660 by Martin Pool
- use plain unix time, not datetime module
43
import time
648 by Martin Pool
- import aaron's progress-indicator code
44
649 by Martin Pool
- some cleanups for the progressbar method
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
648 by Martin Pool
- import aaron's progress-indicator code
66
class ProgressBar(object):
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
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'/-\|'
661 by Martin Pool
- limit rate at which progress bar is updated
87
    MIN_PAUSE = 0.1 # seconds
88
89
    start_time = None
90
    last_update = None
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
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):
649 by Martin Pool
- some cleanups for the progressbar method
99
        object.__init__(self)
100
        self.to_file = to_file
101
        self.suppressed = not _supports_progress(self.to_file)
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
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, total_cnt=None):
117
        """Update and redraw progress bar."""
661 by Martin Pool
- limit rate at which progress bar is updated
118
        if self.suppressed:
119
            return
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
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
            
661 by Martin Pool
- limit rate at which progress bar is updated
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
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
133
661 by Martin Pool
- limit rate at which progress bar is updated
134
        self.last_update = now
135
        
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
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
            else:
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 = ' ' * cols
189
                ms[m] = '*'
190
                
191
                bar_str = '[' + ms + '] '
192
        else:
193
            bar_str = ''
194
195
        m = spin_str + bar_str + msg + count_str + pct_str + eta_str
196
197
        assert len(m) < width
198
        self.to_file.write('\r' + m.ljust(width - 1))
199
        #self.to_file.flush()
200
            
649 by Martin Pool
- some cleanups for the progressbar method
201
202
    def clear(self):
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
203
        if self.suppressed:
204
            return
205
        
206
        self.to_file.write('\r%s\r' % (' ' * (_width() - 1)))
207
        #self.to_file.flush()        
649 by Martin Pool
- some cleanups for the progressbar method
208
    
209
648 by Martin Pool
- import aaron's progress-indicator code
210
        
211
def str_tdelta(delt):
212
    if delt is None:
213
        return "-:--:--"
660 by Martin Pool
- use plain unix time, not datetime module
214
    delt = int(round(delt))
215
    return '%d:%02d:%02d' % (delt/3600,
216
                             (delt/60) % 60,
217
                             delt % 60)
218
219
220
def get_eta(start_time, current, total, enough_samples=3):
221
    if start_time is None:
222
        return None
223
224
    if not total:
225
        return None
226
227
    if current < enough_samples:
228
        return None
229
230
    if current > total:
231
        return None                     # wtf?
232
233
    elapsed = time.time() - start_time
234
235
    if elapsed < 2.0:                   # not enough time to estimate
236
        return None
237
    
238
    total_duration = float(elapsed) * float(total) / float(current)
239
240
    assert total_duration >= elapsed
241
242
    return total_duration - elapsed
648 by Martin Pool
- import aaron's progress-indicator code
243
649 by Martin Pool
- some cleanups for the progressbar method
244
648 by Martin Pool
- import aaron's progress-indicator code
245
def run_tests():
246
    import doctest
247
    result = doctest.testmod()
248
    if result[1] > 0:
249
        if result[0] == 0:
250
            print "All tests passed"
251
    else:
252
        print "No tests to run"
649 by Martin Pool
- some cleanups for the progressbar method
253
254
255
def demo():
256
    from time import sleep
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
257
    pb = ProgressBar(show_pct=True, show_bar=True, show_spinner=False)
649 by Martin Pool
- some cleanups for the progressbar method
258
    for i in range(100):
658 by Martin Pool
- clean up and add a bunch of options to the progress indicator
259
        pb.update('Elephanten', i, 99)
260
        sleep(0.1)
261
    sleep(2)
262
    pb.clear()
263
    sleep(1)
649 by Martin Pool
- some cleanups for the progressbar method
264
    print 'done!'
265
648 by Martin Pool
- import aaron's progress-indicator code
266
if __name__ == "__main__":
649 by Martin Pool
- some cleanups for the progressbar method
267
    demo()