~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Aaron Bentley
  • Date: 2005-09-18 19:21:48 UTC
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050918192148-3f9373ac85a83b02
Refactored and documented graph stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# indicators, preferably without needing to adjust all code that
31
31
# potentially calls them.
32
32
 
33
 
# TODO: Perhaps don't write updates faster than a certain rate, say
34
 
# 5/second.
 
33
# TODO: If not on a tty perhaps just print '......' for the benefit of IDEs, etc
35
34
 
36
35
# TODO: Optionally show elapsed time instead/as well as ETA; nicer
37
36
# when the rate is unpredictable
39
38
 
40
39
import sys
41
40
import time
 
41
import os
42
42
 
43
43
 
44
44
def _width():
49
49
    TODO: Is there anything that gets a better update when the window
50
50
          is resized while the program is running?
51
51
    """
52
 
    import os
53
52
    try:
54
53
        return int(os.environ['COLUMNS'])
55
54
    except (IndexError, KeyError, ValueError):
61
60
        return False
62
61
    if not f.isatty():
63
62
        return False
64
 
    import os
65
63
    if os.environ.get('TERM') == 'dumb':
66
64
        # e.g. emacs compile window
67
65
        return False
69
67
 
70
68
 
71
69
 
72
 
class ProgressBar(object):
 
70
def ProgressBar(to_file=sys.stderr, **kwargs):
 
71
    """Abstract factory"""
 
72
    if _supports_progress(to_file):
 
73
        return TTYProgressBar(to_file=to_file, **kwargs)
 
74
    else:
 
75
        return DotsProgressBar(to_file=to_file, **kwargs)
 
76
    
 
77
    
 
78
class _BaseProgressBar(object):
 
79
    def __init__(self,
 
80
                 to_file=sys.stderr,
 
81
                 show_pct=False,
 
82
                 show_spinner=False,
 
83
                 show_eta=True,
 
84
                 show_bar=True,
 
85
                 show_count=True):
 
86
        object.__init__(self)
 
87
        self.to_file = to_file
 
88
 
 
89
        self.last_msg = None
 
90
        self.last_cnt = None
 
91
        self.last_total = None
 
92
        self.show_pct = show_pct
 
93
        self.show_spinner = show_spinner
 
94
        self.show_eta = show_eta
 
95
        self.show_bar = show_bar
 
96
        self.show_count = show_count
 
97
 
 
98
 
 
99
 
 
100
class DummyProgress(_BaseProgressBar):
 
101
    """Progress-bar standin that does nothing.
 
102
 
 
103
    This can be used as the default argument for methods that
 
104
    take an optional progress indicator."""
 
105
    def tick(self):
 
106
        pass
 
107
 
 
108
    def update(self, msg=None, current=None, total=None):
 
109
        pass
 
110
 
 
111
    def clear(self):
 
112
        pass
 
113
        
 
114
    
 
115
class DotsProgressBar(_BaseProgressBar):
 
116
    def __init__(self, **kwargs):
 
117
        _BaseProgressBar.__init__(self, **kwargs)
 
118
        self.last_msg = None
 
119
        self.need_nl = False
 
120
        
 
121
    def tick(self):
 
122
        self.update()
 
123
        
 
124
    def update(self, msg=None, current_cnt=None, total_cnt=None):
 
125
        if msg and msg != self.last_msg:
 
126
            if self.need_nl:
 
127
                self.to_file.write('\n')
 
128
            
 
129
            self.to_file.write(msg + ': ')
 
130
            self.last_msg = msg
 
131
        self.need_nl = True
 
132
        self.to_file.write('.')
 
133
        
 
134
    def clear(self):
 
135
        if self.need_nl:
 
136
            self.to_file.write('\n')
 
137
        
 
138
    
 
139
class TTYProgressBar(_BaseProgressBar):
73
140
    """Progress bar display object.
74
141
 
