blob: 58b039ec72c0740362a8e8b8778c219c86e4eb6e [file] [log] [blame]
Colin Cross6af17aa2017-09-20 12:59:05 -07001// Copyright 2017 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17import (
Colin Crossd5dbfb72017-11-14 13:11:23 -080018 "strings"
19
Colin Cross6af17aa2017-09-20 12:59:05 -070020 "github.com/google/blueprint"
Colin Cross6af17aa2017-09-20 12:59:05 -070021
22 "android/soong/android"
23)
24
25func init() {
26 pctx.HostBinToolVariable("protocCmd", "aprotoc")
Dan Willemsena10504e2018-05-17 10:11:17 -070027 pctx.HostBinToolVariable("depFixCmd", "dep_fixer")
Colin Cross6af17aa2017-09-20 12:59:05 -070028}
29
30var (
31 proto = pctx.AndroidStaticRule("protoc",
32 blueprint.RuleParams{
Dan Willemsenab9f4262018-02-14 13:58:34 -080033 Command: `rm -rf $out.tmp && mkdir -p $out.tmp && ` +
Dan Willemsen43398532018-02-21 02:10:29 -080034 `$protocCmd $protoOut=$protoOutParams:$out.tmp --dependency_out=$out.d -I $protoBase $protoFlags $in && ` +
Dan Willemsena10504e2018-05-17 10:11:17 -070035 `$depFixCmd $out.d && ` +
Dan Willemsenab9f4262018-02-14 13:58:34 -080036 `${config.SoongZipCmd} -jar -o $out -C $out.tmp -D $out.tmp && rm -rf $out.tmp`,
Colin Cross59149b62017-10-16 18:07:29 -070037 CommandDeps: []string{
38 "$protocCmd",
Dan Willemsena10504e2018-05-17 10:11:17 -070039 "$depFixCmd",
Colin Cross59149b62017-10-16 18:07:29 -070040 "${config.SoongZipCmd}",
41 },
Dan Willemsen43398532018-02-21 02:10:29 -080042 Depfile: "${out}.d",
43 Deps: blueprint.DepsGCC,
Dan Willemsenab9f4262018-02-14 13:58:34 -080044 }, "protoBase", "protoFlags", "protoOut", "protoOutParams")
Colin Cross6af17aa2017-09-20 12:59:05 -070045)
46
Dan Willemsenab9f4262018-02-14 13:58:34 -080047func genProto(ctx android.ModuleContext, protoFile android.Path, flags javaBuilderFlags) android.Path {
48 srcJarFile := android.GenPathWithExt(ctx, "proto", protoFile, "srcjar")
49
50 var protoBase string
51 if flags.protoRoot {
52 protoBase = "."
53 } else {
54 protoBase = strings.TrimSuffix(protoFile.String(), protoFile.Rel())
55 }
Colin Cross6af17aa2017-09-20 12:59:05 -070056
Colin Crossae887032017-10-23 17:16:14 -070057 ctx.Build(pctx, android.BuildParams{
Colin Cross6af17aa2017-09-20 12:59:05 -070058 Rule: proto,
Dan Willemsenab9f4262018-02-14 13:58:34 -080059 Description: "protoc " + protoFile.Rel(),
60 Output: srcJarFile,
61 Input: protoFile,
Colin Cross6af17aa2017-09-20 12:59:05 -070062 Args: map[string]string{
Dan Willemsenab9f4262018-02-14 13:58:34 -080063 "protoBase": protoBase,
64 "protoOut": flags.protoOutTypeFlag,
65 "protoOutParams": flags.protoOutParams,
66 "protoFlags": strings.Join(flags.protoFlags, " "),
Colin Cross6af17aa2017-09-20 12:59:05 -070067 },
68 })
Dan Willemsenab9f4262018-02-14 13:58:34 -080069
70 return srcJarFile
Colin Cross6af17aa2017-09-20 12:59:05 -070071}
72
73func protoDeps(ctx android.BottomUpMutatorContext, p *android.ProtoProperties) {
Colin Crossff3ae9d2018-04-10 16:15:18 -070074 switch String(p.Proto.Type) {
Colin Cross6af17aa2017-09-20 12:59:05 -070075 case "micro":
76 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-micro")
77 case "nano":
78 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-nano")
Colin Cross6af17aa2017-09-20 12:59:05 -070079 case "lite", "":
80 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-lite")
81 case "full":
82 if ctx.Host() {
83 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-full")
84 } else {
85 ctx.PropertyErrorf("proto.type", "full java protos only supported on the host")
86 }
87 default:
88 ctx.PropertyErrorf("proto.type", "unknown proto type %q",
Colin Crossff3ae9d2018-04-10 16:15:18 -070089 String(p.Proto.Type))
Colin Cross6af17aa2017-09-20 12:59:05 -070090 }
91}
92
Colin Cross0f2ee152017-12-14 15:22:43 -080093func protoFlags(ctx android.ModuleContext, j *CompilerProperties, p *android.ProtoProperties,
94 flags javaBuilderFlags) javaBuilderFlags {
95
Colin Crossff3ae9d2018-04-10 16:15:18 -070096 switch String(p.Proto.Type) {
Colin Cross6af17aa2017-09-20 12:59:05 -070097 case "micro":
Joe Onorato09e94ab2017-11-18 18:23:14 -080098 flags.protoOutTypeFlag = "--javamicro_out"
Colin Cross6af17aa2017-09-20 12:59:05 -070099 case "nano":
Joe Onorato09e94ab2017-11-18 18:23:14 -0800100 flags.protoOutTypeFlag = "--javanano_out"
101 case "lite":
102 flags.protoOutTypeFlag = "--java_out"
103 flags.protoOutParams = "lite"
104 case "full", "":
105 flags.protoOutTypeFlag = "--java_out"
Colin Cross6af17aa2017-09-20 12:59:05 -0700106 default:
107 ctx.PropertyErrorf("proto.type", "unknown proto type %q",
Colin Crossff3ae9d2018-04-10 16:15:18 -0700108 String(p.Proto.Type))
Colin Cross6af17aa2017-09-20 12:59:05 -0700109 }
Colin Crossd5dbfb72017-11-14 13:11:23 -0800110
Colin Cross0f2ee152017-12-14 15:22:43 -0800111 if len(j.Proto.Output_params) > 0 {
112 if flags.protoOutParams != "" {
113 flags.protoOutParams += ","
114 }
115 flags.protoOutParams += strings.Join(j.Proto.Output_params, ",")
116 }
117
Colin Crossd5dbfb72017-11-14 13:11:23 -0800118 flags.protoFlags = android.ProtoFlags(ctx, p)
Dan Willemsenab9f4262018-02-14 13:58:34 -0800119 flags.protoRoot = android.ProtoCanonicalPathFromRoot(ctx, p)
Colin Crossd5dbfb72017-11-14 13:11:23 -0800120
Colin Cross6af17aa2017-09-20 12:59:05 -0700121 return flags
122}