2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 # This script can either source a file and dump the enironment changes done by
7 # it, or just simply dump the current environment as JSON into a file.
18 parser = optparse.OptionParser()
19 parser.add_option('-f', '--output-json',
20 help='File to dump the environment as JSON into.')
22 '-d', '--dump-mode', action='store_true',
23 help='Dump the environment to sys.stdout and exit immediately.')
25 parser.disable_interspersed_args()
26 options, args = parser.parse_args()
28 if args or options.output_json:
29 parser.error('Cannot specify args or --output-json with --dump-mode.')
30 json.dump(dict(os.environ), sys.stdout)
32 if not options.output_json:
33 parser.error('Requires --output-json option.')
35 envsetup_cmd = ' '.join(map(pipes.quote, args))
38 '. %s > /dev/null; %s -d' % (envsetup_cmd, os.path.abspath(__file__))
41 output = subprocess.check_output(full_cmd)
42 except Exception as e:
43 sys.exit('Error running %s and dumping environment.' % envsetup_cmd)
46 new_env = json.loads(output)
47 for k, val in new_env.items():
48 if k == '_' or (k in os.environ and os.environ[k] == val):
51 with open(options.output_json, 'w') as f:
52 json.dump(env_diff, f)
55 if __name__ == '__main__':