~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/convertinv.py

  • Committer: Martin Pool
  • Date: 2005-07-11 03:49:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050711034954-e8b09d4d575946f6
- show progress bar during inventory conversion to weave, and make profiling optional

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import bzrlib.branch
23
23
from bzrlib.weave import Weave
24
24
from bzrlib.weavefile import write_weave
 
25
from bzrlib.progress import ProgressBar
25
26
import tempfile
26
27
import hotshot
 
28
import sys
27
29
 
28
30
def convert():
29
31
    WEAVE_NAME = "inventory.weave"
30
32
 
 
33
    pb = ProgressBar()
 
34
 
31
35
    wf = Weave()
32
36
 
33
37
    b = bzrlib.branch.find_branch('.')
34
38
 
35
 
    print 'converting...'
36
 
 
37
39
    parents = set()
38
40
    revno = 1
39
 
    for rev_id in b.revision_history():
40
 
        print revno
 
41
    rev_history = b.revision_history()
 
42
    for rev_id in rev_history:
 
43
        pb.update('converting inventory', revno, len(rev_history))
41
44
        inv_xml = b.inventory_store[rev_id].readlines()
42
45
        weave_id = wf.add(parents, inv_xml)
43
46
        parents.add(weave_id)
44
47
        revno += 1
45
48
 
 
49
    pb.update('write weave', None, None)
46
50
    write_weave(wf, file(WEAVE_NAME, 'wb'))
47
51
 
48
 
 
49
 
 
50
 
 
51
 
prof_f = tempfile.NamedTemporaryFile()
52
 
 
53
 
prof = hotshot.Profile(prof_f.name)
54
 
 
55
 
prof.runcall(convert) 
56
 
prof.close()
57
 
 
58
 
import hotshot.stats
59
 
stats = hotshot.stats.load(prof_f.name)
60
 
#stats.strip_dirs()
61
 
stats.sort_stats('time')
62
 
## XXX: Might like to write to stderr or the trace file instead but
63
 
## print_stats seems hardcoded to stdout
64
 
stats.print_stats(20)
 
52
    pb.clear()
 
53
 
 
54
 
 
55
def profile_convert(): 
 
56
    prof_f = tempfile.NamedTemporaryFile()
 
57
 
 
58
    prof = hotshot.Profile(prof_f.name)
 
59
 
 
60
    prof.runcall(convert) 
 
61
    prof.close()
 
62
 
 
63
    import hotshot.stats
 
64
    stats = hotshot.stats.load(prof_f.name)
 
65
    #stats.strip_dirs()
 
66
    stats.sort_stats('time')
 
67
    ## XXX: Might like to write to stderr or the trace file instead but
 
68
    ## print_stats seems hardcoded to stdout
 
69
    stats.print_stats(20)
65
70
            
66
71
 
 
72
if '-p' in sys.argv[1:]:
 
73
    profile_convert()
 
74
else:
 
75
    convert()
 
76