]> arthur.barton.de Git - bup.git/blob - lib/bup/cmd/memtest.py
b2027c42d83c7db580576ded97cf746fc0425abc
[bup.git] / lib / bup / cmd / memtest.py
1
2 from __future__ import absolute_import, print_function
3 import re, resource, sys, time
4
5 from bup import git, bloom, midx, options, _helpers
6 from bup.compat import range
7 from bup.io import byte_stream
8 from bup.helpers import log
9
10
11 _linux_warned = 0
12 def linux_memstat():
13     global _linux_warned
14     #fields = ['VmSize', 'VmRSS', 'VmData', 'VmStk', 'ms']
15     d = {}
16     try:
17         f = open(b'/proc/self/status', 'rb')
18     except IOError as e:
19         if not _linux_warned:
20             log('Warning: %s\n' % e)
21             _linux_warned = 1
22         return {}
23     for line in f:
24         # Note that on Solaris, this file exists but is binary.  If that
25         # happens, this split() might not return two elements.  We don't
26         # really need to care about the binary format since this output
27         # isn't used for much and report() can deal with missing entries.
28         t = re.split(br':\s*', line.strip(), 1)
29         if len(t) == 2:
30             k,v = t
31             d[k] = v
32     return d
33
34
35 last = last_u = last_s = start = 0
36 def report(count, out):
37     global last, last_u, last_s, start
38     headers = ['RSS', 'MajFlt', 'user', 'sys', 'ms']
39     ru = resource.getrusage(resource.RUSAGE_SELF)
40     now = time.time()
41     rss = int(ru.ru_maxrss // 1024)
42     if not rss:
43         rss = linux_memstat().get(b'VmRSS', b'??')
44     fields = [rss,
45               ru.ru_majflt,
46               int((ru.ru_utime - last_u) * 1000),
47               int((ru.ru_stime - last_s) * 1000),
48               int((now - last) * 1000)]
49     fmt = '%9s  ' + ('%10s ' * len(fields))
50     if count >= 0:
51         line = fmt % tuple([count] + fields)
52         out.write(line.encode('ascii') + b'\n')
53     else:
54         start = now
55         out.write((fmt % tuple([''] + headers)).encode('ascii') + b'\n')
56     out.flush()
57
58     # don't include time to run report() in usage counts
59     ru = resource.getrusage(resource.RUSAGE_SELF)
60     last_u = ru.ru_utime
61     last_s = ru.ru_stime
62     last = time.time()
63
64
65 optspec = """
66 bup memtest [-n elements] [-c cycles]
67 --
68 n,number=  number of objects per cycle [10000]
69 c,cycles=  number of cycles to run [100]
70 ignore-midx  ignore .midx files, use only .idx files
71 existing   test with existing objects instead of fake ones
72 """
73
74 def main(argv):
75     o = options.Options(optspec)
76     opt, flags, extra = o.parse_bytes(argv[1:])
77
78     if extra:
79         o.fatal('no arguments expected')
80
81     git.check_repo_or_die()
82     m = git.PackIdxList(git.repo(b'objects/pack'), ignore_midx=opt.ignore_midx)
83
84     sys.stdout.flush()
85     out = byte_stream(sys.stdout)
86
87     report(-1, out)
88     _helpers.random_sha()
89     report(0, out)
90
91     if opt.existing:
92         def foreverit(mi):
93             while 1:
94                 for e in mi:
95                     yield e
96         objit = iter(foreverit(m))
97
98     for c in range(opt.cycles):
99         for n in range(opt.number):
100             if opt.existing:
101                 bin = next(objit)
102                 assert(m.exists(bin))
103             else:
104                 bin = _helpers.random_sha()
105
106                 # technically, a randomly generated object id might exist.
107                 # but the likelihood of that is the likelihood of finding
108                 # a collision in sha-1 by accident, which is so unlikely that
109                 # we don't care.
110                 assert(not m.exists(bin))
111         report((c+1)*opt.number, out)
112
113     if bloom._total_searches:
114         out.write(b'bloom: %d objects searched in %d steps: avg %.3f steps/object\n'
115                   % (bloom._total_searches, bloom._total_steps,
116                      bloom._total_steps*1.0/bloom._total_searches))
117     if midx._total_searches:
118         out.write(b'midx: %d objects searched in %d steps: avg %.3f steps/object\n'
119                   % (midx._total_searches, midx._total_steps,
120                      midx._total_steps*1.0/midx._total_searches))
121     if git._total_searches:
122         out.write(b'idx: %d objects searched in %d steps: avg %.3f steps/object\n'
123                   % (git._total_searches, git._total_steps,
124                      git._total_steps*1.0/git._total_searches))
125     out.write(b'Total time: %.3fs\n' % (time.time() - start))