blob: 2991ad982ced3eccb74e029cdbb2b057c93e92ec [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"
21 "github.com/google/blueprint/proptools"
22
23 "android/soong/android"
24)
25
26func init() {
27 pctx.HostBinToolVariable("protocCmd", "aprotoc")
28}
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 && ` +
34 `$protocCmd $protoOut=$protoOutParams:$out.tmp -I $protoBase $protoFlags $in && ` +
35 `${config.SoongZipCmd} -jar -o $out -C $out.tmp -D $out.tmp && rm -rf $out.tmp`,
Colin Cross59149b62017-10-16 18:07:29 -070036 CommandDeps: []string{
37 "$protocCmd",
38 "${config.SoongZipCmd}",
39 },
Dan Willemsenab9f4262018-02-14 13:58:34 -080040 }, "protoBase", "protoFlags", "protoOut", "protoOutParams")
Colin Cross6af17aa2017-09-20 12:59:05 -070041)
42
Dan Willemsenab9f4262018-02-14 13:58:34 -080043func genProto(ctx android.ModuleContext, protoFile android.Path, flags javaBuilderFlags) android.Path {
44 srcJarFile := android.GenPathWithExt(ctx, "proto", protoFile, "srcjar")
45
46 var protoBase string
47 if flags.protoRoot {
48 protoBase = "."
49 } else {
50 protoBase = strings.TrimSuffix(protoFile.String(), protoFile.Rel())
51 }
Colin Cross6af17aa2017-09-20 12:59:05 -070052
Colin Crossae887032017-10-23 17:16:14 -070053 ctx.Build(pctx, android.BuildParams{
Colin Cross6af17aa2017-09-20 12:59:05 -070054 Rule: proto,
Dan Willemsenab9f4262018-02-14 13:58:34 -080055 Description: "protoc " + protoFile.Rel(),
56 Output: srcJarFile,
57 Input: protoFile,
Colin Cross6af17aa2017-09-20 12:59:05 -070058 Args: map[string]string{
Dan Willemsenab9f4262018-02-14 13:58:34 -080059 "protoBase": protoBase,
60 "protoOut": flags.protoOutTypeFlag,
61 "protoOutParams": flags.protoOutParams,
62 "protoFlags": strings.Join(flags.protoFlags, " "),
Colin Cross6af17aa2017-09-20 12:59:05 -070063 },
64 })
Dan Willemsenab9f4262018-02-14 13:58:34 -080065
66 return srcJarFile
Colin Cross6af17aa2017-09-20 12:59:05 -070067}
68
69func protoDeps(ctx android.BottomUpMutatorContext, p *android.ProtoProperties) {
70 switch proptools.String(p.Proto.Type) {
71 case "micro":
72 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-micro")
73 case "nano":
74 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-nano")
Colin Cross6af17aa2017-09-20 12:59:05 -070075 case "lite", "":
76 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-lite")
77 case "full":
78 if ctx.Host() {
79 ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-full")
80 } else {
81 ctx.PropertyErrorf("proto.type", "full java protos only supported on the host")
82 }
83 default:
84 ctx.PropertyErrorf("proto.type", "unknown proto type %q",
85 proptools.String(p.Proto.Type))
86 }
87}
88
Colin Cross0f2ee152017-12-14 15:22:43 -080089func protoFlags(ctx android.ModuleContext, j *CompilerProperties, p *android.ProtoProperties,
90 flags javaBuilderFlags) javaBuilderFlags {
91
Colin Cross6af17aa2017-09-20 12:59:05 -070092 switch proptools.String(p.Proto.Type) {
93 case "micro":
Joe Onorato09e94ab2017-11-18 18:23:14 -080094 flags.protoOutTypeFlag = "--javamicro_out"
Colin Cross6af17aa2017-09-20 12:59:05 -070095 case "nano":
Joe Onorato09e94ab2017-11-18 18:23:14 -080096 flags.protoOutTypeFlag = "--javanano_out"
97 case "lite":
98 flags.protoOutTypeFlag = "--java_out"
99 flags.protoOutParams = "lite"
100 case "full", "":
101 flags.protoOutTypeFlag = "--java_out"
Colin Cross6af17aa2017-09-20 12:59:05 -0700102 default:
103 ctx.PropertyErrorf("proto.type", "unknown proto type %q",
104 proptools.String(p.Proto.Type))
105 }
Colin Crossd5dbfb72017-11-14 13:11:23 -0800106
Colin Cross0f2ee152017-12-14 15:22:43 -0800107 if len(j.Proto.Output_params) > 0 {
108 if flags.protoOutParams != "" {
109 flags.protoOutParams += ","
110 }
111 flags.protoOutParams += strings.Join(j.Proto.Output_params, ",")
112 }
113
Colin Crossd5dbfb72017-11-14 13:11:23 -0800114 flags.protoFlags = android.ProtoFlags(ctx, p)
Dan Willemsenab9f4262018-02-14 13:58:34 -0800115 flags.protoRoot = android.ProtoCanonicalPathFromRoot(ctx, p)
Colin Crossd5dbfb72017-11-14 13:11:23 -0800116
Colin Cross6af17aa2017-09-20 12:59:05 -0700117 return flags
118}