Show More
@@ -1,166 +1,166 | |||
|
1 | 1 | # perf.py - performance test routines |
|
2 | 2 | '''helper extension to measure performance''' |
|
3 | 3 | |
|
4 | 4 | from mercurial import cmdutil, scmutil, match, commands |
|
5 | 5 | import time, os, sys |
|
6 | 6 | |
|
7 | 7 | def timer(func, title=None): |
|
8 | 8 | results = [] |
|
9 | 9 | begin = time.time() |
|
10 | 10 | count = 0 |
|
11 | 11 | while True: |
|
12 | 12 | ostart = os.times() |
|
13 | 13 | cstart = time.time() |
|
14 | 14 | r = func() |
|
15 | 15 | cstop = time.time() |
|
16 | 16 | ostop = os.times() |
|
17 | 17 | count += 1 |
|
18 | 18 | a, b = ostart, ostop |
|
19 | 19 | results.append((cstop - cstart, b[0] - a[0], b[1]-a[1])) |
|
20 | 20 | if cstop - begin > 3 and count >= 100: |
|
21 | 21 | break |
|
22 | 22 | if cstop - begin > 10 and count >= 3: |
|
23 | 23 | break |
|
24 | 24 | if title: |
|
25 | 25 | sys.stderr.write("! %s\n" % title) |
|
26 | 26 | if r: |
|
27 | 27 | sys.stderr.write("! result: %s\n" % r) |
|
28 | 28 | m = min(results) |
|
29 | 29 | sys.stderr.write("! wall %f comb %f user %f sys %f (best of %d)\n" |
|
30 | 30 | % (m[0], m[1] + m[2], m[1], m[2], count)) |
|
31 | 31 | |
|
32 | 32 | def perfwalk(ui, repo, *pats): |
|
33 | 33 | try: |
|
34 | 34 | m = scmutil.match(repo[None], pats, {}) |
|
35 | 35 | timer(lambda: len(list(repo.dirstate.walk(m, [], True, False)))) |
|
36 | 36 | except: |
|
37 | 37 | try: |
|
38 | 38 | m = scmutil.match(repo[None], pats, {}) |
|
39 | 39 | timer(lambda: len([b for a, b, c in repo.dirstate.statwalk([], m)])) |
|
40 | 40 | except: |
|
41 | 41 | timer(lambda: len(list(cmdutil.walk(repo, pats, {})))) |
|
42 | 42 | |
|
43 | 43 | def perfstatus(ui, repo, *pats): |
|
44 | 44 | #m = match.always(repo.root, repo.getcwd()) |
|
45 | 45 | #timer(lambda: sum(map(len, repo.dirstate.status(m, [], False, False, False)))) |
|
46 | 46 | timer(lambda: sum(map(len, repo.status()))) |
|
47 | 47 | |
|
48 | 48 | def perfheads(ui, repo): |
|
49 | timer(lambda: len(repo.changelog.heads())) | |
|
49 | timer(lambda: len(repo.changelog.headrevs())) | |
|
50 | 50 | |
|
51 | 51 | def perftags(ui, repo): |
|
52 | 52 | import mercurial.changelog, mercurial.manifest |
|
53 | 53 | def t(): |
|
54 | 54 | repo.changelog = mercurial.changelog.changelog(repo.sopener) |
|
55 | 55 | repo.manifest = mercurial.manifest.manifest(repo.sopener) |
|
56 | 56 | repo._tags = None |
|
57 | 57 | return len(repo.tags()) |
|
58 | 58 | timer(t) |
|
59 | 59 | |
|
60 | 60 | def perfdirstate(ui, repo): |
|
61 | 61 | "a" in repo.dirstate |
|
62 | 62 | def d(): |
|
63 | 63 | repo.dirstate.invalidate() |
|
64 | 64 | "a" in repo.dirstate |
|
65 | 65 | timer(d) |
|
66 | 66 | |
|
67 | 67 | def perfdirstatedirs(ui, repo): |
|
68 | 68 | "a" in repo.dirstate |
|
69 | 69 | def d(): |
|
70 | 70 | "a" in repo.dirstate._dirs |
|
71 | 71 | del repo.dirstate._dirs |
|
72 | 72 | timer(d) |
|
73 | 73 | |
|
74 | 74 | def perfmanifest(ui, repo): |
|
75 | 75 | def d(): |
|
76 | 76 | t = repo.manifest.tip() |
|
77 | 77 | m = repo.manifest.read(t) |
|
78 | 78 | repo.manifest.mapcache = None |
|
79 | 79 | repo.manifest._cache = None |
|
80 | 80 | timer(d) |
|
81 | 81 | |
|
82 | 82 | def perfindex(ui, repo): |
|
83 | 83 | import mercurial.revlog |
|
84 | 84 | mercurial.revlog._prereadsize = 2**24 # disable lazy parser in old hg |
|
85 | 85 | n = repo["tip"].node() |
|
86 | 86 | def d(): |
|
87 | repo.invalidate() | |
|
88 |
|
|
|
87 | cl = mercurial.revlog.revlog(repo.sopener, "00changelog.i") | |
|
88 | cl.rev(n) | |
|
89 | 89 | timer(d) |
|
90 | 90 | |
|
91 | 91 | def perfstartup(ui, repo): |
|
92 | 92 | cmd = sys.argv[0] |
|
93 | 93 | def d(): |
|
94 | 94 | os.system("HGRCPATH= %s version -q > /dev/null" % cmd) |
|
95 | 95 | timer(d) |
|
96 | 96 | |
|
97 | 97 | def perfparents(ui, repo): |
|
98 | 98 | nl = [repo.changelog.node(i) for i in xrange(1000)] |
|
99 | 99 | def d(): |
|
100 | 100 | for n in nl: |
|
101 | 101 | repo.changelog.parents(n) |
|
102 | 102 | timer(d) |
|
103 | 103 | |
|
104 | 104 | def perflookup(ui, repo, rev): |
|
105 | 105 | timer(lambda: len(repo.lookup(rev))) |
|
106 | 106 | |
|
107 | 107 | def perflog(ui, repo, **opts): |
|
108 | 108 | ui.pushbuffer() |
|
109 | 109 | timer(lambda: commands.log(ui, repo, rev=[], date='', user='', |
|
110 | 110 | copies=opts.get('rename'))) |
|
111 | 111 | ui.popbuffer() |
|
112 | 112 | |
|
113 | 113 | def perftemplating(ui, repo): |
|
114 | 114 | ui.pushbuffer() |
|
115 | 115 | timer(lambda: commands.log(ui, repo, rev=[], date='', user='', |
|
116 | 116 | template='{date|shortdate} [{rev}:{node|short}]' |
|
117 | 117 | ' {author|person}: {desc|firstline}\n')) |
|
118 | 118 | ui.popbuffer() |
|
119 | 119 | |
|
120 | 120 | def perfdiffwd(ui, repo): |
|
121 | 121 | """Profile diff of working directory changes""" |
|
122 | 122 | options = { |
|
123 | 123 | 'w': 'ignore_all_space', |
|
124 | 124 | 'b': 'ignore_space_change', |
|
125 | 125 | 'B': 'ignore_blank_lines', |
|
126 | 126 | } |
|
127 | 127 | |
|
128 | 128 | for diffopt in ('', 'w', 'b', 'B', 'wB'): |
|
129 | 129 | opts = dict((options[c], '1') for c in diffopt) |
|
130 | 130 | def d(): |
|
131 | 131 | ui.pushbuffer() |
|
132 | 132 | commands.diff(ui, repo, **opts) |
|
133 | 133 | ui.popbuffer() |
|
134 | 134 | title = 'diffopts: %s' % (diffopt and ('-' + diffopt) or 'none') |
|
135 | 135 | timer(d, title) |
|
136 | 136 | |
|
137 | 137 | def perfrevlog(ui, repo, file_, **opts): |
|
138 | 138 | from mercurial import revlog |
|
139 | 139 | dist = opts['dist'] |
|
140 | 140 | def d(): |
|
141 | 141 | r = revlog.revlog(lambda fn: open(fn, 'rb'), file_) |
|
142 | 142 | for x in xrange(0, len(r), dist): |
|
143 | 143 | r.revision(r.node(x)) |
|
144 | 144 | |
|
145 | 145 | timer(d) |
|
146 | 146 | |
|
147 | 147 | cmdtable = { |
|
148 | 148 | 'perflookup': (perflookup, []), |
|
149 | 149 | 'perfparents': (perfparents, []), |
|
150 | 150 | 'perfstartup': (perfstartup, []), |
|
151 | 151 | 'perfstatus': (perfstatus, []), |
|
152 | 152 | 'perfwalk': (perfwalk, []), |
|
153 | 153 | 'perfmanifest': (perfmanifest, []), |
|
154 | 154 | 'perfindex': (perfindex, []), |
|
155 | 155 | 'perfheads': (perfheads, []), |
|
156 | 156 | 'perftags': (perftags, []), |
|
157 | 157 | 'perfdirstate': (perfdirstate, []), |
|
158 | 158 | 'perfdirstatedirs': (perfdirstate, []), |
|
159 | 159 | 'perflog': (perflog, |
|
160 | 160 | [('', 'rename', False, 'ask log to follow renames')]), |
|
161 | 161 | 'perftemplating': (perftemplating, []), |
|
162 | 162 | 'perfdiffwd': (perfdiffwd, []), |
|
163 | 163 | 'perfrevlog': (perfrevlog, |
|
164 | 164 | [('d', 'dist', 100, 'distance between the revisions')], |
|
165 | 165 | "[INDEXFILE]"), |
|
166 | 166 | } |
General Comments 0
You need to be logged in to leave comments.
Login now