[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2012 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. |
| 5 | |
nyquist | 38f28ba | 2014-09-04 00:28:38 | [diff] [blame] | 6 | """Generate java source files from protobuf files. |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 7 | |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 8 | This is a helper file for the genproto_java action in protoc_java.gypi. |
| 9 | |
| 10 | It performs the following steps: |
| 11 | 1. Deletes all old sources (ensures deleted classes are not part of new jars). |
| 12 | 2. Creates source directory. |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 13 | 3. Generates Java files using protoc (output into either --java-out-dir or |
| 14 | --srcjar). |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 15 | 4. Creates a new stamp file. |
| 16 | """ |
| 17 | |
Raul Tambre | 9e24293b | 2019-05-12 06:11:07 | [diff] [blame^] | 18 | from __future__ import print_function |
| 19 | |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 20 | import os |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 21 | import optparse |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 22 | import shutil |
| 23 | import subprocess |
| 24 | import sys |
| 25 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 26 | sys.path.append(os.path.join(os.path.dirname(__file__), "android", "gyp")) |
| 27 | from util import build_utils |
| 28 | |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 29 | def main(argv): |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 30 | parser = optparse.OptionParser() |
| 31 | build_utils.AddDepfileOption(parser) |
| 32 | parser.add_option("--protoc", help="Path to protoc binary.") |
| 33 | parser.add_option("--proto-path", help="Path to proto directory.") |
| 34 | parser.add_option("--java-out-dir", |
| 35 | help="Path to output directory for java files.") |
| 36 | parser.add_option("--srcjar", help="Path to output srcjar.") |
| 37 | parser.add_option("--stamp", help="File to touch on success.") |
Jan Krcal | dc07255 | 2018-04-09 08:52:16 | [diff] [blame] | 38 | parser.add_option("--nano", |
| 39 | help="Use to generate nano protos.", action='store_true') |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 40 | parser.add_option("--protoc-javalite-plugin-dir", |
| 41 | help="Path to protoc java lite plugin directory.") |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 42 | options, args = parser.parse_args(argv) |
| 43 | |
| 44 | build_utils.CheckOptions(options, parser, ['protoc', 'proto_path']) |
| 45 | if not options.java_out_dir and not options.srcjar: |
Raul Tambre | 9e24293b | 2019-05-12 06:11:07 | [diff] [blame^] | 46 | print('One of --java-out-dir or --srcjar must be specified.') |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 47 | return 1 |
| 48 | |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 49 | if not options.nano and not options.protoc_javalite_plugin_dir: |
Raul Tambre | 9e24293b | 2019-05-12 06:11:07 | [diff] [blame^] | 50 | print('One of --nano or --protoc-javalite-plugin-dir must be specified.') |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 51 | return 1 |
| 52 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 53 | with build_utils.TempDir() as temp_dir: |
Jan Krcal | dc07255 | 2018-04-09 08:52:16 | [diff] [blame] | 54 | if options.nano: |
| 55 | # Specify arguments to the generator. |
| 56 | generator_args = ['optional_field_style=reftypes', |
| 57 | 'store_unknown_fields=true'] |
| 58 | out_arg = '--javanano_out=' + ','.join(generator_args) + ':' + temp_dir |
| 59 | else: |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 60 | out_arg = '--javalite_out=' + temp_dir |
Florian Uunk | cc12c7a | 2017-11-17 03:11:07 | [diff] [blame] | 61 | |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 62 | custom_env = os.environ.copy() |
| 63 | if options.protoc_javalite_plugin_dir: |
| 64 | # if we are generating lite protos, then the lite plugin needs to be in the path when protoc |
| 65 | # is called. See https://github.com/protocolbuffers/protobuf/blob/master/java/lite.md |
| 66 | custom_env['PATH'] = '{}:{}'.format( |
| 67 | os.path.abspath(options.protoc_javalite_plugin_dir), custom_env['PATH']) |
| 68 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 69 | # Generate Java files using protoc. |
| 70 | build_utils.CheckOutput( |
| 71 | [options.protoc, '--proto_path', options.proto_path, out_arg] |
oysteine | cabc7f4 | 2018-12-01 00:08:52 | [diff] [blame] | 72 | + args, env=custom_env) |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 73 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 74 | if options.java_out_dir: |
| 75 | build_utils.DeleteDirectory(options.java_out_dir) |
| 76 | shutil.copytree(temp_dir, options.java_out_dir) |
| 77 | else: |
| 78 | build_utils.ZipDir(options.srcjar, temp_dir) |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 79 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 80 | if options.depfile: |
agrieve | 4eb18a55 | 2016-09-14 02:04:21 | [diff] [blame] | 81 | assert options.srcjar |
| 82 | deps = args + [options.protoc] |
David 'Digit' Turner | 0006f473 | 2018-08-07 07:12:36 | [diff] [blame] | 83 | build_utils.WriteDepfile(options.depfile, options.srcjar, deps, |
| 84 | add_pydeps=False) |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 85 | |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 86 | if options.stamp: |
| 87 | build_utils.Touch(options.stamp) |
[email protected] | d339e3c | 2012-11-14 21:20:47 | [diff] [blame] | 88 | |
| 89 | if __name__ == '__main__': |
cjhopman | a3f2d3f6 | 2014-10-01 23:48:58 | [diff] [blame] | 90 | sys.exit(main(sys.argv[1:])) |