Bug 1468402 - Part 3: Add test for subgrids in the grid list. r=pbro
[gecko.git] / build / appini_header.py
blobc5c615b16aa9746e9dd25132408aa94ecad76f9b
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 '''Parses a given application.ini file and outputs the corresponding
6 StaticXREAppData structure as a C++ header file'''
8 import ConfigParser
9 import sys
12 def main(output, file):
13 config = ConfigParser.RawConfigParser()
14 config.read(file)
15 flags = set()
16 try:
17 if config.getint('XRE', 'EnableProfileMigrator') == 1:
18 flags.add('NS_XRE_ENABLE_PROFILE_MIGRATOR')
19 except Exception:
20 pass
21 try:
22 if config.getint('Crash Reporter', 'Enabled') == 1:
23 flags.add('NS_XRE_ENABLE_CRASH_REPORTER')
24 except Exception:
25 pass
26 appdata = dict(("%s:%s" % (s, o), config.get(s, o))
27 for s in config.sections() for o in config.options(s))
28 appdata['flags'] = ' | '.join(flags) if flags else '0'
29 appdata['App:profile'] = ('"%s"' % appdata['App:profile']
30 if 'App:profile' in appdata else 'NULL')
31 expected = ('App:vendor', 'App:name', 'App:remotingname', 'App:version', 'App:buildid',
32 'App:id', 'Gecko:minversion', 'Gecko:maxversion')
33 missing = [var for var in expected if var not in appdata]
34 if missing:
35 print >>sys.stderr, \
36 "Missing values in %s: %s" % (file, ', '.join(missing))
37 sys.exit(1)
39 if 'Crash Reporter:serverurl' not in appdata:
40 appdata['Crash Reporter:serverurl'] = ''
42 if 'App:sourcerepository' in appdata and 'App:sourcestamp' in appdata:
43 appdata['App:sourceurl'] = '"%(App:sourcerepository)s/rev/%(App:sourcestamp)s"' % appdata
44 else:
45 appdata['App:sourceurl'] = 'NULL'
47 output.write('''#include "mozilla/XREAppData.h"
48 static const mozilla::StaticXREAppData sAppData = {
49 "%(App:vendor)s",
50 "%(App:name)s",
51 "%(App:remotingname)s",
52 "%(App:version)s",
53 "%(App:buildid)s",
54 "%(App:id)s",
55 NULL, // copyright
56 %(flags)s,
57 "%(Gecko:minversion)s",
58 "%(Gecko:maxversion)s",
59 "%(Crash Reporter:serverurl)s",
60 %(App:profile)s,
61 NULL, // UAName
62 %(App:sourceurl)s
63 };''' % appdata)
66 if __name__ == '__main__':
67 if len(sys.argv) != 1:
68 main(sys.stdout, sys.argv[1])
69 else:
70 print >>sys.stderr, "Usage: %s /path/to/application.ini" % sys.argv[0]