-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpstat.py
More file actions
78 lines (62 loc) · 2.17 KB
/
cpstat.py
File metadata and controls
78 lines (62 loc) · 2.17 KB
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
#!/usr/bin/python3
import sys
import subprocess
import os
import time
import threading
import collections
import math
import shutil
PREFIXES = {0: "", 1: "k", 2: "M", 3: "G", 4: "T"}
TIMEOUT = .3
def formatsize(size):
if size <= 0:
return "0 B"
logvalue = math.log10(size)
length = math.floor(math.log10(size))
prefix = PREFIXES[math.floor(length / 3)]
return "{} {}B".format(round(size / math.pow(10, (math.floor(length / 3) * 3)), 1), prefix)
class Progress:
def __init__(self, srcfile, dstfile):
self._stopped = False
self._buf = collections.deque(maxlen=5)
self.srcfile = srcfile
self.dstfile = dstfile
self.totalsize = os.stat(os.path.realpath(self.srcfile)).st_size
print("{} -> {}".format(srcfile, dstfile))
def showprogress(self):
while not self._stopped and (
not os.path.exists(os.path.realpath(self.srcfile)) or not os.path.exists(os.path.realpath(self.dstfile))):
continue
while not self._stopped:
if not os.path.exists(os.path.realpath(self.srcfile)) or not os.path.exists(os.path.realpath(self.dstfile)):
continue
partsize = os.stat(os.path.realpath(self.dstfile)).st_size
self._buf.append(partsize)
speed = (self._buf[-1] - self._buf[0]) / len(self._buf) / TIMEOUT
progress = round(partsize * 100 / self.totalsize, 2)
sys.stdout.write("{}% ({}/s) \r".format(progress, formatsize(speed)))
sys.stdout.flush()
time.sleep(TIMEOUT)
def stop(self):
self._stopped = True
#def showprogress(srcfile, dstfile):
# buf = collections.deque(maxlen=5)
# print("{} -> {}".format(srcfile, dstfile))
def moveAndPrintProgress(srcfile, dstfile):
p = Progress(srcfile, dstfile)
t = threading.Thread(target=p.showprogress)
t.daemon = True
t.start()
try:
shutil.copyfile(srcfile, dstfile)
os.remove(srcfile)
finally:
p.stop()
def main():
print(sys.argv[1:]);
srcfile = sys.argv[1]
dstfile = sys.argv[2]
moveAndPrintProgress(srcfile, dstfile)
if __name__ == "__main__":
main()