blob: 470667c1f4bff9d7d1b130db2d5435bfda0d26d5 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/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
6"""Generate java source files from protobuf files.
7
8This is a helper file for the genproto_java action in protoc_java.gypi.
9
10It performs the following steps:
111. Deletes all old sources (ensures deleted classes are not part of new jars).
122. Creates source directory.
133. Generates Java files using protoc (output into either --java-out-dir or
14 --srcjar).
154. Creates a new stamp file.
16"""
17
18import os
19import optparse
20import shutil
21import subprocess
22import sys
23
24sys.path.append(os.path.join(os.path.dirname(__file__), "android", "gyp"))
25from util import build_utils
26
27def main(argv):
28 parser = optparse.OptionParser()
29 build_utils.AddDepfileOption(parser)
30 parser.add_option("--protoc", help="Path to protoc binary.")
31 parser.add_option("--proto-path", help="Path to proto directory.")
32 parser.add_option("--java-out-dir",
33 help="Path to output directory for java files.")
34 parser.add_option("--srcjar", help="Path to output srcjar.")
35 parser.add_option("--stamp", help="File to touch on success.")
36 options, args = parser.parse_args(argv)
37
38 build_utils.CheckOptions(options, parser, ['protoc', 'proto_path'])
39 if not options.java_out_dir and not options.srcjar:
40 print 'One of --java-out-dir or --srcjar must be specified.'
41 return 1
42
43 with build_utils.TempDir() as temp_dir:
44 # Specify arguments to the generator.
45 generator_args = ['optional_field_style=reftypes',
46 'store_unknown_fields=true']
47 out_arg = '--javanano_out=' + ','.join(generator_args) + ':' + temp_dir
48 # Generate Java files using protoc.
49 build_utils.CheckOutput(
50 [options.protoc, '--proto_path', options.proto_path, out_arg]
51 + args)
52
53 if options.java_out_dir:
54 build_utils.DeleteDirectory(options.java_out_dir)
55 shutil.copytree(temp_dir, options.java_out_dir)
56 else:
57 build_utils.ZipDir(options.srcjar, temp_dir)
58
59 if options.depfile:
60 build_utils.WriteDepfile(
61 options.depfile,
62 args + [options.protoc] + build_utils.GetPythonDependencies())
63
64 if options.stamp:
65 build_utils.Touch(options.stamp)
66
67if __name__ == '__main__':
68 sys.exit(main(sys.argv[1:]))