blob: 5bd88fd8b4d94fc15226d68d9ef0a2be268cfc9a [file] [log] [blame]
Alexei Frolove19ebb82020-05-14 17:21:20 -07001# Copyright 2020 The Pigweed Authors
Alexei Frolov942adf02019-12-11 17:07:28 -08002#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://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, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015import("//build_overrides/pigweed.gni")
16
Alexei Frolovb499d3f2020-10-28 13:00:08 -070017import("$dir_pw_build/error.gni")
Alexei Frolov05d8ef22020-06-08 10:32:29 -070018import("$dir_pw_build/input_group.gni")
Wyatt Hepler752d7d32021-03-02 09:02:23 -080019import("$dir_pw_build/mirror_tree.gni")
Alexei Frolova4c0aee2020-12-01 13:48:48 -080020import("$dir_pw_build/python.gni")
Wyatt Hepler51ded742020-10-19 14:45:27 -070021import("$dir_pw_build/python_action.gni")
Alexei Frolovedd2f142020-06-09 19:11:27 -070022import("$dir_pw_build/target_types.gni")
Alexei Frolovdd6fa5c2020-08-11 10:04:01 -070023import("$dir_pw_third_party/nanopb/nanopb.gni")
Wyatt Heplerf6f74f42021-04-13 19:26:20 -070024import("toolchain.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070025
Wyatt Heplerd9336a42020-11-10 09:47:30 -080026# Variables forwarded from the public pw_proto_library template to the final
27# pw_source_set.
Wyatt Heplere0c4fdc2020-05-29 17:26:19 -070028_forwarded_vars = [
29 "testonly",
30 "visibility",
31]
32
Wyatt Heplerd9336a42020-11-10 09:47:30 -080033# Internal template that invokes protoc with a pw_python_action. This should not
34# be used outside of this file; use pw_proto_library instead.
35#
36# This creates the internal GN target $target_name.$language._gen that compiles
37# proto files with protoc.
38template("_pw_invoke_protoc") {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -070039 if (current_toolchain == pw_protobuf_compiler_TOOLCHAIN) {
Wyatt Heplera0377642021-03-09 08:37:10 -080040 if (defined(invoker.out_dir)) {
41 _out_dir = invoker.out_dir
Wyatt Hepler752d7d32021-03-02 09:02:23 -080042 } else {
Wyatt Heplera0377642021-03-09 08:37:10 -080043 _out_dir = "${invoker.base_out_dir}/${invoker.language}"
44 if (defined(invoker.module_as_package) &&
45 invoker.module_as_package != "") {
46 assert(invoker.language == "python")
47 _out_dir = "$_out_dir/${invoker.module_as_package}"
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -080048 }
49 }
Wyatt Heplera0377642021-03-09 08:37:10 -080050
51 _includes =
Michael Spangc8b93902021-05-30 15:53:56 -040052 rebase_path(get_target_outputs(":${invoker.base_target}._includes"),
53 root_build_dir)
Wyatt Heplera0377642021-03-09 08:37:10 -080054
55 pw_python_action("$target_name._gen") {
56 script =
57 "$dir_pw_protobuf_compiler/py/pw_protobuf_compiler/generate_protos.py"
58
59 python_deps = [ "$dir_pw_protobuf_compiler/py" ]
60 if (defined(invoker.python_deps)) {
61 python_deps += invoker.python_deps
62 }
63
64 deps = [
65 ":${invoker.base_target}._includes",
66 ":${invoker.base_target}._sources",
67 ]
68
69 foreach(dep, invoker.deps) {
70 deps += [ get_label_info(dep, "label_no_toolchain") + "._gen" ]
71 }
72
Wyatt Heplera3ca62a2021-05-04 16:21:43 -070073 if (defined(invoker.other_deps)) {
74 deps += invoker.other_deps
75 }
76
Wyatt Heplera0377642021-03-09 08:37:10 -080077 args = [
78 "--language",
79 invoker.language,
80 "--include-file",
81 _includes[0],
82 "--compile-dir",
Michael Spangc8b93902021-05-30 15:53:56 -040083 rebase_path(invoker.compile_dir, root_build_dir),
Wyatt Heplera0377642021-03-09 08:37:10 -080084 "--out-dir",
Michael Spangc8b93902021-05-30 15:53:56 -040085 rebase_path(_out_dir, root_build_dir),
Wyatt Heplera0377642021-03-09 08:37:10 -080086 "--sources",
Michael Spangc8b93902021-05-30 15:53:56 -040087 ] + rebase_path(invoker.sources, root_build_dir)
Wyatt Heplera0377642021-03-09 08:37:10 -080088
89 if (defined(invoker.plugin)) {
90 inputs = [ invoker.plugin ]
Michael Spangc8b93902021-05-30 15:53:56 -040091 args +=
92 [ "--plugin-path=" + rebase_path(invoker.plugin, root_build_dir) ]
Wyatt Heplera0377642021-03-09 08:37:10 -080093 }
94
95 if (defined(invoker.outputs)) {
96 outputs = invoker.outputs
97 } else {
98 stamp = true
99 }
100
101 if (defined(invoker.metadata)) {
102 metadata = invoker.metadata
Wyatt Heplera0377642021-03-09 08:37:10 -0800103 }
104 }
Wyatt Heplercf184e82021-05-11 18:15:35 -0700105
106 # Output a .json file with information about this proto library.
107 _proto_info = {
108 label = get_label_info(":${invoker.target_name}", "label_no_toolchain")
Michael Spangc8b93902021-05-30 15:53:56 -0400109 protoc_outputs =
110 rebase_path(get_target_outputs(":$target_name._gen"), root_build_dir)
111 root = rebase_path(_out_dir, root_build_dir)
Wyatt Heplercf184e82021-05-11 18:15:35 -0700112 package = invoker.package
113
114 nested_in_python_package = ""
115 if (defined(invoker.python_package)) {
116 nested_in_python_package =
117 get_label_info(invoker.python_package, "label_no_toolchain")
118 }
119
120 dependencies = []
121 foreach(dep, invoker.deps) {
122 dependencies +=
123 rebase_path([ get_label_info(dep, "target_gen_dir") + "/" +
Michael Spangc8b93902021-05-30 15:53:56 -0400124 get_label_info(dep, "name") + ".json" ],
125 root_build_dir)
Wyatt Heplercf184e82021-05-11 18:15:35 -0700126 }
127 }
128 write_file("$target_gen_dir/$target_name.json", _proto_info, "json")
Wyatt Heplera0377642021-03-09 08:37:10 -0800129 } else {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700130 # protoc is only ever invoked from pw_protobuf_compiler_TOOLCHAIN.
Wyatt Heplera0377642021-03-09 08:37:10 -0800131 not_needed([ "target_name" ])
132 not_needed(invoker, "*")
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800133 }
134}
135
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700136# Generates pw_protobuf C++ code for proto files, creating a source_set of the
137# generated files. This is internal and should not be used outside of this file.
138# Use pw_proto_library instead.
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700139template("_pw_pwpb_proto_library") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800140 _pw_invoke_protoc(target_name) {
141 forward_variables_from(invoker, "*", _forwarded_vars)
142 language = "pwpb"
143 plugin = "$dir_pw_protobuf/py/pw_protobuf/plugin.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800144 python_deps = [ "$dir_pw_protobuf/py" ]
Alexei Frolov942adf02019-12-11 17:07:28 -0800145 }
146
147 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800148 config("$target_name._include_path") {
149 include_dirs = [ "${invoker.base_out_dir}/pwpb" ]
150 visibility = [ ":*" ]
151 }
152
Alexei Frolovedd2f142020-06-09 19:11:27 -0700153 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800154 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800155 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700156 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800157 public_deps = [ dir_pw_protobuf ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800158 sources = invoker.outputs
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700159 public = filter_include(sources, [ "*.pwpb.h" ])
160 }
161}
162
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700163# Generates nanopb RPC code for proto files, creating a source_set of the
164# generated files. This is internal and should not be used outside of this file.
165# Use pw_proto_library instead.
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700166template("_pw_nanopb_rpc_proto_library") {
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700167 # Create a target which runs protoc configured with the nanopb_rpc plugin to
168 # generate the C++ proto RPC headers.
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800169 _pw_invoke_protoc(target_name) {
170 forward_variables_from(invoker, "*", _forwarded_vars)
171 language = "nanopb_rpc"
172 plugin = "$dir_pw_rpc/py/pw_rpc/plugin_nanopb.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800173 python_deps = [ "$dir_pw_rpc/py" ]
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700174 }
175
176 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800177 config("$target_name._include_path") {
178 include_dirs = [ "${invoker.base_out_dir}/nanopb_rpc" ]
179 visibility = [ ":*" ]
180 }
181
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700182 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800183 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800184 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700185 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700186 public_deps = [
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800187 ":${invoker.base_target}.nanopb",
Wyatt Heplercbd09c22020-09-15 11:17:24 -0700188 "$dir_pw_rpc:server",
Alexei Frolov2d737bc2021-04-27 23:03:09 -0700189 "$dir_pw_rpc/nanopb:client",
Alexei Frolova4d71502020-10-14 12:43:14 -0700190 "$dir_pw_rpc/nanopb:method_union",
Alexei Frolovdd6fa5c2020-08-11 10:04:01 -0700191 "$dir_pw_third_party/nanopb",
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800192 ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800193 public = invoker.outputs
Wyatt Heplerd69309b2021-06-11 14:00:24 -0700194 check_includes = false
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700195 }
196}
197
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700198# Generates nanopb code for proto files, creating a source_set of the generated
199# files. This is internal and should not be used outside of this file. Use
200# pw_proto_library instead.
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700201template("_pw_nanopb_proto_library") {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800202 # When compiling with the Nanopb plugin, the nanopb.proto file is already
203 # compiled internally, so skip recompiling it with protoc.
204 if (rebase_path(invoker.sources, invoker.compile_dir) == [ "nanopb.proto" ]) {
205 group("$target_name._gen") {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700206 deps = [
207 ":${invoker.base_target}._sources($pw_protobuf_compiler_TOOLCHAIN)",
208 ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800209 }
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700210
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800211 group("$target_name") {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700212 deps = invoker.deps +
213 [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800214 }
215 } else {
216 # Create a target which runs protoc configured with the nanopb plugin to
217 # generate the C proto sources.
218 _pw_invoke_protoc(target_name) {
219 forward_variables_from(invoker, "*", _forwarded_vars)
220 language = "nanopb"
221 plugin = "$dir_pw_third_party_nanopb/generator/protoc-gen-nanopb"
Wyatt Heplera3ca62a2021-05-04 16:21:43 -0700222 other_deps = [ "$dir_pw_third_party/nanopb:generate_nanopb_proto.action" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800223 }
224
225 # Create a library with the generated source files.
226 config("$target_name._include_path") {
227 include_dirs = [ "${invoker.base_out_dir}/nanopb" ]
228 visibility = [ ":*" ]
229 }
230
231 pw_source_set(target_name) {
232 forward_variables_from(invoker, _forwarded_vars)
233 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700234 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800235 public_deps = [ "$dir_pw_third_party/nanopb" ] + invoker.deps
236 sources = invoker.outputs
237 public = filter_include(sources, [ "*.pb.h" ])
238 }
Alexei Frolov942adf02019-12-11 17:07:28 -0800239 }
240}
241
Alexei Frolovc912ea72020-10-26 08:43:27 -0700242# Generates raw RPC code for proto files, creating a source_set of the generated
243# files. This is internal and should not be used outside of this file. Use
244# pw_proto_library instead.
Alexei Frolovc912ea72020-10-26 08:43:27 -0700245template("_pw_raw_rpc_proto_library") {
Alexei Frolovc912ea72020-10-26 08:43:27 -0700246 # Create a target which runs protoc configured with the nanopb_rpc plugin to
247 # generate the C++ proto RPC headers.
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800248 _pw_invoke_protoc(target_name) {
249 forward_variables_from(invoker, "*", _forwarded_vars)
250 language = "raw_rpc"
251 plugin = "$dir_pw_rpc/py/pw_rpc/plugin_raw.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800252 python_deps = [ "$dir_pw_rpc/py" ]
Alexei Frolovc912ea72020-10-26 08:43:27 -0700253 }
254
255 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800256 config("$target_name._include_path") {
257 include_dirs = [ "${invoker.base_out_dir}/raw_rpc" ]
258 visibility = [ ":*" ]
259 }
260
Alexei Frolovc912ea72020-10-26 08:43:27 -0700261 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800262 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800263 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700264 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolovc912ea72020-10-26 08:43:27 -0700265 public_deps = [
266 "$dir_pw_rpc:server",
267 "$dir_pw_rpc/raw:method_union",
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800268 ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800269 public = invoker.outputs
Wyatt Heplerb93749b2021-05-11 09:38:22 -0700270 check_includes = false
Alexei Frolovc912ea72020-10-26 08:43:27 -0700271 }
272}
273
Alexei Frolovdef14712019-12-23 13:03:32 -0800274# Generates Go code for proto files, listing the proto output directory in the
275# metadata variable GOPATH. Internal use only.
Alexei Frolovdef14712019-12-23 13:03:32 -0800276template("_pw_go_proto_library") {
277 _proto_gopath = "$root_gen_dir/go"
Alexei Frolovdef14712019-12-23 13:03:32 -0800278
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800279 _pw_invoke_protoc(target_name) {
280 forward_variables_from(invoker, "*")
281 language = "go"
Alexei Frolovdef14712019-12-23 13:03:32 -0800282 metadata = {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800283 gopath = [ "GOPATH+=" + rebase_path(_proto_gopath) ]
Alexei Frolovc15a9882019-12-23 14:29:02 -0800284 external_deps = [
285 "github.com/golang/protobuf/proto",
286 "google.golang.org/grpc",
287 ]
Alexei Frolovdef14712019-12-23 13:03:32 -0800288 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800289
290 # Override the default "$base_out_dir/$language" output path.
291 out_dir = "$_proto_gopath/src"
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800292 }
293
294 group(target_name) {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700295 deps =
296 invoker.deps + [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolovdef14712019-12-23 13:03:32 -0800297 }
298}
299
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800300# Generates Python code for proto files, creating a pw_python_package containing
301# the generated files. This is internal and should not be used outside of this
302# file. Use pw_proto_library instead.
303template("_pw_python_proto_library") {
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800304 _pw_invoke_protoc(target_name) {
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800305 forward_variables_from(invoker, "*", _forwarded_vars + [ "python_package" ])
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800306 language = "python"
Wyatt Hepler4b921c12021-03-05 15:33:29 -0800307 python_deps = [ "$dir_pw_protobuf_compiler:protobuf_requirements" ]
Wyatt Heplercf184e82021-05-11 18:15:35 -0700308
309 if (defined(invoker.python_package)) {
310 python_package = invoker.python_package
311 }
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800312 }
313
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800314 if (defined(invoker.python_package) && invoker.python_package != "") {
Wyatt Heplerb2062fd2021-06-01 21:33:07 -0700315 # This package is nested in another Python package. Depending on this
316 # its python subtarget is equivalent to depending on the Python package it
317 # is nested in.
318 pw_python_group(target_name) {
319 python_deps = [ invoker.python_package ]
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800320 }
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800321
Wyatt Heplercf184e82021-05-11 18:15:35 -0700322 # This proto library is merged into another package, but create a target to
323 # collect its dependencies that the other package can depend on.
324 pw_python_group(target_name + "._deps") {
325 python_deps = invoker.deps
326 other_deps =
327 [ ":${invoker.target_name}._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
328 }
329 } else {
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800330 # Create a Python package with the generated source files.
331 pw_python_package(target_name) {
332 forward_variables_from(invoker, _forwarded_vars)
333 generate_setup = {
334 name = invoker._package_dir
335 version = "0.0.1" # TODO(hepler): Need to be able to set this verison.
336 }
337 sources = invoker.outputs
338 strip_prefix = "${invoker.base_out_dir}/python"
339 python_deps = invoker.deps
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700340 other_deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Heplerc2ce5242021-03-17 08:42:14 -0700341 static_analysis = []
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800342
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800343 _pw_module_as_package = invoker.module_as_package != ""
344 }
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800345 }
346}
347
Alexei Frolov942adf02019-12-11 17:07:28 -0800348# Generates protobuf code from .proto definitions for various languages.
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700349# For each supported generator, creates a sub-target named:
Alexei Frolov942adf02019-12-11 17:07:28 -0800350#
Alexei Frolov8e30d462020-10-22 13:54:36 -0700351# <target_name>.<generator>
Alexei Frolov942adf02019-12-11 17:07:28 -0800352#
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700353# GN permits using abbreviated labels when the target name matches the directory
354# name (e.g. //foo for //foo:foo). For consistency with this, the sub-targets
355# for each generator are aliased to the directory when the target name is the
356# same. For example, these two labels are equivalent:
357#
358# //path/to/my_protos:my_protos.pwpb
359# //path/to/my_protos:pwpb
360#
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800361# pw_protobuf_library targets generate Python packages. As such, they must have
362# globally unique package names. The first directory of the prefix or the first
363# common directory of the sources is used as the Python package.
364#
Alexei Frolov942adf02019-12-11 17:07:28 -0800365# Args:
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800366# sources: List of input .proto files.
367# deps: List of other pw_proto_library dependencies.
368# inputs: Other files on which the protos depend (e.g. nanopb .options files).
369# prefix: A prefix to add to the source protos prior to compilation. For
370# example, a source called "foo.proto" with prefix = "nested" will be
371# compiled with protoc as "nested/foo.proto".
372# strip_prefix: Remove this prefix from the source protos. All source and
373# input files must be nested under this path.
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700374# python_package: Label of Python package to which to add the proto modules.
Wyatt Heplerb2062fd2021-06-01 21:33:07 -0700375# The .python subtarget will redirect to this package.
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700376#
Alexei Frolov942adf02019-12-11 17:07:28 -0800377template("pw_proto_library") {
378 assert(defined(invoker.sources) && invoker.sources != [],
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700379 "pw_proto_library requires .proto source files")
Alexei Frolov942adf02019-12-11 17:07:28 -0800380
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800381 if (defined(invoker.python_module_as_package)) {
382 _module_as_package = invoker.python_module_as_package
383
384 _must_be_one_source = invoker.sources
385 assert([ _must_be_one_source[0] ] == _must_be_one_source,
386 "'python_module_as_package' requires exactly one source file")
387 assert(_module_as_package != "",
388 "'python_module_as_package' cannot be be empty")
389 assert(string_split(_module_as_package, "/") == [ _module_as_package ],
390 "'python_module_as_package' cannot contain slashes")
391 assert(!defined(invoker.prefix),
392 "'prefix' cannot be provided with 'python_module_as_package'")
393 } else {
394 _module_as_package = ""
395 }
396
397 if (defined(invoker.strip_prefix)) {
398 _source_root = get_path_info(invoker.strip_prefix, "abspath")
399 } else {
400 _source_root = get_path_info(".", "abspath")
401 }
402
403 if (defined(invoker.prefix)) {
404 _prefix = invoker.prefix
405 } else {
406 _prefix = ""
407 }
408
Wyatt Hepler91741472021-02-03 08:45:10 -0800409 _package_dir = ""
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800410 _source_names = []
Wyatt Hepler91741472021-02-03 08:45:10 -0800411
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800412 # Determine the Python package name to use for these protos. If there is no
413 # prefix, the first directory the sources are nested under is used.
414 foreach(source, rebase_path(invoker.sources, _source_root)) {
Wyatt Hepler91741472021-02-03 08:45:10 -0800415 _path_components = []
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800416 _path_components = string_split(source, "/")
Wyatt Hepler91741472021-02-03 08:45:10 -0800417
418 if (_package_dir == "") {
419 _package_dir = _path_components[0]
420 } else {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800421 assert(_prefix != "" || _path_components[0] == _package_dir,
422 "Unless 'prefix' is supplied, all .proto sources in a " +
423 "pw_proto_library must be in the same directory tree")
Wyatt Hepler91741472021-02-03 08:45:10 -0800424 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800425
426 _source_names +=
427 [ get_path_info(source, "dir") + "/" + get_path_info(source, "name") ]
Wyatt Hepler91741472021-02-03 08:45:10 -0800428 }
429
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800430 # If the 'prefix' was supplied, use that for the package directory.
431 if (_prefix != "") {
432 _prefix_path_components = string_split(_prefix, "/")
433 _package_dir = _prefix_path_components[0]
434 }
435
436 assert(_package_dir != "" && _package_dir != "." && _package_dir != "..",
437 "Either a 'prefix' must be specified or all sources must be nested " +
438 "under a common directory")
439
440 # Define an action that is never executed to prevent duplicate proto packages
441 # from being declared. The target name and the output file include only the
442 # package directory, so different targets that use the same proto package name
443 # will conflict.
444 action("pw_proto_library.$_package_dir") {
445 script = "$dir_pw_build/py/pw_build/nop.py"
Wyatt Hepler91741472021-02-03 08:45:10 -0800446 visibility = []
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800447
448 # Place an error message in the output path (which is never created). If the
449 # package name conflicts occur in different BUILD.gn files, this results in
450 # an otherwise cryptic Ninja error, rather than a GN error.
451 outputs = [ "$root_out_dir/ " +
452 "ERROR - Multiple pw_proto_library targets create the " +
453 "'$_package_dir' package. Change the package name by setting " +
454 "the \"prefix\" arg or move the protos to a different " +
455 "directory, then re-run gn gen." ]
Wyatt Hepler91741472021-02-03 08:45:10 -0800456 }
457
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800458 if (defined(invoker.deps)) {
459 _deps = invoker.deps
460 } else {
461 _deps = []
462 }
463
Wyatt Heplercf184e82021-05-11 18:15:35 -0700464 _common = {
465 base_target = target_name
466
467 # This is the output directory for all files related to this proto library.
468 # Sources are mirrored to "$base_out_dir/sources" and protoc puts outputs in
469 # "$base_out_dir/$language" by default.
470 base_out_dir =
471 get_label_info(":$target_name($pw_protobuf_compiler_TOOLCHAIN)",
472 "target_gen_dir") + "/$target_name.proto_library"
473
474 compile_dir = "$base_out_dir/sources"
475
476 # Refer to the source files as the are mirrored to the output directory.
477 sources = []
478 foreach(file, rebase_path(invoker.sources, _source_root)) {
479 sources += [ "$compile_dir/$_prefix/$file" ]
480 }
481
482 package = _package_dir
483 }
484
Alexei Frolove19ebb82020-05-14 17:21:20 -0700485 # For each proto target, create a file which collects the base directories of
486 # all of its dependencies to list as include paths to protoc.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800487 generated_file("$target_name._includes") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800488 # Collect metadata from the include path files of each dependency.
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700489
490 deps = []
491 foreach(dep, _deps) {
492 _base = get_label_info(dep, "label_no_toolchain")
493 deps += [ "$_base._includes(" + get_label_info(dep, "toolchain") + ")" ]
494 }
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800495
Alexei Frolove19ebb82020-05-14 17:21:20 -0700496 data_keys = [ "protoc_includes" ]
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800497 outputs = [ "${_common.base_out_dir}/includes.txt" ]
Alexei Frolove19ebb82020-05-14 17:21:20 -0700498
499 # Indicate this library's base directory for its dependents.
500 metadata = {
Michael Spangc8b93902021-05-30 15:53:56 -0400501 protoc_includes = [ rebase_path(_common.compile_dir, root_build_dir) ]
Alexei Frolove19ebb82020-05-14 17:21:20 -0700502 }
503 }
504
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800505 # Mirror the proto sources to the output directory with the prefix added.
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700506 if (current_toolchain == pw_protobuf_compiler_TOOLCHAIN) {
507 pw_mirror_tree("$target_name._sources") {
508 source_root = _source_root
509 sources = invoker.sources
Alexei Frolov05d8ef22020-06-08 10:32:29 -0700510
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700511 if (defined(invoker.inputs)) {
512 sources += invoker.inputs
513 }
514
515 directory = "${_common.compile_dir}/$_prefix"
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800516 }
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700517 } else {
518 not_needed(invoker, [ "inputs" ])
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700519 }
520
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700521 # Enumerate all of the protobuf generator targets.
Alexei Frolovc4b62ec2020-07-13 08:35:10 -0700522
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800523 _pw_pwpb_proto_library("$target_name.pwpb") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700524 forward_variables_from(invoker, _forwarded_vars)
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800525 forward_variables_from(_common, "*")
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800526
527 deps = []
528 foreach(dep, _deps) {
529 _base = get_label_info(dep, "label_no_toolchain")
530 deps += [ "$_base.pwpb(" + get_label_info(dep, "toolchain") + ")" ]
531 }
532
533 outputs = []
534 foreach(name, _source_names) {
535 outputs += [ "$base_out_dir/pwpb/$_prefix/${name}.pwpb.h" ]
536 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700537 }
538
539 if (dir_pw_third_party_nanopb != "") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800540 _pw_nanopb_rpc_proto_library("$target_name.nanopb_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700541 forward_variables_from(invoker, _forwarded_vars)
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800542 forward_variables_from(_common, "*")
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800543
544 deps = []
545 foreach(dep, _deps) {
546 _lbl = get_label_info(dep, "label_no_toolchain")
547 deps += [ "$_lbl.nanopb_rpc(" + get_label_info(dep, "toolchain") + ")" ]
548 }
549
550 outputs = []
551 foreach(name, _source_names) {
552 outputs += [ "$base_out_dir/nanopb_rpc/$_prefix/${name}.rpc.pb.h" ]
553 }
Alexei Frolovc4b62ec2020-07-13 08:35:10 -0700554 }
555
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800556 _pw_nanopb_proto_library("$target_name.nanopb") {
557 forward_variables_from(invoker, _forwarded_vars)
558 forward_variables_from(_common, "*")
559
560 deps = []
561 foreach(dep, _deps) {
562 _base = get_label_info(dep, "label_no_toolchain")
563 deps += [ "$_base.nanopb(" + get_label_info(dep, "toolchain") + ")" ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800564 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800565
566 outputs = []
567 foreach(name, _source_names) {
568 outputs += [
569 "$base_out_dir/nanopb/$_prefix/${name}.pb.h",
570 "$base_out_dir/nanopb/$_prefix/${name}.pb.c",
571 ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800572 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700573 }
574 } else {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800575 pw_error("$target_name.nanopb_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700576 message =
577 "\$dir_pw_third_party_nanopb must be set to generate nanopb RPC code."
Alexei Frolov8185c822020-06-12 10:45:04 -0700578 }
Alexei Frolov942adf02019-12-11 17:07:28 -0800579
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800580 pw_error("$target_name.nanopb") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700581 message =
582 "\$dir_pw_third_party_nanopb must be set to compile nanopb protobufs."
Alexei Frolov942adf02019-12-11 17:07:28 -0800583 }
584 }
585
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800586 _pw_raw_rpc_proto_library("$target_name.raw_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700587 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800588 forward_variables_from(_common, "*")
589
590 deps = []
591 foreach(dep, _deps) {
592 _base = get_label_info(dep, "label_no_toolchain")
593 deps += [ "$_base.raw_rpc(" + get_label_info(dep, "toolchain") + ")" ]
594 }
595
596 outputs = []
597 foreach(name, _source_names) {
598 outputs += [ "$base_out_dir/raw_rpc/$_prefix/${name}.raw_rpc.pb.h" ]
599 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700600 }
601
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800602 _pw_go_proto_library("$target_name.go") {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800603 sources = _common.sources
604
605 deps = []
606 foreach(dep, _deps) {
607 _base = get_label_info(dep, "label_no_toolchain")
608 deps += [ "$_base.go(" + get_label_info(dep, "toolchain") + ")" ]
609 }
610
611 forward_variables_from(_common, "*")
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700612 }
613
Alexei Frolov38cad0c2020-12-03 12:36:24 -0800614 _pw_python_proto_library("$target_name.python") {
Alexei Frolov38cad0c2020-12-03 12:36:24 -0800615 forward_variables_from(_common, "*")
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800616 forward_variables_from(invoker, [ "python_package" ])
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800617 module_as_package = _module_as_package
618
619 deps = []
620 foreach(dep, _deps) {
621 _base = get_label_info(dep, "label_no_toolchain")
622 deps += [ "$_base.python(" + get_label_info(dep, "toolchain") + ")" ]
623 }
624
625 if (module_as_package == "") {
626 _python_prefix = "$base_out_dir/python/$_prefix"
627 } else {
628 _python_prefix = "$base_out_dir/python/$module_as_package"
629 }
630
631 outputs = []
632 foreach(name, _source_names) {
633 outputs += [
634 "$_python_prefix/${name}_pb2.py",
635 "$_python_prefix/${name}_pb2.pyi",
636 ]
637 }
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800638 }
639
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700640 # All supported pw_protobuf generators.
641 _protobuf_generators = [
642 "pwpb",
643 "nanopb",
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700644 "nanopb_rpc",
Alexei Frolovc912ea72020-10-26 08:43:27 -0700645 "raw_rpc",
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700646 "go",
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800647 "python",
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700648 ]
649
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700650 # If the label matches the directory name, alias the subtargets to the
651 # directory (e.g. //foo:nanopb is an alias for //foo:foo.nanopb).
652 if (get_label_info(":$target_name", "name") ==
653 get_path_info(get_label_info(":$target_name", "dir"), "name")) {
Wyatt Hepler2c6c0ba2021-04-07 09:50:23 -0700654 foreach(_generator, _protobuf_generators - [ "python" ]) {
655 group(_generator) {
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700656 public_deps = [ ":${invoker.target_name}.$_generator" ]
657 }
658 }
Wyatt Hepler2c6c0ba2021-04-07 09:50:23 -0700659
660 pw_python_group("python") {
661 python_deps = [ ":${invoker.target_name}.python" ]
662 }
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700663 }
664
Alexei Frolov942adf02019-12-11 17:07:28 -0800665 # If the user attempts to use the target directly instead of one of the
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700666 # generator targets, run a script which prints a nice error message.
Wyatt Heplerc8e05a42020-10-19 14:49:39 -0700667 pw_python_action(target_name) {
Alexei Frolov942adf02019-12-11 17:07:28 -0800668 script = string_join("/",
669 [
670 dir_pw_protobuf_compiler,
671 "py",
672 "pw_protobuf_compiler",
673 "proto_target_invalid.py",
674 ])
675 args = [
676 "--target",
677 target_name,
678 "--dir",
679 get_path_info(".", "abspath"),
680 "--root",
681 "//",
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700682 ] + _protobuf_generators
Alexei Frolov942adf02019-12-11 17:07:28 -0800683 stamp = true
684 }
685}