/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
1
#!/usr/bin/env python
2
import random
3
import os
4
import time
5
import sys
6
import optparse
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
7
from breezy import (
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
8
    branch,
9
    commands,
10
    graph,
11
    ui,
12
    trace,
13
    _known_graph_py,
14
    _known_graph_pyx,
15
    )
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
16
from breezy.ui import text
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
17
18
p = optparse.OptionParser()
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
19
p.add_option('--quick', default=False, action='store_true')
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
20
p.add_option('--max-combinations', default=500, type=int)
21
p.add_option('--lsprof', default=None, type=str)
22
opts, args = p.parse_args(sys.argv[1:])
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
23
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
24
trace.enable_default_logging()
25
ui.ui_factory = text.TextUIFactory()
26
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
27
begin = time.clock()
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
28
if len(args) >= 1:
29
    b = branch.Branch.open(args[0])
30
else:
31
    b = branch.Branch.open('.')
6754.8.4 by Jelmer Vernooij
Use new context stuff.
32
with b.lock_read():
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
33
    g = b.repository.get_graph()
34
    parent_map = dict(p for p in g.iter_ancestry([b.last_revision()])
35
                         if p[1] is not None)
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
36
end = time.clock()
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
37
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
38
print('Found %d nodes, loaded in %.3fs' % (len(parent_map), end - begin))
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
39
40
def all_heads_comp(g, combinations):
41
    h = []
6861.4.1 by Jelmer Vernooij
Make progress bars context managers.
42
    with ui.ui_factory.nested_progress_bar() as pb:
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
43
        for idx, combo in enumerate(combinations):
44
            if idx & 0x1f == 0:
45
                pb.update('proc', idx, len(combinations))
46
            h.append(g.heads(combo))
47
    return h
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
48
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
49
combinations = []
50
# parents = parent_map.keys()
51
# for p1 in parents:
52
#     for p2 in random.sample(parents, 10):
53
#         combinations.append((p1, p2))
54
# Times for random sampling of 10x1150 of bzrtools
55
#   Graph        KnownGraph
56
#   96.1s   vs   25.7s  :)
57
# Times for 500 'merge parents' from bzr.dev
58
#   25.6s   vs   45.0s  :(
59
60
for revision_id, parent_ids in parent_map.iteritems():
61
    if parent_ids is not None and len(parent_ids) > 1:
62
        combinations.append(parent_ids)
4371.4.24 by John Arbash Meinel
Make a note of the 'worst case' for heads.
63
# The largest portion of the graph that has to be walked for a heads() check
64
# combinations = [('john@arbash-meinel.com-20090312021943-tu6tcog48aiujx4s',
65
#                  'john@arbash-meinel.com-20090312130552-09xa2xsitf6rilzc')]
4371.3.38 by John Arbash Meinel
Add a failing test for handling nodes that are in the same linear chain.
66
if opts.max_combinations > 0 and len(combinations) > opts.max_combinations:
67
    combinations = random.sample(combinations, opts.max_combinations)
68
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
69
print('      %d combinations' % (len(combinations),))
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
70
71
def combi_graph(graph_klass, comb):
72
    # DEBUG
73
    graph._counters[1] = 0
74
    graph._counters[2] = 0
75
76
    begin = time.clock()
77
    g = graph_klass(parent_map)
78
    if opts.lsprof is not None:
79
        heads = commands.apply_lsprofiled(opts.lsprof, all_heads_comp, g, comb)
80
    else:
81
        heads = all_heads_comp(g, comb)
82
    end = time.clock()
83
    return dict(elapsed=(end - begin), graph=g, heads=heads)
84
85
def report(name, g):
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
86
    print('%s: %.3fs' % (name, g['elapsed']))
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
87
    counters_used = False
88
    for c in graph._counters:
89
        if c:
90
            counters_used = True
91
    if counters_used:
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
92
        print('  %s' % (graph._counters,))
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
93
94
known_python = combi_graph(_known_graph_py.KnownGraph, combinations)
95
report('Known', known_python)
96
97
known_pyrex = combi_graph(_known_graph_pyx.KnownGraph, combinations)
98
report('Known (pyx)', known_pyrex)
99
100
def _simple_graph(parent_map):
101
    return graph.Graph(graph.DictParentsProvider(parent_map))
102
103
if opts.quick:
104
    if known_python['heads'] != known_pyrex['heads']:
105
        import pdb; pdb.set_trace()
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
106
    print('ratio: %.1f:1 faster' % (
107
        known_python['elapsed'] / known_pyrex['elapsed'],))
4371.4.11 by Vincent Ladeuil
Cleanup tools/time_graph.py and add a --quick option.
108
else:
109
    orig = combi_graph(_simple_graph, combinations)
110
    report('Orig', orig)
111
112
    if orig['heads'] != known_pyrex['heads']:
113
        import pdb; pdb.set_trace()
114
6619.3.3 by Jelmer Vernooij
Apply 2to3 print fix.
115
    print('ratio: %.1f:1 faster' % (
116
        orig['elapsed'] / known_pyrex['elapsed'],))