Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package java |
| 16 | |
| 17 | import ( |
Colin Cross | d5dbfb7 | 2017-11-14 13:11:23 -0800 | [diff] [blame] | 18 | "strings" |
| 19 | |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 20 | "github.com/google/blueprint" |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 21 | |
| 22 | "android/soong/android" |
| 23 | ) |
| 24 | |
| 25 | func init() { |
| 26 | pctx.HostBinToolVariable("protocCmd", "aprotoc") |
| 27 | } |
| 28 | |
| 29 | var ( |
| 30 | proto = pctx.AndroidStaticRule("protoc", |
| 31 | blueprint.RuleParams{ |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 32 | Command: `rm -rf $out.tmp && mkdir -p $out.tmp && ` + |
Dan Willemsen | 4339853 | 2018-02-21 02:10:29 -0800 | [diff] [blame] | 33 | `$protocCmd $protoOut=$protoOutParams:$out.tmp --dependency_out=$out.d -I $protoBase $protoFlags $in && ` + |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 34 | `${config.SoongZipCmd} -jar -o $out -C $out.tmp -D $out.tmp && rm -rf $out.tmp`, |
Colin Cross | 59149b6 | 2017-10-16 18:07:29 -0700 | [diff] [blame] | 35 | CommandDeps: []string{ |
| 36 | "$protocCmd", |
| 37 | "${config.SoongZipCmd}", |
| 38 | }, |
Dan Willemsen | 4339853 | 2018-02-21 02:10:29 -0800 | [diff] [blame] | 39 | Depfile: "${out}.d", |
| 40 | Deps: blueprint.DepsGCC, |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 41 | }, "protoBase", "protoFlags", "protoOut", "protoOutParams") |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 42 | ) |
| 43 | |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 44 | func genProto(ctx android.ModuleContext, protoFile android.Path, flags javaBuilderFlags) android.Path { |
| 45 | srcJarFile := android.GenPathWithExt(ctx, "proto", protoFile, "srcjar") |
| 46 | |
| 47 | var protoBase string |
| 48 | if flags.protoRoot { |
| 49 | protoBase = "." |
| 50 | } else { |
| 51 | protoBase = strings.TrimSuffix(protoFile.String(), protoFile.Rel()) |
| 52 | } |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 53 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 54 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 55 | Rule: proto, |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 56 | Description: "protoc " + protoFile.Rel(), |
| 57 | Output: srcJarFile, |
| 58 | Input: protoFile, |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 59 | Args: map[string]string{ |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 60 | "protoBase": protoBase, |
| 61 | "protoOut": flags.protoOutTypeFlag, |
| 62 | "protoOutParams": flags.protoOutParams, |
| 63 | "protoFlags": strings.Join(flags.protoFlags, " "), |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 64 | }, |
| 65 | }) |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 66 | |
| 67 | return srcJarFile |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | func protoDeps(ctx android.BottomUpMutatorContext, p *android.ProtoProperties) { |
Colin Cross | ff3ae9d | 2018-04-10 16:15:18 -0700 | [diff] [blame] | 71 | switch String(p.Proto.Type) { |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 72 | case "micro": |
| 73 | ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-micro") |
| 74 | case "nano": |
| 75 | ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-nano") |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 76 | case "lite", "": |
| 77 | ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-lite") |
| 78 | case "full": |
| 79 | if ctx.Host() { |
| 80 | ctx.AddDependency(ctx.Module(), staticLibTag, "libprotobuf-java-full") |
| 81 | } else { |
| 82 | ctx.PropertyErrorf("proto.type", "full java protos only supported on the host") |
| 83 | } |
| 84 | default: |
| 85 | ctx.PropertyErrorf("proto.type", "unknown proto type %q", |
Colin Cross | ff3ae9d | 2018-04-10 16:15:18 -0700 | [diff] [blame] | 86 | String(p.Proto.Type)) |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
Colin Cross | 0f2ee15 | 2017-12-14 15:22:43 -0800 | [diff] [blame] | 90 | func protoFlags(ctx android.ModuleContext, j *CompilerProperties, p *android.ProtoProperties, |
| 91 | flags javaBuilderFlags) javaBuilderFlags { |
| 92 | |
Colin Cross | ff3ae9d | 2018-04-10 16:15:18 -0700 | [diff] [blame] | 93 | switch String(p.Proto.Type) { |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 94 | case "micro": |
Joe Onorato | 09e94ab | 2017-11-18 18:23:14 -0800 | [diff] [blame] | 95 | flags.protoOutTypeFlag = "--javamicro_out" |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 96 | case "nano": |
Joe Onorato | 09e94ab | 2017-11-18 18:23:14 -0800 | [diff] [blame] | 97 | flags.protoOutTypeFlag = "--javanano_out" |
| 98 | case "lite": |
| 99 | flags.protoOutTypeFlag = "--java_out" |
| 100 | flags.protoOutParams = "lite" |
| 101 | case "full", "": |
| 102 | flags.protoOutTypeFlag = "--java_out" |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 103 | default: |
| 104 | ctx.PropertyErrorf("proto.type", "unknown proto type %q", |
Colin Cross | ff3ae9d | 2018-04-10 16:15:18 -0700 | [diff] [blame] | 105 | String(p.Proto.Type)) |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 106 | } |
Colin Cross | d5dbfb7 | 2017-11-14 13:11:23 -0800 | [diff] [blame] | 107 | |
Colin Cross | 0f2ee15 | 2017-12-14 15:22:43 -0800 | [diff] [blame] | 108 | if len(j.Proto.Output_params) > 0 { |
| 109 | if flags.protoOutParams != "" { |
| 110 | flags.protoOutParams += "," |
| 111 | } |
| 112 | flags.protoOutParams += strings.Join(j.Proto.Output_params, ",") |
| 113 | } |
| 114 | |
Colin Cross | d5dbfb7 | 2017-11-14 13:11:23 -0800 | [diff] [blame] | 115 | flags.protoFlags = android.ProtoFlags(ctx, p) |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 116 | flags.protoRoot = android.ProtoCanonicalPathFromRoot(ctx, p) |
Colin Cross | d5dbfb7 | 2017-11-14 13:11:23 -0800 | [diff] [blame] | 117 | |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 118 | return flags |
| 119 | } |