Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: Source/bindings/scripts/idl_compiler.py

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
31 31
32 Design doc: http://www.chromium.org/developers/design-documents/idl-compiler 32 Design doc: http://www.chromium.org/developers/design-documents/idl-compiler
33 """ 33 """
34 34
35 import abc 35 import abc
36 from optparse import OptionParser 36 from optparse import OptionParser
37 import os 37 import os
38 import cPickle as pickle 38 import cPickle as pickle
39 import sys 39 import sys
40 40
41 from code_generator_v8 import CodeGeneratorV8 41 from code_generator_v8 import CodeGeneratorDictionaryImpl, CodeGeneratorV8
42 from idl_reader import IdlReader 42 from idl_reader import IdlReader
43 from utilities import write_file 43 from utilities import read_idl_files_list_from_file, write_file
44 44
45 45
46 def parse_options(): 46 def parse_options():
47 parser = OptionParser() 47 parser = OptionParser()
48 parser.add_option('--cache-directory', 48 parser.add_option('--cache-directory',
49 help='cache directory, defaults to output directory') 49 help='cache directory, defaults to output directory')
50 parser.add_option('--generate-dictionary-impl',
51 action="store_true", default=False)
50 parser.add_option('--output-directory') 52 parser.add_option('--output-directory')
51 parser.add_option('--interfaces-info-file') 53 parser.add_option('--interfaces-info-file')
52 parser.add_option('--write-file-only-if-changed', type='int') 54 parser.add_option('--write-file-only-if-changed', type='int')
53 # ensure output comes last, so command line easy to parse via regexes 55 # ensure output comes last, so command line easy to parse via regexes
54 parser.disable_interspersed_args() 56 parser.disable_interspersed_args()
55 57
56 options, args = parser.parse_args() 58 options, args = parser.parse_args()
57 if options.output_directory is None: 59 if options.output_directory is None:
58 parser.error('Must specify output directory using --output-directory.') 60 parser.error('Must specify output directory using --output-directory.')
59 options.write_file_only_if_changed = bool(options.write_file_only_if_changed ) 61 options.write_file_only_if_changed = bool(options.write_file_only_if_changed )
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 def __init__(self, *args, **kwargs): 119 def __init__(self, *args, **kwargs):
118 IdlCompiler.__init__(self, *args, **kwargs) 120 IdlCompiler.__init__(self, *args, **kwargs)
119 self.code_generator = CodeGeneratorV8(self.interfaces_info, 121 self.code_generator = CodeGeneratorV8(self.interfaces_info,
120 self.cache_directory, 122 self.cache_directory,
121 self.output_directory) 123 self.output_directory)
122 124
123 def compile_file(self, idl_filename): 125 def compile_file(self, idl_filename):
124 self.compile_and_write(idl_filename) 126 self.compile_and_write(idl_filename)
125 127
126 128
127 def main(): 129 class IdlCompilerDictionaryImpl(IdlCompiler):
128 options, idl_filename = parse_options() 130 def __init__(self, *args, **kwargs):
131 use_relative_output_path = kwargs.get('use_relative_output_path', True)
132 kwargs.pop('use_relative_output_path', None)
133 IdlCompiler.__init__(self, *args, **kwargs)
134 self.code_generator = CodeGeneratorDictionaryImpl(
135 self.interfaces_info, self.cache_directory, self.output_directory,
136 use_relative_output_path=use_relative_output_path)
137
138 def compile_file(self, idl_filename):
139 self.compile_and_write(idl_filename)
140
141
142 def generate_bindings(options, input_filename):
129 idl_compiler = IdlCompilerV8( 143 idl_compiler = IdlCompilerV8(
130 options.output_directory, 144 options.output_directory,
131 cache_directory=options.cache_directory, 145 cache_directory=options.cache_directory,
132 interfaces_info_filename=options.interfaces_info_file, 146 interfaces_info_filename=options.interfaces_info_file,
133 only_if_changed=options.write_file_only_if_changed) 147 only_if_changed=options.write_file_only_if_changed)
134 idl_compiler.compile_file(idl_filename) 148 idl_compiler.compile_file(input_filename)
149
150
151 def generate_dictionary_impl(options, input_filename):
152 idl_compiler = IdlCompilerDictionaryImpl(
153 options.output_directory,
154 cache_directory=options.cache_directory,
155 interfaces_info_filename=options.interfaces_info_file,
156 only_if_changed=options.write_file_only_if_changed)
157
158 idl_filenames = read_idl_files_list_from_file(input_filename)
159 for idl_filename in idl_filenames:
160 idl_compiler.compile_file(idl_filename)
161
162
163 def main():
164 options, input_filename = parse_options()
165 if options.generate_dictionary_impl:
166 # |input_filename| should be a file which contains list of IDL
haraken 2014/08/26 04:00:40 list => a list
bashi 2014/08/27 05:06:32 Done.
167 # dictionary paths.
168 generate_dictionary_impl(options, input_filename)
169 else:
170 # |input_filename| should be path of an IDL file.
haraken 2014/08/26 04:00:40 path => a path
bashi 2014/08/27 05:06:32 Done.
171 generate_bindings(options, input_filename)
135 172
136 173
137 if __name__ == '__main__': 174 if __name__ == '__main__':
138 sys.exit(main()) 175 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698