blob: 1fc56c3434eb6f7b46af667e8d9d9d3b130d2df7 [file] [log] [blame]
Mike Klein89eda8a2016-11-02 09:14:55 -04001#!/usr/bin/env python
2#
3# Copyright 2016 Google Inc.
4#
5# Use of this source code is governed by a BSD-style license that can be
6# found in the LICENSE file.
7
Florin Malitaf11fd1f2019-12-17 11:32:21 -05008from __future__ import print_function
9
Ben Wagner9494f3e2018-05-25 15:48:31 -040010import collections
11import json
Mike Klein89eda8a2016-11-02 09:14:55 -040012import os
Ben Wagner9494f3e2018-05-25 15:48:31 -040013import subprocess
Mike Klein89eda8a2016-11-02 09:14:55 -040014import sys
15
Ben Wagner9494f3e2018-05-25 15:48:31 -040016# Finds all public sources in include directories then write them to skia.h.
Mike Klein89eda8a2016-11-02 09:14:55 -040017
Ben Wagner9494f3e2018-05-25 15:48:31 -040018# Also write skia.h.deps, which Ninja uses to track dependencies. It's the
Mike Klein89eda8a2016-11-02 09:14:55 -040019# very same mechanism Ninja uses to know which .h files affect which .cpp files.
20
Ben Wagner9494f3e2018-05-25 15:48:31 -040021gn = sys.argv[1]
22absolute_source = sys.argv[2]
23skia_h = sys.argv[3]
24include_dirs = sys.argv[4:]
Mike Klein89eda8a2016-11-02 09:14:55 -040025
Ben Wagner9494f3e2018-05-25 15:48:31 -040026absolute_source = os.path.normpath(absolute_source)
Mike Klein89eda8a2016-11-02 09:14:55 -040027
Ben Wagner9494f3e2018-05-25 15:48:31 -040028include_dirs = [os.path.join(os.path.normpath(include_dir), '')
29 for include_dir in include_dirs]
30include_dirs.sort(key=len, reverse=True)
Mike Klein89eda8a2016-11-02 09:14:55 -040031
Florin Malita8f480d92018-05-30 13:17:49 -040032gn_desc_cmd = [gn, 'desc', '.', '--root=%s' % absolute_source, '--format=json',
33 '*']
Ben Wagner9494f3e2018-05-25 15:48:31 -040034
Florin Malita8f480d92018-05-30 13:17:49 -040035desc_json_txt = ''
Ben Wagner9494f3e2018-05-25 15:48:31 -040036try:
Florin Malita8f480d92018-05-30 13:17:49 -040037 desc_json_txt = subprocess.check_output(gn_desc_cmd)
Ben Wagner9494f3e2018-05-25 15:48:31 -040038except subprocess.CalledProcessError as e:
Florin Malitaf11fd1f2019-12-17 11:32:21 -050039 print(e.output)
Ben Wagner9494f3e2018-05-25 15:48:31 -040040 raise
41
Florin Malita8f480d92018-05-30 13:17:49 -040042desc_json = {}
Ben Wagner9494f3e2018-05-25 15:48:31 -040043try:
Florin Malita8f480d92018-05-30 13:17:49 -040044 desc_json = json.loads(desc_json_txt)
Ben Wagner9494f3e2018-05-25 15:48:31 -040045except ValueError:
Florin Malitaf11fd1f2019-12-17 11:32:21 -050046 print(desc_json_txt)
Ben Wagner9494f3e2018-05-25 15:48:31 -040047 raise
48
Florin Malita8f480d92018-05-30 13:17:49 -040049sources = set()
50
Florin Malitaf11fd1f2019-12-17 11:32:21 -050051for target in desc_json.values():
Florin Malita8f480d92018-05-30 13:17:49 -040052 # We'll use `public` headers if they're listed, or pull them from `sources`
53 # if not. GN sneaks in a default "public": "*" into the JSON if you don't
54 # set one explicitly.
55 search_list = target.get('public')
56 if search_list == '*':
57 search_list = target.get('sources', [])
58
59 for name in search_list:
60 sources.add(os.path.join(absolute_source, os.path.normpath(name[2:])))
Ben Wagner9494f3e2018-05-25 15:48:31 -040061
62Header = collections.namedtuple('Header', ['absolute', 'include'])
63headers = {}
64for source in sources:
Mike Kleinc0bd9f92019-04-23 12:05:21 -050065 source_as_include = [os.path.relpath(source, absolute_source)
Ben Wagner9494f3e2018-05-25 15:48:31 -040066 for include_dir in include_dirs
67 if source.startswith(include_dir)]
68 if not source_as_include:
69 continue
70 statinfo = os.stat(source)
71 key = str(statinfo.st_ino) + ':' + str(statinfo.st_dev)
72 # On Windows os.stat st_ino is 0 until 3.3.4 and st_dev is 0 until 3.4.0.
73 if key == '0:0':
74 key = source
75 include_path = source_as_include[0]
76 if key not in headers or len(include_path) < len(headers[key].include):
77 headers[key] = Header(source, include_path)
78
Florin Malitaf11fd1f2019-12-17 11:32:21 -050079headers = sorted(headers.values(), key=lambda x: x.include)
Ben Wagner9494f3e2018-05-25 15:48:31 -040080
81with open(skia_h, 'w') as f:
Mike Klein89eda8a2016-11-02 09:14:55 -040082 f.write('// skia.h generated by GN.\n')
83 f.write('#ifndef skia_h_DEFINED\n')
84 f.write('#define skia_h_DEFINED\n')
Ben Wagner9494f3e2018-05-25 15:48:31 -040085 for header in headers:
86 f.write('#include "' + header.include + '"\n')
Mike Klein89eda8a2016-11-02 09:14:55 -040087 f.write('#endif//skia_h_DEFINED\n')
88
Ben Wagner9494f3e2018-05-25 15:48:31 -040089with open(skia_h + '.deps', 'w') as f:
Mike Klein89eda8a2016-11-02 09:14:55 -040090 f.write(skia_h + ':')
Ben Wagner9494f3e2018-05-25 15:48:31 -040091 for header in headers:
92 f.write(' ' + header.absolute)
93 f.write(' build.ninja.d')
Mike Klein89eda8a2016-11-02 09:14:55 -040094 f.write('\n')
95
96# Temporary: during development this file wrote skia.h.d, not skia.h.deps,
97# and I think we have some bad versions of those files laying around.
98if os.path.exists(skia_h + '.d'):
99 os.remove(skia_h + '.d')