blob: cd64533bb4a5af5d7eb6d51b23ea677f0d2a4382 [file] [log] [blame]
Corentin Wallez59382b72020-04-17 20:43:07 +00001#!/usr/bin/env python3
Austin Engcc2516a2023-10-17 20:57:54 +00002# Copyright 2018 The Dawn & Tint Authors
Corentin Wallez59e7fad2018-08-16 15:32:35 +02003#
Austin Engcc2516a2023-10-17 20:57:54 +00004# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
Corentin Wallez59e7fad2018-08-16 15:32:35 +02006#
Austin Engcc2516a2023-10-17 20:57:54 +00007# 1. Redistributions of source code must retain the above copyright notice, this
8# list of conditions and the following disclaimer.
Corentin Wallez59e7fad2018-08-16 15:32:35 +02009#
Austin Engcc2516a2023-10-17 20:57:54 +000010# 2. Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13#
14# 3. Neither the name of the copyright holder nor the names of its
15# contributors may be used to endorse or promote products derived from
16# this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Corentin Wallez59e7fad2018-08-16 15:32:35 +020028import os, sys, json
29
30if __name__ == "__main__":
31 if len(sys.argv) != 3:
32 print("Usage: extract_json.py JSON DIR")
33 sys.exit(1)
34
35 with open(sys.argv[1]) as f:
36 files = json.loads(f.read())
37
38 output_dir = sys.argv[2]
39
Reid Kleckner48e7da72020-01-30 01:25:08 +000040 for (name, content) in files.items():
Corentin Wallez59e7fad2018-08-16 15:32:35 +020041 output_file = output_dir + os.path.sep + name
42
Corentin Wallezc48e4872021-03-23 19:06:02 +000043 # Create the output directory if needed.
Corentin Wallez59e7fad2018-08-16 15:32:35 +020044 directory = os.path.dirname(output_file)
45 if not os.path.exists(directory):
46 os.makedirs(directory)
47
Corentin Wallezc48e4872021-03-23 19:06:02 +000048 # Skip writing to the file if it already has the correct content.
49 try:
50 with open(output_file, 'r') as outfile:
51 if outfile.read() == content:
52 continue
53 except (OSError, EnvironmentError):
54 pass
55
Corentin Wallez59e7fad2018-08-16 15:32:35 +020056 with open(output_file, 'w') as outfile:
57 outfile.write(content)