blob: e491ed52c6ea7f6c1e8055619f3f6b832083f2d1 [file] [log] [blame]
Michael Thvedt828a4be2015-08-12 17:45:36 +00001#!/usr/bin/python2.7
2
Damien Martin-Guillerezf88f4d82015-09-25 13:56:55 +00003# Copyright 2015 The Bazel Authors. All rights reserved.
Michael Thvedt828a4be2015-08-12 17:45:36 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http:#www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""A wrapper script for J2ObjC transpiler.
18
19This script wraps around J2ObjC transpiler to also output a dependency mapping
20file by scanning the import and include directives of the J2ObjC-translated
21files.
22"""
23
24import argparse
Rumou Duana1a13ae2016-07-26 17:23:26 +000025import errno
Michael Thvedt828a4be2015-08-12 17:45:36 +000026import multiprocessing
27import os
28import Queue
29import re
Rumou Duana1a13ae2016-07-26 17:23:26 +000030import shutil
Michael Thvedt828a4be2015-08-12 17:45:36 +000031import subprocess
Rumou Duan18742ad2015-09-02 23:45:03 +000032import tempfile
Michael Thvedt828a4be2015-08-12 17:45:36 +000033import threading
Rumou Duana1a13ae2016-07-26 17:23:26 +000034import zipfile
Michael Thvedt828a4be2015-08-12 17:45:36 +000035
Rumou Duana1a13ae2016-07-26 17:23:26 +000036_INCLUDE_RE = re.compile('#(include|import) "([^"]+)"')
37_CONST_DATE_TIME = [1980, 1, 1, 0, 0, 0]
Michael Thvedt828a4be2015-08-12 17:45:36 +000038
39
Rumou Duana1a13ae2016-07-26 17:23:26 +000040def RunJ2ObjC(java, jvm_flags, j2objc, main_class, output_file_path,
41 j2objc_args, source_paths, files_to_translate):
Michael Thvedt828a4be2015-08-12 17:45:36 +000042 """Runs J2ObjC transpiler to translate Java source files to ObjC.
43
44 Args:
45 java: The path of the Java executable.
46 jvm_flags: A comma-separated list of flags to pass to JVM.
47 j2objc: The deploy jar of J2ObjC.
48 main_class: The J2ObjC main class to invoke.
Rumou Duana1a13ae2016-07-26 17:23:26 +000049 output_file_path: The output file directory.
Rumou Duan18742ad2015-09-02 23:45:03 +000050 j2objc_args: A list of args to pass to J2ObjC transpiler.
Rumou Duana1a13ae2016-07-26 17:23:26 +000051 source_paths: A list of directories that contain sources to translate.
52 files_to_translate: A list of relative paths (relative to source_paths) that
53 point to sources to translate.
Michael Thvedt828a4be2015-08-12 17:45:36 +000054 Returns:
55 None.
56 """
Googlerf7bc9e52017-06-16 17:06:10 +020057 j2objc_args.extend(['-sourcepath', ':'.join(source_paths)])
58 j2objc_args.extend(['-d', output_file_path])
59 j2objc_args.extend(files_to_translate)
60 param_file_content = ' '.join(j2objc_args)
Rumou Duan18742ad2015-09-02 23:45:03 +000061 fd = None
62 param_filename = None
63 try:
64 fd, param_filename = tempfile.mkstemp(text=True)
Googlerf7bc9e52017-06-16 17:06:10 +020065 os.write(fd, param_file_content)
Rumou Duan18742ad2015-09-02 23:45:03 +000066 finally:
67 if fd:
68 os.close(fd)
69 try:
70 j2objc_cmd = [java]
71 j2objc_cmd.extend(filter(None, jvm_flags.split(',')))
72 j2objc_cmd.extend(['-cp', j2objc, main_class])
Rumou Duan18742ad2015-09-02 23:45:03 +000073 j2objc_cmd.extend(['@%s' % param_filename])
74 subprocess.check_call(j2objc_cmd, stderr=subprocess.STDOUT)
75 finally:
76 if param_filename:
77 os.remove(param_filename)
Michael Thvedt828a4be2015-08-12 17:45:36 +000078
79
Rumou Duana1a13ae2016-07-26 17:23:26 +000080def WriteDepMappingFile(objc_files,
81 objc_file_root,
Michael Thvedt828a4be2015-08-12 17:45:36 +000082 output_dependency_mapping_file,
83 file_open=open):
84 """Scans J2ObjC-translated files and outputs a dependency mapping file.
85
86 The mapping file contains mappings between translated source files and their
87 imported source files scanned from the import and include directives.
88
89 Args:
Rumou Duana1a13ae2016-07-26 17:23:26 +000090 objc_files: A list of ObjC files translated by J2ObjC.
91 objc_file_root: The file path which represents a directory where the
Michael Thvedt828a4be2015-08-12 17:45:36 +000092 generated ObjC files reside.
93 output_dependency_mapping_file: The path of the dependency mapping file to
94 write to.
95 file_open: Reference to the builtin open function so it may be
96 overridden for testing.
Rumou Duan49cdb4b2015-12-04 18:03:44 +000097 Raises:
98 RuntimeError: If spawned threads throw errors during processing.
Michael Thvedt828a4be2015-08-12 17:45:36 +000099 Returns:
100 None.
101 """
102 dep_mapping = dict()
103 input_file_queue = Queue.Queue()
104 output_dep_mapping_queue = Queue.Queue()
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000105 error_message_queue = Queue.Queue()
Rumou Duana1a13ae2016-07-26 17:23:26 +0000106 for objc_file in objc_files:
107 input_file_queue.put(os.path.join(objc_file_root, objc_file))
Michael Thvedt828a4be2015-08-12 17:45:36 +0000108
109 for _ in xrange(multiprocessing.cpu_count()):
110 t = threading.Thread(target=_ReadDepMapping, args=(input_file_queue,
111 output_dep_mapping_queue,
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000112 error_message_queue,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000113 objc_file_root,
Michael Thvedt828a4be2015-08-12 17:45:36 +0000114 file_open))
115 t.start()
116
117 input_file_queue.join()
118
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000119 if not error_message_queue.empty():
120 error_messages = [error_message for error_message in
121 error_message_queue.queue]
122 raise RuntimeError('\n'.join(error_messages))
123
Michael Thvedt828a4be2015-08-12 17:45:36 +0000124 while not output_dep_mapping_queue.empty():
125 entry_file, deps = output_dep_mapping_queue.get()
126 dep_mapping[entry_file] = deps
127
128 f = file_open(output_dependency_mapping_file, 'w')
129 for entry in sorted(dep_mapping):
130 for dep in dep_mapping[entry]:
131 f.write(entry + ':' + dep + '\n')
132 f.close()
133
134
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000135def _ReadDepMapping(input_file_queue, output_dep_mapping_queue,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000136 error_message_queue, output_root, file_open=open):
Michael Thvedt828a4be2015-08-12 17:45:36 +0000137 while True:
138 try:
139 input_file = input_file_queue.get_nowait()
140 except Queue.Empty:
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000141 # No more work left in the queue.
Michael Thvedt828a4be2015-08-12 17:45:36 +0000142 return
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000143
144 try:
Googlerfc031e22017-04-03 20:31:42 +0000145 deps = set()
146 input_file_name = os.path.splitext(input_file)[0]
147 entry = os.path.relpath(input_file_name, output_root)
148 for file_ext in ['.m', '.h']:
149 with file_open(input_file_name + file_ext, 'r') as f:
150 for line in f:
151 include = _INCLUDE_RE.match(line)
152 if include:
153 include_path = include.group(2)
154 dep = os.path.splitext(include_path)[0]
155 if dep != entry:
156 deps.add(dep)
157
158 output_dep_mapping_queue.put((entry, sorted(deps)))
Rumou Duan49cdb4b2015-12-04 18:03:44 +0000159 except Exception as e: # pylint: disable=broad-except
160 error_message_queue.put(str(e))
161 finally:
162 # We need to mark the task done to prevent blocking the main process
163 # indefinitely.
164 input_file_queue.task_done()
Michael Thvedt828a4be2015-08-12 17:45:36 +0000165
Rumou Duan18742ad2015-09-02 23:45:03 +0000166
Rumou Duan123e1c32016-02-01 16:16:15 +0000167def WriteArchiveSourceMappingFile(compiled_archive_file_path,
168 output_archive_source_mapping_file,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000169 objc_files,
Rumou Duan123e1c32016-02-01 16:16:15 +0000170 file_open=open):
171 """Writes a mapping file between archive file to associated ObjC source files.
172
173 Args:
174 compiled_archive_file_path: The path of the archive file.
175 output_archive_source_mapping_file: A path of the mapping file to write to.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000176 objc_files: A list of ObjC files translated by J2ObjC.
Rumou Duan123e1c32016-02-01 16:16:15 +0000177 file_open: Reference to the builtin open function so it may be
178 overridden for testing.
179 Returns:
180 None.
181 """
182 with file_open(output_archive_source_mapping_file, 'w') as f:
Rumou Duana1a13ae2016-07-26 17:23:26 +0000183 for objc_file in objc_files:
184 f.write(compiled_archive_file_path + ':' + objc_file + '\n')
185
186
Rumou Duan18742ad2015-09-02 23:45:03 +0000187def _ParseArgs(j2objc_args):
188 """Separate arguments passed to J2ObjC into source files and J2ObjC flags.
189
190 Args:
191 j2objc_args: A list of args to pass to J2ObjC transpiler.
192 Returns:
193 A tuple containing source files and J2ObjC flags
194 """
195 source_files = []
196 flags = []
197 is_next_flag_value = False
198 for j2objc_arg in j2objc_args:
199 if j2objc_arg.startswith('-'):
200 flags.append(j2objc_arg)
201 is_next_flag_value = True
202 elif is_next_flag_value:
203 flags.append(j2objc_arg)
204 is_next_flag_value = False
205 else:
206 source_files.append(j2objc_arg)
207 return (source_files, flags)
208
209
Rumou Duana1a13ae2016-07-26 17:23:26 +0000210def _J2ObjcOutputObjcFiles(java_files):
211 """Returns the relative paths of the associated output ObjC source files.
212
213 Args:
214 java_files: The list of Java files to translate.
215 Returns:
216 A list of associated output ObjC source files.
217 """
218 return [os.path.splitext(java_file)[0] + '.m' for java_file in java_files]
219
220
Rumou Duane7fd5392017-01-09 20:33:33 +0000221def UnzipSourceJarSources(source_jars):
222 """Unzips the source jars containing Java source files.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000223
224 Args:
Rumou Duane7fd5392017-01-09 20:33:33 +0000225 source_jars: The list of input Java source jars.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000226 Returns:
227 A tuple of the temporary output root and a list of root-relative paths of
228 unzipped Java files
229 """
Rumou Duane7fd5392017-01-09 20:33:33 +0000230 srcjar_java_files = []
231 if source_jars:
Rumou Duana1a13ae2016-07-26 17:23:26 +0000232 tmp_input_root = tempfile.mkdtemp()
Rumou Duane7fd5392017-01-09 20:33:33 +0000233 for source_jar in source_jars:
234 zip_ref = zipfile.ZipFile(source_jar, 'r')
235 zip_entries = []
Rumou Duana1a13ae2016-07-26 17:23:26 +0000236
Rumou Duane7fd5392017-01-09 20:33:33 +0000237 for file_entry in zip_ref.namelist():
238 # We only care about Java source files.
239 if file_entry.endswith('.java'):
240 zip_entries.append(file_entry)
Rumou Duana1a13ae2016-07-26 17:23:26 +0000241
Rumou Duane7fd5392017-01-09 20:33:33 +0000242 zip_ref.extractall(tmp_input_root, zip_entries)
243 zip_ref.close()
244 srcjar_java_files.extend(zip_entries)
245
246 return (tmp_input_root, srcjar_java_files)
Rumou Duana1a13ae2016-07-26 17:23:26 +0000247 else:
248 return None
249
250
251def RenameGenJarObjcFileRootInFileContent(tmp_objc_file_root,
252 j2objc_source_paths,
253 gen_src_jar, genjar_objc_files,
254 execute=subprocess.check_call):
255 """Renames references to temporary root inside ObjC sources from gen srcjar.
256
257 Args:
258 tmp_objc_file_root: The temporary output root containing ObjC sources.
259 j2objc_source_paths: The source paths used by J2ObjC.
260 gen_src_jar: The path of the gen srcjar.
261 genjar_objc_files: The list of ObjC sources translated from the gen srcjar.
262 execute: The function used to execute shell commands.
263 Returns:
264 None.
265 """
266 if genjar_objc_files:
267 abs_genjar_objc_source_files = [
268 os.path.join(tmp_objc_file_root, genjar_objc_file)
269 for genjar_objc_file in genjar_objc_files
270 ]
271 abs_genjar_objc_header_files = [
272 os.path.join(tmp_objc_file_root,
273 os.path.splitext(genjar_objc_file)[0] + '.h')
274 for genjar_objc_file in genjar_objc_files
275 ]
276
277 # We execute a command to change all references of the temporary Java root
278 # where we unzipped the gen srcjar sources, to the actual gen srcjar that
279 # contains the original Java sources.
280 cmd = [
281 'sed',
282 '-i',
283 '-e',
284 's|%s/|%s::|g' % (j2objc_source_paths[1], gen_src_jar)
285 ]
286 cmd.extend(abs_genjar_objc_source_files)
287 cmd.extend(abs_genjar_objc_header_files)
288 execute(cmd, stderr=subprocess.STDOUT)
289
290
Rumou Duand7cdc552016-11-03 19:42:48 +0000291def MoveObjcFileToFinalOutputRoot(objc_files,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000292 tmp_objc_file_root,
293 final_objc_file_root,
294 suffix,
295 os_module=os,
296 shutil_module=shutil):
Rumou Duand7cdc552016-11-03 19:42:48 +0000297 """Moves ObjC files from temporary location to the final output location.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000298
299 Args:
Rumou Duand7cdc552016-11-03 19:42:48 +0000300 objc_files: The list of objc files to move.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000301 tmp_objc_file_root: The temporary output root containing ObjC sources.
302 final_objc_file_root: The final output root.
Rumou Duand7cdc552016-11-03 19:42:48 +0000303 suffix: The suffix of the files to move.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000304 os_module: The os python module.
305 shutil_module: The shutil python module.
306 Returns:
307 None.
308 """
309 for objc_file in objc_files:
310 file_with_suffix = os_module.path.splitext(objc_file)[0] + suffix
311 dest_path = os_module.path.join(
312 final_objc_file_root, file_with_suffix)
313 dest_path_dir = os_module.path.dirname(dest_path)
314
315 if not os_module.path.isdir(dest_path_dir):
316 try:
317 os_module.makedirs(dest_path_dir)
318 except OSError as e:
319 if e.errno != errno.EEXIST or not os_module.path.isdir(dest_path_dir):
320 raise
321
Rumou Duand7cdc552016-11-03 19:42:48 +0000322 shutil_module.move(
Rumou Duana1a13ae2016-07-26 17:23:26 +0000323 os_module.path.join(tmp_objc_file_root, file_with_suffix),
324 dest_path)
325
326
327def PostJ2ObjcFileProcessing(normal_objc_files, genjar_objc_files,
328 tmp_objc_file_root, final_objc_file_root,
329 j2objc_source_paths, gen_src_jar,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000330 output_gen_source_dir, output_gen_header_dir):
331 """Performs cleanups on ObjC files and moves them to final output location.
332
333 Args:
334 normal_objc_files: The list of objc files translated from normal Java files.
335 genjar_objc_files: The list of ObjC sources translated from the gen srcjar.
336 tmp_objc_file_root: The temporary output root containing ObjC sources.
337 final_objc_file_root: The final output root.
338 j2objc_source_paths: The source paths used by J2ObjC.
339 gen_src_jar: The path of the gen srcjar.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000340 output_gen_source_dir: The final output directory of ObjC source files
341 translated from gen srcjar. Maybe null.
342 output_gen_header_dir: The final output directory of ObjC header files
343 translated from gen srcjar. Maybe null.
344 Returns:
345 None.
346 """
347 RenameGenJarObjcFileRootInFileContent(tmp_objc_file_root,
348 j2objc_source_paths,
349 gen_src_jar,
350 genjar_objc_files)
Rumou Duand7cdc552016-11-03 19:42:48 +0000351 MoveObjcFileToFinalOutputRoot(normal_objc_files,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000352 tmp_objc_file_root,
353 final_objc_file_root,
354 '.m')
Rumou Duand7cdc552016-11-03 19:42:48 +0000355 MoveObjcFileToFinalOutputRoot(normal_objc_files,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000356 tmp_objc_file_root,
357 final_objc_file_root,
358 '.h')
359
Rumou Duana1a13ae2016-07-26 17:23:26 +0000360 if output_gen_source_dir:
Rumou Duand7cdc552016-11-03 19:42:48 +0000361 MoveObjcFileToFinalOutputRoot(
Rumou Duana1a13ae2016-07-26 17:23:26 +0000362 genjar_objc_files,
363 tmp_objc_file_root,
364 output_gen_source_dir,
365 '.m')
366
367 if output_gen_header_dir:
Rumou Duand7cdc552016-11-03 19:42:48 +0000368 MoveObjcFileToFinalOutputRoot(
Rumou Duana1a13ae2016-07-26 17:23:26 +0000369 genjar_objc_files,
370 tmp_objc_file_root,
371 output_gen_header_dir,
372 '.h')
373
374
375def GenerateJ2objcMappingFiles(normal_objc_files,
376 genjar_objc_files,
377 tmp_objc_file_root,
378 output_dependency_mapping_file,
379 output_archive_source_mapping_file,
380 compiled_archive_file_path):
381 """Generates J2ObjC mapping files.
382
383 Args:
384 normal_objc_files: The list of objc files translated from normal Java files.
385 genjar_objc_files: The list of ObjC sources translated from the gen srcjar.
386 tmp_objc_file_root: The temporary output root containing ObjC sources.
387 output_dependency_mapping_file: The path of the dependency mapping file to
388 write to.
389 output_archive_source_mapping_file: A path of the mapping file to write to.
390 compiled_archive_file_path: The path of the archive file.
391 Returns:
392 None.
393 """
394 WriteDepMappingFile(normal_objc_files + genjar_objc_files,
395 tmp_objc_file_root,
396 output_dependency_mapping_file)
397
398 if output_archive_source_mapping_file:
399 WriteArchiveSourceMappingFile(compiled_archive_file_path,
400 output_archive_source_mapping_file,
401 normal_objc_files + genjar_objc_files)
402
403
404def main():
Rumou Duanab16dd62015-08-18 21:52:08 +0000405 parser = argparse.ArgumentParser(fromfile_prefix_chars='@')
Michael Thvedt828a4be2015-08-12 17:45:36 +0000406 parser.add_argument(
407 '--java',
408 required=True,
409 help='The path to the Java executable.')
410 parser.add_argument(
411 '--jvm_flags',
Googler1672c762016-12-21 16:15:02 +0000412 default='-Xss4m',
Michael Thvedt828a4be2015-08-12 17:45:36 +0000413 help='A comma-separated list of flags to pass to the JVM.')
414 parser.add_argument(
415 '--j2objc',
416 required=True,
417 help='The path to the J2ObjC deploy jar.')
418 parser.add_argument(
419 '--main_class',
420 required=True,
421 help='The main class of the J2ObjC deploy jar to execute.')
Rumou Duana1a13ae2016-07-26 17:23:26 +0000422 # TODO(rduan): Remove, no longer needed.
Michael Thvedt828a4be2015-08-12 17:45:36 +0000423 parser.add_argument(
424 '--translated_source_files',
Rumou Duand7cdc552016-11-03 19:42:48 +0000425 required=False,
Michael Thvedt828a4be2015-08-12 17:45:36 +0000426 help=('A comma-separated list of file paths where J2ObjC will write the '
427 'translated files to.'))
428 parser.add_argument(
429 '--output_dependency_mapping_file',
430 required=True,
431 help='The file path of the dependency mapping file to write to.')
432 parser.add_argument(
Rumou Duana1a13ae2016-07-26 17:23:26 +0000433 '--objc_file_path', '-d',
Michael Thvedt828a4be2015-08-12 17:45:36 +0000434 required=True,
435 help=('The file path which represents a directory where the generated '
436 'ObjC files reside.'))
Rumou Duan123e1c32016-02-01 16:16:15 +0000437 parser.add_argument(
438 '--output_archive_source_mapping_file',
439 help='The file path of the mapping file containing mappings between the '
440 'translated source files and the to-be-generated archive file '
441 'compiled from those source files. --compile_archive_file_path must '
442 'be specified if this option is specified.')
443 parser.add_argument(
444 '--compiled_archive_file_path',
445 required=False,
446 help=('The archive file path that will be produced by ObjC compile action'
447 ' later'))
Rumou Duane7fd5392017-01-09 20:33:33 +0000448 # TODO(rduan): Remove this flag once it is fully replaced by flag --src_jars.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000449 parser.add_argument(
450 '--gen_src_jar',
451 required=False,
452 help='The jar containing Java sources generated by annotation processor.')
453 parser.add_argument(
Rumou Duane7fd5392017-01-09 20:33:33 +0000454 '--src_jars',
455 required=False,
456 help='The list of Java source jars containg Java sources to translate.')
457 parser.add_argument(
Rumou Duana1a13ae2016-07-26 17:23:26 +0000458 '--output_gen_source_dir',
459 required=False,
460 help='The output directory of ObjC source files translated from the gen'
461 ' srcjar')
462 parser.add_argument(
463 '--output_gen_header_dir',
464 required=False,
465 help='The output directory of ObjC header files translated from the gen'
466 ' srcjar')
Michael Thvedt828a4be2015-08-12 17:45:36 +0000467
Rumou Duana1a13ae2016-07-26 17:23:26 +0000468 args, pass_through_args = parser.parse_known_args()
469 normal_java_files, j2objc_flags = _ParseArgs(pass_through_args)
Rumou Duane7fd5392017-01-09 20:33:33 +0000470 srcjar_java_files = []
Rumou Duana1a13ae2016-07-26 17:23:26 +0000471 j2objc_source_paths = [os.getcwd()]
472
Rumou Duane7fd5392017-01-09 20:33:33 +0000473 # Unzip the source jars, so J2ObjC can translate the contained sources.
Rumou Duana1a13ae2016-07-26 17:23:26 +0000474 # Also add the temporary directory containing the unzipped sources as a source
475 # path for J2ObjC, so it can find these sources.
Rumou Duane7fd5392017-01-09 20:33:33 +0000476 source_jars = []
477 if args.gen_src_jar:
478 source_jars.append(args.gen_src_jar)
479 if args.src_jars:
480 source_jars.extend(args.src_jars.split(','))
481
482 srcjar_source_tuple = UnzipSourceJarSources(source_jars)
483 if srcjar_source_tuple:
484 j2objc_source_paths.append(srcjar_source_tuple[0])
485 srcjar_java_files = srcjar_source_tuple[1]
Rumou Duana1a13ae2016-07-26 17:23:26 +0000486
487 # Run J2ObjC over the normal input Java files and unzipped gen jar Java files.
488 # The output is stored in a temporary directory.
489 tmp_objc_file_root = tempfile.mkdtemp()
Rumou Duan6773c152017-03-24 17:12:25 +0000490
491 # If we do not generate the header mapping from J2ObjC, we still
492 # need to specify --output-header-mapping, as it signals to J2ObjC that we
493 # are using source paths as import paths, not package paths.
494 # TODO(rduan): Make another flag in J2ObjC to specify using source paths.
495 if '--output-header-mapping' not in j2objc_flags:
496 j2objc_flags.extend(['--output-header-mapping', '/dev/null'])
497
Michael Thvedt828a4be2015-08-12 17:45:36 +0000498 RunJ2ObjC(args.java,
499 args.jvm_flags,
500 args.j2objc,
501 args.main_class,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000502 tmp_objc_file_root,
503 j2objc_flags,
504 j2objc_source_paths,
Rumou Duane7fd5392017-01-09 20:33:33 +0000505 normal_java_files + srcjar_java_files)
Rumou Duan123e1c32016-02-01 16:16:15 +0000506
Rumou Duana1a13ae2016-07-26 17:23:26 +0000507 # Calculate the relative paths of generated objc files.
508 normal_objc_files = _J2ObjcOutputObjcFiles(normal_java_files)
Rumou Duane7fd5392017-01-09 20:33:33 +0000509 genjar_objc_files = _J2ObjcOutputObjcFiles(srcjar_java_files)
Rumou Duana1a13ae2016-07-26 17:23:26 +0000510
511 # Generate J2ObjC mapping files needed for distributed builds.
512 GenerateJ2objcMappingFiles(normal_objc_files,
513 genjar_objc_files,
514 tmp_objc_file_root,
515 args.output_dependency_mapping_file,
516 args.output_archive_source_mapping_file,
517 args.compiled_archive_file_path)
518
Rumou Duand7cdc552016-11-03 19:42:48 +0000519 # Post J2ObjC-run processing, involving file editing, zipping and moving
Rumou Duana1a13ae2016-07-26 17:23:26 +0000520 # files to their final output locations.
521 PostJ2ObjcFileProcessing(
522 normal_objc_files,
523 genjar_objc_files,
524 tmp_objc_file_root,
525 args.objc_file_path,
526 j2objc_source_paths,
527 args.gen_src_jar,
Rumou Duana1a13ae2016-07-26 17:23:26 +0000528 args.output_gen_source_dir,
529 args.output_gen_header_dir)
530
531if __name__ == '__main__':
532 main()