summaryrefslogtreecommitdiffstats
path: root/scripts/buildhistory-collect-srcrevs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/buildhistory-collect-srcrevs')
-rwxr-xr-xscripts/buildhistory-collect-srcrevs104
1 files changed, 104 insertions, 0 deletions
diff --git a/scripts/buildhistory-collect-srcrevs b/scripts/buildhistory-collect-srcrevs
new file mode 100755
index 0000000000..7f65c90376
--- /dev/null
+++ b/scripts/buildhistory-collect-srcrevs
@@ -0,0 +1,104 @@
1#!/usr/bin/env python
2#
3# Collects the recorded SRCREV values from buildhistory and reports on them
4#
5# Copyright 2013 Intel Corporation
6# Authored-by: Paul Eggleton <paul.eggleton@intel.com>
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License version 2 as
10# published by the Free Software Foundation.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License along
18# with this program; if not, write to the Free Software Foundation, Inc.,
19# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21import os, sys
22import optparse
23import logging
24
25def logger_create():
26 logger = logging.getLogger("buildhistory")
27 loggerhandler = logging.StreamHandler()
28 loggerhandler.setFormatter(logging.Formatter("%(levelname)s: %(message)s"))
29 logger.addHandler(loggerhandler)
30 logger.setLevel(logging.INFO)
31 return logger
32
33logger = logger_create()
34
35def main():
36 parser = optparse.OptionParser(
37 usage = """
38 %prog [options] <buildhistory-dir>""")
39
40 parser.add_option("-a", "--report-all",
41 help = "Report all SRCREV values, not just ones where AUTOREV has been used",
42 action="store_true", dest="reportall")
43 parser.add_option("-f", "--forcevariable",
44 help = "Use forcevariable override for all output lines",
45 action="store_true", dest="forcevariable")
46
47 options, args = parser.parse_args(sys.argv)
48
49 if len(args) != 2:
50 parser.print_help()
51 sys.exit(1)
52
53 buildhistory_dir = args[1]
54 if not os.path.exists(buildhistory_dir):
55 logger.error('specified buildhistory path %s could not be found' % buildhistory_dir)
56 sys.exit(1)
57
58 if options.forcevariable:
59 forcevariable = '_forcevariable'
60 else:
61 forcevariable = ''
62
63 lastdir = ''
64 for root, dirs, files in os.walk(buildhistory_dir):
65 if '.git' in dirs:
66 dirs.remove('.git')
67 for fn in files:
68 if fn == 'latest_srcrev':
69 curdir = os.path.basename(os.path.dirname(root))
70 if lastdir != curdir:
71 print('# %s' % curdir)
72 lastdir = curdir
73 fullpath = os.path.join(root, fn)
74 pn = os.path.basename(root)
75 srcrev = None
76 orig_srcrev = None
77 orig_srcrevs = {}
78 srcrevs = {}
79 with open(fullpath) as f:
80 for line in f:
81 if '=' in line:
82 splitval = line.split('=')
83 value = splitval[1].strip('" \t\n\r')
84 if line.startswith('# SRCREV = '):
85 orig_srcrev = value
86 elif line.startswith('# SRCREV_'):
87 splitval = line.split('=')
88 name = splitval[0].split('_')[1].strip()
89 orig_srcrevs[name] = value
90 elif line.startswith('SRCREV ='):
91 srcrev = value
92 elif line.startswith('SRCREV_'):
93 name = splitval[0].split('_')[1].strip()
94 srcrevs[name] = value
95 if srcrev and (options.reportall or srcrev != orig_srcrev):
96 print('SRCREV_pn-%s%s = "%s"' % (pn, forcevariable, srcrev))
97 for name, value in srcrevs.items():
98 orig = orig_srcrevs.get(name, orig_srcrev)
99 if options.reportall or value != orig:
100 print('SRCREV_%s_pn-%s%s = "%s"' % (name, pn, forcevariable, value))
101
102
103if __name__ == "__main__":
104 main()