75
142
    Several options are available to control the display.  These can
92
159
    SPIN_CHARS = r'/-\|'
93
160
    MIN_PAUSE = 0.1 # seconds
94
161
 
95
 
    start_time = None
96
 
    last_update = None
97
 
    
98
 
    def __init__(self,
99
 
                 to_file=sys.stderr,
100
 
                 show_pct=False,
101
 
                 show_spinner=False,
102
 
                 show_eta=True,
103
 
                 show_bar=True,
104
 
                 show_count=True):
105
 
        object.__init__(self)
106
 
        self.to_file = to_file
107
 
        self.suppressed = not _supports_progress(self.to_file)
 
162
 
 
163
    def __init__(self, **kwargs):
 
164
        _BaseProgressBar.__init__(self, **kwargs)
108
165
        self.spin_pos = 0
109
 
 
110
 
        self.last_msg = None
111
 
        self.last_cnt = None
112
 
        self.last_total = None
113
 
        self.show_pct = show_pct
114
 
        self.show_spinner = show_spinner
115
 
        self.show_eta = show_eta
116
 
        self.show_bar = show_bar
117
 
        self.show_count = show_count
118
 
 
119
166
        self.width = _width()
 
167
        self.start_time = None
 
168
        self.last_update = None
 
169
    
 
170
 
 
171
    def throttle(self):
 
172
        """Return True if the bar was updated too recently"""
 
173
        now = time.time()
 
174
        if self.start_time is None:
 
175
            self.start_time = self.last_update = now
 
176
            return False
 
177
        else:
 
178
            interval = now - self.last_update
 
179
            if interval > 0 and interval < self.MIN_PAUSE:
 
180
                return True
 
181
 
 
182
        self.last_update = now
 
183
        return False
120
184
        
121
185
 
122
186
    def tick(self):
126
190
 
127
191
    def update(self, msg, current_cnt=None, total_cnt=None):
128
192
        """Update and redraw progress bar."""
129
 
        if self.suppressed:
130
 
            return
131
193
 
132
194
        # save these for the tick() function
133
195
        self.last_msg = msg
134
196
        self.last_cnt = current_cnt
135
197
        self.last_total = total_cnt
136
198
            
137
 
        now = time.time()
138
 
        if self.start_time is None:
139
 
            self.start_time = now
140
 
        else:
141
 
            interval = now - self.last_update
142
 
            if interval > 0 and interval < self.MIN_PAUSE:
143
 
                return
144
 
 
145
 
        self.last_update = now
 
199
        if self.throttle():
 
200
            return 
146
201
        
147
202
        if total_cnt:
148
203
            assert current_cnt <= total_cnt
209
264
        #self.to_file.flush()
210
265
            
211
266
 
212
 
    def clear(self):
213
 
        if self.suppressed:
214
 
            return
215
 
        
 
267
    def clear(self):        
216
268
        self.to_file.write('\r%s\r' % (' ' * (self.width - 1)))
217
269
        #self.to_file.flush()        
218
270
    
263
315
 
264
316
 
265
317
def demo():
266
 
    from time import sleep
 
318
    sleep = time.sleep
 
319
    
 
320
    print 'dumb-terminal test:'
 
321
    pb = DotsProgressBar()
 
322
    for i in range(100):
 
323
        pb.update('Leoparden', i, 99)
 
324
        sleep(0.1)
 
325
    sleep(1.5)
 
326
    pb.clear()
 
327
    sleep(1.5)
 
328
    
 
329
    print 'smart-terminal test:'
267
330
    pb = ProgressBar(show_pct=True, show_bar=True, show_spinner=False)
268
331
    for i in range(100):
269
332
        pb.update('Elephanten', i, 99)
271
334
    sleep(2)
272
335
    pb.clear()
273
336
    sleep(1)
 
337
 
274
338
    print 'done!'
275
339
 
276
340
if __name__ == "__main__":