summaryrefslogtreecommitdiff
path: root/dump-build-times
blob: 48fdca65ca465bf72fbd8e00178829c093b47bbb (plain)
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
#!/usr/bin/env python
#
# Copyright (C) 2012  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import cliapp
import glob
import json
import os
import re
import StringIO


class ExtractBuildTimes(cliapp.Application):

    '''Extracts build times of chunks in a morph cache directory.

    Given a morph cache directory as the first argument, this app finds all
    cached chunks, loads their meta data and prints their build times.

    '''

    def process_args(self, args):
        cachedir = args[0]

        def chunk_hash(chunk):
            short = re.split('\.', chunk)
            return os.path.basename(short[-3])

        def chunk_name(chunk):
            short = re.split('\.', chunk)
            return short[-1]

        chunks = glob.glob(os.path.join(cachedir, '*.chunk.*'))
        items = []

        for chunk in chunks:
            hash = chunk_hash(chunk)
            metafile = os.path.join(cachedir, '%s.meta' % hash)
            with open(metafile) as f:
                data = f.read()
                io = StringIO.StringIO(data)
                metainfo = json.load(io)
                time = metainfo['build-times']['overall-build']['delta']
                minutes = float(time) / 60.0
                items.append((chunk_name(chunk), minutes))

        items = sorted(items, key=lambda x: x[1], reverse=True)
        print '%s' % (43 * '-')
        print 'Build times of cached chunks in'
        print '%s' % cachedir
        print '%s' % (43 * '-')
        sum = 0.0
        for name, time in items:
            print '%30s: %6.1f mins' % (name, time)
            sum += time
        print '%s' % (43 * '-')
        print '%30s: %6.1f mins' % ('total', sum)


if __name__ == '__main__':
    ExtractBuildTimes().run()