-
Notifications
You must be signed in to change notification settings - Fork 53
/
speedometer.py
executable file
·1423 lines (1127 loc) · 41 KB
/
speedometer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python
# speedometer.py
# Copyright (C) 2001-2012 Ian Ward
#
# This module is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This module is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
import time
import sys
import os
import string
import math
import re
import psutil
import threading
import subprocess
import select
import pkg_resources
try:
__version__ = pkg_resources.get_distribution('speedometer').version
except pkg_resources.DistributionNotFound:
# Not installed yet.
__version__ = 'develop'
__usage__ = """Usage: speedometer [options] tap [[-c] tap]...
Monitor network traffic or speed/progress of a file transfer. At least one
tap must be entered. -c starts a new column, otherwise taps are piled
vertically.
Taps:
-f filename [size] display download speed [with progress bar]
-r network-interface display bytes received on network-interface
-t network-interface display bytes transmitted on network-interface
-d command display bytes received from running shell command standard output
-c start a new column for following tap arguments
Options:
-b use old blocky display instead of smoothed
display even when UTF-8 encoding is detected
(use this if you see strange characters)
-i interval-in-seconds eg. "5" or "0.25" default: "1"
-k (1|16|88|256) set the number of colors this terminal
supports (default 16)
-l use linear charts instead of logarithmic
you will VERY LIKELY want to set -m as well
-m chart-maximum set the maximum bytes/second displayed on
the chart (default 2^32)
-n chart-minimum set the minimum bytes/second displayed on
the chart (default 32)
-p use original plain-text display (one tap only)
default is Yes if data source is from standard input
-s use bits/s instead of bytes/s
-x exit when files reach their expected size
-z report zero size on files that don't exist
instead of waiting for them to be created
Note: -rx and -tx are accepted as aliases for -r and -t for compatibility
with earlier releases of speedometer. -f may be also omitted for similar
reasons.
"""
__urwid_info__ = """
Speedometer requires Urwid 0.9.9.1 or later when not using plain-text display.
Urwid may be downloaded from: http://excess.org/urwid/
Urwid may be installed system-wide or in the same directory as speedometer.
"""
INITIAL_DELAY = 0.5 # seconds
INTERVAL_DELAY = 1.0 # seconds
VALID_NUM_COLORS = (1, 16, 88, 256)
# FIXME: these globals are becoming a pain
# time for more encapsulation, maybe even per-chart settings?
logarithmic_scale = True
units_per_second = 'bytes'
chart_minimum = 2**5
chart_maximum = 2**32
graph_scale = None
def update_scale():
"""
parse_args has set chart min/max, units_per_second and logarithmic_scale
use those settings to generate a scale of values for the LHS of the graph
"""
global graph_scale
if logarithmic_scale:
# be lazy and just use the same scale we always have
predefined = {
'bytes': [
(2**10, ' 1KiB\n /s'),
(2**15, '32KiB\n /s'),
(2**20, ' 1MiB\n /s'),
(2**25, '32MiB\n /s'),
(2**30, ' 1GiB\n /s'),
], 'bits': [
(2**7, ' 1Kib\n /s'),
(2**12, '32Kib\n /s'),
(2**17, ' 1Mib\n /s'),
(2**22, '32Mib\n /s'),
(2**27, ' 1Gib\n /s'),
]}
graph_scale = [(s, label) for s, label in
predefined[units_per_second] if chart_minimum < s < chart_maximum]
return
# linear, we need to generate one
granularity = math.log(graph_range(), 2)
granularity -= 2 # magic number, creates at least 4 lines on the scale
granularity = 2**int(granularity) # only want proper powers of two
n, r = divmod(chart_minimum, granularity)
n = n * granularity + (granularity if r else 0)
graph_scale = []
while n < chart_maximum:
graph_scale.append((n, readable_speed(n)))
n += granularity
def graph_min():
return math.log(chart_minimum,2) if logarithmic_scale else chart_minimum
def graph_max():
return math.log(chart_maximum,2) if logarithmic_scale else chart_maximum
def graph_range(): return graph_max() - graph_min()
def graph_lines_captions():
s = graph_scale
if logarithmic_scale:
s = [(math.log(x, 2), cap) for x, cap in s]
# XXX: quick hack to make this work like it used to
delta = graph_min()
s = [(x - delta, cap) for x, cap in s]
return list(reversed(s))
def graph_lines(): return [x[0] for x in graph_lines_captions()]
URWID_IMPORTED = False
URWID_UTF8 = False
try:
import urwid
if urwid.VERSION >= (0, 9, 9, 1):
URWID_IMPORTED = True
URWID_UTF8 = urwid.get_encoding_mode() == "utf8"
except (ImportError, AttributeError):
pass
class Speedometer:
def __init__(self,maxlog=5):
"""speedometer(maxlog=5)
maxlog is the number of readings that will be stored"""
self.log = []
self.start = None
self.maxlog = maxlog
def get_log(self):
return self.log
def update(self, bytes):
"""update(bytes) => None
add a byte reading to the log"""
t = time.time()
reading = (t,bytes)
if not self.start: self.start = reading
self.log.append(reading)
self.log = self.log[ - (self.maxlog+1):]
def delta(self, readings=0, skip=0):
"""delta(readings=0) -> time passed, byte increase
if readings is 0, time since start is given
don't include the last 'skip' readings
None is returned if not enough data available"""
assert readings >= 0
assert readings <= self.maxlog, "Log is not long enough to satisfy request"
assert skip >= 0
if skip > 0: assert readings > 0, "Can't skip when reading all"
if skip > len(self.log)-1: return # not enough data
current = self.log[-1 -skip]
target = None
if readings == 0: target = self.start
elif len(self.log) > readings+skip:
target = self.log[-(readings+skip+1)]
if not target: return # not enough data
if target == current: return
byte_increase = current[1]-target[1]
time_passed = current[0]-target[0]
return time_passed, byte_increase
def speed(self, *l, **d):
d = self.delta(*l, **d)
if d:
return delta_to_speed(d)
class EndOfData(Exception):
pass
class MultiGraphDisplay(object):
def __init__(self, cols, urwid_ui, exit_on_complete, shiny_colors):
smoothed = urwid_ui == "smoothed"
self.displays = []
l = []
for c in cols:
a = []
for tap in c:
if tap.ftype == 'file_exp':
d = GraphDisplayProgress(tap, smoothed)
else:
d = GraphDisplay(tap, smoothed)
if shiny_colors:
d = ShinyMap(d, shiny_colors)
a.append(d)
self.displays.append(d)
l.append(a)
graphs = urwid.Columns([urwid.Pile(a) for a in l], 1)
graphs = urwid.AttrWrap(graphs, 'background')
title = urwid.Text(" Speedometer "+__version__)
title = urwid.AttrWrap(urwid.Filler(title), 'title')
self.top = urwid.Overlay(title, graphs,
('fixed left', 5), 17, ('fixed top', 0), 1)
self.urwid_ui = urwid_ui
self.exit_on_complete = exit_on_complete
palette = [
# name, 16-color fg, bg, mono fg, 88/256-color fg, bg
# main bar graph
('background', 'dark gray', '', '', 'g20', 'g70'),
('bar:top', 'dark cyan', '', '', '#488', ''),
('bar', '', 'dark cyan','standout', '', '#488'),
('bar:num', '', '', '', '#066', 'g70'),
# latest "curved" + average bar graph at right side
('ca:background', '', '', '', '', ''),
('ca:c:top', 'dark blue', '', '', '#66d', ''),
('ca:c', '', 'dark blue','standout', '', '#66d'),
('ca:c:num', 'light blue','', '', '#006', 'g70'),
('ca:a:top', 'light gray','', '', '#6b6', ''),
('ca:a', '', 'light gray','standout','', '#6b6'),
('ca:a:num', 'light gray','', 'bold', '#060', 'g70'),
# text headings and numeric values displayed
('title', '', '', 'underline,bold', '#fff,bold', '#488'),
('reading', '', '', '', '#886', 'g70'),
# progress bar
('pr:n', '', 'dark blue','', 'g11', '#bb6'),
('pr:c', '', 'dark green','standout','g11', '#fd0'),
('pr:cn', 'dark green','dark blue','', '#fd0', '#bb6'),
]
def main(self, num_colors):
self.loop = urwid.MainLoop(self.top, palette=self.palette, unhandled_input=self.unhandled_input)
self.loop.screen.set_terminal_properties(colors=num_colors)
try:
pending = self.update_readings()
if self.exit_on_complete and pending == 0: return
except EndOfData:
return
time.sleep(INITIAL_DELAY)
self.update_callback()
self.loop.run()
def unhandled_input(self, key):
"Exit on Q or ESC"
if key in ('q', 'Q', 'esc'):
SubprocessJobQueue.stop_all_job()
StdinJobQueue.stop_all_job()
raise urwid.ExitMainLoop()
def update_callback(self, *args):
next_call_in = INTERVAL_DELAY
if isinstance(time, SimulatedTime):
next_call_in = 0
time.sleep(INTERVAL_DELAY) # update simulated time
self.loop.set_alarm_in(next_call_in, self.update_callback)
try:
pending = self.update_readings()
if self.exit_on_complete and pending == 0: return
except EndOfData:
self.end_of_data()
raise urwid.ExitMainLoop()
def update_readings(self):
pending = 0
for d in self.displays:
if d.base_widget.update_readings(): pending += 1
return pending
def end_of_data(self):
# pause for taking screenshot of simulated data
if isinstance(time, SimulatedTime):
while not self.loop.screen.get_input():
pass
class GraphDisplay(urwid.WidgetWrap):
def __init__(self,tap, smoothed):
if smoothed:
self.speed_graph = SpeedGraph(
['background','bar'],
['background','bar'],
{(1,0):'bar:top'})
self.cagraph = urwid.BarGraph(
['ca:background', 'ca:c', 'ca:a'],
['ca:background', 'ca:c', 'ca:a'],
{(1,0):'ca:c:top', (2,0):'ca:a:top', })
else:
self.speed_graph = SpeedGraph([
('background', ' '), ('bar', ' ')],
['background', 'bar'])
self.cagraph = urwid.BarGraph([
('ca:background', ' '),
('ca:c',' '),
('ca:a',' '),]
)
self.last_reading = urwid.Text("",align="right")
scale = urwid.GraphVScale(graph_lines_captions(), graph_range())
footer = self.last_reading
graph_cols = urwid.Columns([('fixed', 5, scale),
self.speed_graph, ('fixed', 4, self.cagraph)],
dividechars = 1)
self.top = urwid.Frame(graph_cols, footer=footer)
self.spd = Speedometer(6)
self.feed = tap.feed
self.description = tap.description()
super(GraphDisplay, self).__init__(self.top)
def update_readings(self):
f = self.feed()
if f is None: raise EndOfData
self.spd.update(f)
s = self.spd.speed(1) # last sample
c = curve(self.spd) # "curved" reading
a = self.spd.speed() # running average
self.speed_graph.append_log(s)
self.last_reading.set_text([
('title', [self.description, " "]),
('bar:num', [readable_speed(s), " "]),
('ca:c:num',[readable_speed(c), " "]),
('ca:a:num',readable_speed(a)) ])
self.cagraph.set_data([
[speed_scale(c),0],
[0,speed_scale(a)],
], graph_range())
class GraphDisplayProgress(GraphDisplay):
def __init__(self, tap, smoothed):
GraphDisplay.__init__(self, tap, smoothed)
self.spd = FileProgress(6, tap.expected_size)
if smoothed:
self.pb = urwid.ProgressBar('pr:n','pr:c',0,
tap.expected_size, 'pr:cn')
else:
self.pb = urwid.ProgressBar('pr:n','pr:c',0,
tap.expected_size)
self.est = urwid.Text("")
pbest = urwid.Columns([self.pb,('fixed',10,self.est)], 1)
newfoot = urwid.Pile([self.top.footer, pbest])
self.top.footer = newfoot
def update_readings(self):
GraphDisplay.update_readings(self)
current, expected = self.spd.progress()
self.pb.set_completion(current)
e = self.spd.completion_estimate()
if e is not None:
self.est.set_text(readable_time(e,10))
return current < expected
class SpeedGraph:
def __init__(self, attlist, hatt=None, satt=None):
if satt is None:
self.graph = urwid.BarGraph(attlist, hatt)
else:
self.graph = urwid.BarGraph(attlist, hatt, satt)
# override BarGraph's get_data
self.graph.get_data = self.get_data
self.smoothed = satt is not None
self.log = []
self.bar = []
def get_data(self, max_col_row):
maxcol, maxrow = max_col_row
bar = self.bar[-maxcol:]
if len(bar) < maxcol:
bar = [[0]]*(maxcol-len(bar)) + bar
return bar, graph_range(), graph_lines()
def selectable(self):
return False
def render(self, max_col_row, focus=False):
maxcol, maxrow = max_col_row
left = max(0, len(self.log)-maxcol)
pad = maxcol-(len(self.log)-left)
topl = self.local_maximums(pad, left)
yvals = [ max(self.bar[i]) for i in topl ]
yvals = urwid.scale_bar_values(yvals, graph_range(), maxrow)
graphtop = self.graph
for i,y in zip(topl, yvals):
s = self.log[ i ]
txt = urwid.Text(readable_speed(s))
label = urwid.AttrWrap(urwid.Filler(txt), 'reading')
graphtop = urwid.Overlay(label, graphtop,
('fixed left', pad+i-4-left), 10,
('fixed top', max(0,y-2)), 1)
return graphtop.render((maxcol, maxrow), focus)
def local_maximums(self, pad, left):
"""
Generate a list of indexes for the local maximums in self.log
"""
ldist, rdist = 4,5
l = self.log
if len(l) <= ldist+rdist:
return []
dist = ldist+rdist
highs = []
for i in range(left+max(0, ldist-pad),len(l)-rdist+1):
li = l[i]
if li == 0: continue
if i and l[i-1] is not None and l[i-1]>=li: continue
if li is None or l[i+1]>li: continue
highs.append((li, -i))
highs.sort()
highs.reverse()
tag = [False]*len(l)
out = []
for li, i in highs:
i=-i
if tag[i]: continue
for k in range(max(0,i-dist), min(len(l),i+dist)):
tag[k]=True
out.append(i)
return out
def append_log(self, s):
x = speed_scale(s)
o = [x]
self.bar = self.bar[-300:] + [o]
self.log = self.log[-300:] + [s]
def speed_scale(s):
if s is None or s <= 0: return 0
if logarithmic_scale:
s = math.log(s, 2)
s = min(graph_range(), max(0, s-graph_min()))
return s
def delta_to_speed(delta):
"""delta_to_speed(delta) -> speed in bytes per second"""
time_passed, byte_increase = delta
if time_passed <= 0: return 0
if int(time_passed*1000) == 0: return 0
return int(byte_increase*1000)/int(time_passed*1000)
def readable_speed(speed):
"""
readable_speed(speed) -> string
speed is in bytes per second
returns a readable version of the speed given
"""
if speed == None or speed < 0: speed = 0
units = "B/s ", "KiB/s", "MiB/s", "GiB/s", "TiB/s"
step = 1
for u in units:
if step > 1:
s = "%4.2f " %(float(speed)/step)
if len(s) <= 5: return s + u
s = "%4.1f " %(float(speed)/step)
if len(s) <= 5: return s + u
if speed/step < 1024:
return "%4d " %(speed/step) + u
step = step * 1024
return "%4d " % (speed/(step/1024)) + units[-1]
def readable_speed_bits(speed):
"""
bits/s version of readable_speed()
"""
if speed == None or speed < 0: speed = 0
speed = speed * 8
units = "b/s ", "Kib/s", "Mib/s", "Gib/s", "Tib/s"
step = 1
for u in units:
if step > 1:
s = "%4.2f " %(float(speed)/step)
if len(s) <= 5: return s + u
s = "%4.1f " %(float(speed)/step)
if len(s) <= 5: return s + u
if speed/step < 1024:
return "%4d " %(speed/step) + u
step = step * 1024
return "%4d " % (speed/(step/1024)) + units[-1]
def graphic_speed(speed):
"""graphic_speed(speed) -> string
speed is bytes per second
returns a graphic representing given speed"""
if speed == None: speed = 0
speed_val = [0]+[int(2**(x*5.0/3)) for x in range(20)]
speed_gfx = [
r"\ ",
r".\ ",
r"..\ ",
r"...\ ",
r"...:\ ",
r"...::\ ",
r"...:::\ ",
r"...:::+| ",
r"...:::++| ",
r"...:::+++| ",
r"...:::+++#| ",
r"...:::+++##| ",
r"...:::+++###| ",
r"...:::+++###%| ",
r"...:::+++###%%/ ",
r"...:::+++###%%%/ ",
r"...:::+++###%%%// ",
r"...:::+++###%%%/// ",
r"...:::+++###%%%//// ",
r"...:::+++###%%%///// ",
r"...:::+++###%%%//////",
]
for i in range(len(speed_val)-1):
low, high = speed_val[i], speed_val[i+1]
if speed > high: continue
if speed - low < high - speed:
return speed_gfx[i]
else:
return speed_gfx[i+1]
return speed_gfx[-1]
def file_size_feed(filename):
"""file_size_feed(filename) -> function that returns given file's size"""
def sizefn(filename=filename,os=os):
try:
return os.stat(filename)[6]
except:
return 0
return sizefn
class NetworkFeed:
@classmethod
def network_feed(cls, device, rxtx):
"""network_feed(device,rxtx) -> function that returns given device stream speed
rxtx is "RX" or "TX"
"""
assert rxtx in ["RX","TX"]
r = re.compile(r"^\s*" + re.escape(device) + r":(.*)$", re.MULTILINE)
def networkfn(devre=r,rxtx=rxtx):
if device not in psutil.net_if_addrs().keys():
sys.stderr.write("Network interface %s is not available\n\n" % device)
sys.exit(1)
if rxtx == 'RX':
val=psutil.net_io_counters(pernic=True)[device].bytes_recv
else:
val=psutil.net_io_counters(pernic=True)[device].bytes_sent
return int(val)
return networkfn
class SubProcessFeed:
def __init__(self, cmd=None):
self.buffer_current_size = 1
self.is_running = False
self.cmd = cmd
def stdinfn(self, *args, **kwargs):
if self.is_running:
return self.buffer_current_size
else:
self.is_running = True
self.sub_process_job = SubprocessJob(feed=self)
self.thread = threading.Thread(target=self.sub_process_job.run_job, args=(self.cmd ,))
self.thread.start()
return 0
def file_size_feed(self):
return self.stdinfn
@classmethod
def set_command(self, cmd):
self.cmd = cmd
def set_buffer_size(self, size):
self.buffer_current_size = size
def get_buffer_size(self):
return self.buffer_current_size
class StdinFeed:
def __init__(self):
self.buffer_current_size = 0
self.is_running = False
def stdinfn(self, *args, **kwargs):
if self.is_running:
return self.buffer_current_size
else:
self.is_running = True
self.stdin_job = StdinJob(feed=self)
self.thread = threading.Thread(target=self.stdin_job.run_job)
self.thread.start()
return 0
def file_size_feed(self):
return self.stdinfn
def set_buffer_size(self, size):
self.buffer_current_size = size
def get_buffer_size(self):
return self.buffer_current_size
class SubprocessJobQueue:
job_list = []
@classmethod
def add_job(cls, id):
cls.job_list.append(id)
@classmethod
def stop_all_job(cls):
for item in cls.job_list:
item.stop_job()
class SubprocessJob:
def __init__(self, feed):
self.current_job_process = None
self.current_job_process_is_stop = None
self.default_read_size = 10240*100
self.feed = feed
SubprocessJobQueue.add_job(self)
def stop_job(self):
if self.current_job_process:
try:
self.current_job_process.terminate()
except:
pass
self.current_job_process_is_stop = True
time.sleep(0.2)
return True
return False
def run_job(self, args):
self.current_job_process = subprocess.Popen(args, shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, bufsize=self.default_read_size)
size = 0
def is_avail():
return self.current_job_process.stdout.peek()
while True:
if self.current_job_process and is_avail() and not self.current_job_process_is_stop:
self.current_job_process.stdout.read(self.default_read_size)
size+= self.default_read_size
self.feed.set_buffer_size(size)
else:
self.stop_job()
time.sleep(0.2)
self.feed.set_buffer_size(None)
break
class StdinJobQueue:
job_list = []
@classmethod
def add_job(cls, id):
cls.job_list.append(id)
@classmethod
def stop_all_job(cls):
for item in cls.job_list:
item.stop_job()
class StdinJob:
def __init__(self, feed):
self.current_job_process = None
self.current_job_process_is_stop = None
self.default_read_size = 10240*100
self.feed = feed
StdinJobQueue.add_job(self)
def stop_job(self):
self.current_job_process_is_stop = True
time.sleep(0.3)
return True
def run_job(self):
size = 0
stdin_handler = sys.stdin.buffer.read
while not self.current_job_process_is_stop:
i, _, _ = select.select( [sys.stdin], [], [])
if not i:
time.sleep(0.03)
continue
try:
data = stdin_handler(self.default_read_size)
except:
data = None
if data:
size+=self.default_read_size
self.feed.set_buffer_size(size)
else:
self.stop_job()
time.sleep(0.2)
self.feed.set_buffer_size(None)
break
class SimulatedFeed:
@classmethod
def simulated_feed(cls, data):
total = 0
adjusted_data = [0]
for d in data:
d = int(d)
adjusted_data.append(d + total)
total += d
def simfn(data=adjusted_data):
if data:
return int(data.pop(0))
return None
return simfn
class SimulatedTime:
def __init__(self, start):
self.t = start
def sleep(self, length):
self.t += length
def time(self):
return self.t
class FileProgress:
"""FileProgress monitors a file's size vs time and expected size to
produce progress and estimated completion time readings"""
samples_for_estimate = 4
def __init__(self, maxlog, expected_size):
"""FileProgress(expected_size)
expected_size is the file's expected size in bytes"""
self.expected_size = expected_size
self.speedometer = Speedometer(maxlog)
self.current_size = None
self.speed = self.speedometer.speed
self.delta = self.speedometer.delta
def update(self, current_size):
"""update(current_size)
current_size is the current file size
update will record the current size and time"""
self.current_size = current_size
self.speedometer.update(self.current_size)
def progress(self):
"""progress() -> (current size, expected size)
current size will be None until update is called"""
return self.current_size, self.expected_size
def completion_estimate(self):
"""completion_estimate() -> estimated seconds remaining
will return None if not enough data is available"""
d = self.speedometer.delta(self.samples_for_estimate)
if not d: return None # not enough readings
(seconds,bytes) = d
if bytes <= 0: return None # currently stalled
remaining = self.expected_size - self.current_size
if remaining <= 0: return 0 # all done -- no time remaining
seconds_left = float(remaining)*seconds/bytes
return seconds_left
def average_speed(self):
"""average_speed() -> bytes per second since start
will return None if not enough data"""
return self.speedometer.speed()
def current_speed(self):
"""current_speed() -> latest bytes per second reading
will return None if not enough data"""
return self.speedometer.speed(1)
def graphic_progress(progress, columns):
"""graphic_progress(progress, columns) -> string
progress is a tuple of (value, max)
columns is length of string returned
returns a graphic representation of value vs. max"""
value, max = progress
f = float(value) / float(max)
if f > 1: f = 1
if f < 0: f = 0
filled = int(f*columns)
gfx = "#" * filled + "-" * (columns-filled)
return gfx
def time_as_units(seconds):
"""time_units(seconds) -> list of (count, suffix) tuples
returns a unit breakdown for the given number of seconds"""
if seconds==None: seconds=0
# (multiplicative factor, suffix)
units = (1,"s"), (60,"m"), (60,"h"), (24,"d"), (7,"w"), (52,"y")
scale = 1
topunit = -1
# find the top unit to use
for mul, suf in units:
if seconds / (scale*mul) < 1: break
topunit = topunit+1
scale = scale * mul
# build the list reading backwards from top unit
out = []
for i in range(topunit, -1, -1):
mul,suf = units[i]
value = int(seconds/scale)
seconds = seconds - value * scale
scale = scale / mul
out.append((value, suf))
return out
def readable_time(seconds, columns=None):
"""readable_time(seconds, columns=None) -> string
return the seconds as a readable string
if specified, columns is the maximum length of the returned string"""
out = ""
for value, suf in time_as_units(seconds):
new_out = out
if out: new_out = new_out + ' '
new_out = new_out + value + suf
if columns and len(new_out) > columns: break
out = new_out
return out
class ArgumentError(Exception):
pass
def console():
"""Console mode"""
try:
cols, urwid_ui, zero_files, exit_on_complete, num_colors, shiny_colors = parse_args()
except ArgumentError:
sys.stderr.write(__usage__)
if not URWID_IMPORTED:
sys.stderr.write(__urwid_info__)
sys.stderr.write("""\nPython Version: %d.%d\n""""""Urwid >= 0.9.9.1 detected: %s\nUTF-8 encoding detected: %s\n
""" % (sys.version_info[:2] + (["NO","yes"][URWID_IMPORTED],) +
(["NO","yes"][URWID_UTF8],)))
return
update_scale()
if zero_files:
for c in cols:
a = []
for tap in c:
if hasattr(tap, 'report_zero'):
tap.report_zero()
try:
# wait for every tap to be able to read
wait_all(cols)
except KeyboardInterrupt:
return
# plain-text mode
if not urwid_ui:
[[tap]] = cols
if tap.ftype == 'file_exp':
do_progress(tap.feed, tap.expected_size, exit_on_complete)
else:
do_simple(tap.feed)
return
do_display(cols, urwid_ui, exit_on_complete, num_colors, shiny_colors)
def do_display(cols, urwid_ui, exit_on_complete, num_colors, shiny_colors):
mg = MultiGraphDisplay(cols, urwid_ui, exit_on_complete, shiny_colors)
mg.main(num_colors)
class SubProcessTap: