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"""
12 def main(output
, file):
13 config
= configparser
.RawConfigParser()
17 if config
.getint("XRE", "EnableProfileMigrator") == 1:
18 flags
.add("NS_XRE_ENABLE_PROFILE_MIGRATOR")
22 if config
.getint("Crash Reporter", "Enabled") == 1:
23 flags
.add("NS_XRE_ENABLE_CRASH_REPORTER")
27 ("%s:%s" % (s
, o
), config
.get(s
, o
))
28 for s
in config
.sections()
29 for o
in config
.options(s
)
31 appdata
["flags"] = " | ".join(sorted(flags
)) if flags
else "0"
32 for key
in ("App:vendor", "App:profile"):
33 # Set to NULL when not present or falsy such as an empty string
34 appdata
[key
] = '"%s"' % appdata
[key
] if appdata
.get(key
, None) else "NULL"
45 missing
= [var
for var
in expected
if var
not in appdata
]
47 print("Missing values in %s: %s" % (file, ", ".join(missing
)), file=sys
.stderr
)
50 if "Crash Reporter:serverurl" not in appdata
:
51 appdata
["Crash Reporter:serverurl"] = ""
53 if "App:sourcerepository" in appdata
and "App:sourcestamp" in appdata
:
54 appdata
["App:sourceurl"] = (
55 '"%(App:sourcerepository)s/rev/%(App:sourcestamp)s"' % appdata
58 appdata
["App:sourceurl"] = "NULL"
60 if "AppUpdate:url" not in appdata
:
61 appdata
["AppUpdate:url"] = ""
64 """#include "mozilla/XREAppData.h"
65 static const mozilla::StaticXREAppData sAppData = {
68 "%(App:remotingname)s",
74 "%(Gecko:minversion)s",
75 "%(Gecko:maxversion)s",
76 "%(Crash Reporter:serverurl)s",
86 if __name__
== "__main__":
87 if len(sys
.argv
) != 1:
88 main(sys
.stdout
, sys
.argv
[1])
90 print("Usage: %s /path/to/application.ini" % sys
.argv
[0], file=sys
.stderr
)