blob: bc5622c4c6b20cb82bb4a9139c65022b9d208411 [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 =
52 rebase_path(get_target_outputs(":${invoker.base_target}._includes"))
53
54 pw_python_action("$target_name._gen") {
55 script =
56 "$dir_pw_protobuf_compiler/py/pw_protobuf_compiler/generate_protos.py"
57
58 python_deps = [ "$dir_pw_protobuf_compiler/py" ]
59 if (defined(invoker.python_deps)) {
60 python_deps += invoker.python_deps
61 }
62
63 deps = [
64 ":${invoker.base_target}._includes",
65 ":${invoker.base_target}._sources",
66 ]
67
68 foreach(dep, invoker.deps) {
69 deps += [ get_label_info(dep, "label_no_toolchain") + "._gen" ]
70 }
71
Wyatt Heplera3ca62a2021-05-04 16:21:43 -070072 if (defined(invoker.other_deps)) {
73 deps += invoker.other_deps
74 }
75
Wyatt Heplera0377642021-03-09 08:37:10 -080076 args = [
77 "--language",
78 invoker.language,
79 "--include-file",
80 _includes[0],
81 "--compile-dir",
82 rebase_path(invoker.compile_dir),
83 "--out-dir",
84 rebase_path(_out_dir),
85 "--sources",
86 ] + rebase_path(invoker.sources)
87
88 if (defined(invoker.plugin)) {
89 inputs = [ invoker.plugin ]
90 args += [ "--plugin-path=" + rebase_path(invoker.plugin) ]
91 }
92
93 if (defined(invoker.outputs)) {
94 outputs = invoker.outputs
95 } else {
96 stamp = true
97 }
98
99 if (defined(invoker.metadata)) {
100 metadata = invoker.metadata
101 } else {
102 metadata = {
103 protoc_outputs = rebase_path(outputs)
104 root = [ rebase_path(_out_dir) ]
105 }
106 }
107 }
108 } else {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700109 # protoc is only ever invoked from pw_protobuf_compiler_TOOLCHAIN.
Wyatt Heplera0377642021-03-09 08:37:10 -0800110 not_needed([ "target_name" ])
111 not_needed(invoker, "*")
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800112 }
113}
114
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700115# Generates pw_protobuf C++ code for proto files, creating a source_set of the
116# generated files. This is internal and should not be used outside of this file.
117# Use pw_proto_library instead.
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700118template("_pw_pwpb_proto_library") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800119 _pw_invoke_protoc(target_name) {
120 forward_variables_from(invoker, "*", _forwarded_vars)
121 language = "pwpb"
122 plugin = "$dir_pw_protobuf/py/pw_protobuf/plugin.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800123 python_deps = [ "$dir_pw_protobuf/py" ]
Alexei Frolov942adf02019-12-11 17:07:28 -0800124 }
125
126 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800127 config("$target_name._include_path") {
128 include_dirs = [ "${invoker.base_out_dir}/pwpb" ]
129 visibility = [ ":*" ]
130 }
131
Alexei Frolovedd2f142020-06-09 19:11:27 -0700132 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800133 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800134 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700135 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800136 public_deps = [ dir_pw_protobuf ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800137 sources = invoker.outputs
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700138 public = filter_include(sources, [ "*.pwpb.h" ])
139 }
140}
141
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700142# Generates nanopb RPC code for proto files, creating a source_set of the
143# generated files. This is internal and should not be used outside of this file.
144# Use pw_proto_library instead.
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700145template("_pw_nanopb_rpc_proto_library") {
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700146 # Create a target which runs protoc configured with the nanopb_rpc plugin to
147 # generate the C++ proto RPC headers.
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800148 _pw_invoke_protoc(target_name) {
149 forward_variables_from(invoker, "*", _forwarded_vars)
150 language = "nanopb_rpc"
151 plugin = "$dir_pw_rpc/py/pw_rpc/plugin_nanopb.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800152 python_deps = [ "$dir_pw_rpc/py" ]
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700153 }
154
155 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800156 config("$target_name._include_path") {
157 include_dirs = [ "${invoker.base_out_dir}/nanopb_rpc" ]
158 visibility = [ ":*" ]
159 }
160
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700161 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800162 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800163 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700164 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700165 public_deps = [
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800166 ":${invoker.base_target}.nanopb",
Wyatt Heplercbd09c22020-09-15 11:17:24 -0700167 "$dir_pw_rpc:server",
Alexei Frolov2d737bc2021-04-27 23:03:09 -0700168 "$dir_pw_rpc/nanopb:client",
Alexei Frolova4d71502020-10-14 12:43:14 -0700169 "$dir_pw_rpc/nanopb:method_union",
Alexei Frolovdd6fa5c2020-08-11 10:04:01 -0700170 "$dir_pw_third_party/nanopb",
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800171 ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800172 public = invoker.outputs
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700173 }
174}
175
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700176# Generates nanopb code for proto files, creating a source_set of the generated
177# files. This is internal and should not be used outside of this file. Use
178# pw_proto_library instead.
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700179template("_pw_nanopb_proto_library") {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800180 # When compiling with the Nanopb plugin, the nanopb.proto file is already
181 # compiled internally, so skip recompiling it with protoc.
182 if (rebase_path(invoker.sources, invoker.compile_dir) == [ "nanopb.proto" ]) {
183 group("$target_name._gen") {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700184 deps = [
185 ":${invoker.base_target}._sources($pw_protobuf_compiler_TOOLCHAIN)",
186 ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800187 }
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700188
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800189 group("$target_name") {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700190 deps = invoker.deps +
191 [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800192 }
193 } else {
194 # Create a target which runs protoc configured with the nanopb plugin to
195 # generate the C proto sources.
196 _pw_invoke_protoc(target_name) {
197 forward_variables_from(invoker, "*", _forwarded_vars)
198 language = "nanopb"
199 plugin = "$dir_pw_third_party_nanopb/generator/protoc-gen-nanopb"
Wyatt Heplera3ca62a2021-05-04 16:21:43 -0700200 other_deps = [ "$dir_pw_third_party/nanopb:generate_nanopb_proto.action" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800201 }
202
203 # Create a library with the generated source files.
204 config("$target_name._include_path") {
205 include_dirs = [ "${invoker.base_out_dir}/nanopb" ]
206 visibility = [ ":*" ]
207 }
208
209 pw_source_set(target_name) {
210 forward_variables_from(invoker, _forwarded_vars)
211 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700212 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800213 public_deps = [ "$dir_pw_third_party/nanopb" ] + invoker.deps
214 sources = invoker.outputs
215 public = filter_include(sources, [ "*.pb.h" ])
Wyatt Heplerb93749b2021-05-11 09:38:22 -0700216 check_includes = false
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800217 }
Alexei Frolov942adf02019-12-11 17:07:28 -0800218 }
219}
220
Alexei Frolovc912ea72020-10-26 08:43:27 -0700221# Generates raw RPC code for proto files, creating a source_set of the generated
222# files. This is internal and should not be used outside of this file. Use
223# pw_proto_library instead.
Alexei Frolovc912ea72020-10-26 08:43:27 -0700224template("_pw_raw_rpc_proto_library") {
Alexei Frolovc912ea72020-10-26 08:43:27 -0700225 # Create a target which runs protoc configured with the nanopb_rpc plugin to
226 # generate the C++ proto RPC headers.
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800227 _pw_invoke_protoc(target_name) {
228 forward_variables_from(invoker, "*", _forwarded_vars)
229 language = "raw_rpc"
230 plugin = "$dir_pw_rpc/py/pw_rpc/plugin_raw.py"
Wyatt Hepler438caa02021-01-15 17:13:11 -0800231 python_deps = [ "$dir_pw_rpc/py" ]
Alexei Frolovc912ea72020-10-26 08:43:27 -0700232 }
233
234 # Create a library with the generated source files.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800235 config("$target_name._include_path") {
236 include_dirs = [ "${invoker.base_out_dir}/raw_rpc" ]
237 visibility = [ ":*" ]
238 }
239
Alexei Frolovc912ea72020-10-26 08:43:27 -0700240 pw_source_set(target_name) {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800241 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800242 public_configs = [ ":$target_name._include_path" ]
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700243 deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolovc912ea72020-10-26 08:43:27 -0700244 public_deps = [
245 "$dir_pw_rpc:server",
246 "$dir_pw_rpc/raw:method_union",
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800247 ] + invoker.deps
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800248 public = invoker.outputs
Wyatt Heplerb93749b2021-05-11 09:38:22 -0700249 check_includes = false
Alexei Frolovc912ea72020-10-26 08:43:27 -0700250 }
251}
252
Alexei Frolovdef14712019-12-23 13:03:32 -0800253# Generates Go code for proto files, listing the proto output directory in the
254# metadata variable GOPATH. Internal use only.
Alexei Frolovdef14712019-12-23 13:03:32 -0800255template("_pw_go_proto_library") {
256 _proto_gopath = "$root_gen_dir/go"
Alexei Frolovdef14712019-12-23 13:03:32 -0800257
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800258 _pw_invoke_protoc(target_name) {
259 forward_variables_from(invoker, "*")
260 language = "go"
Alexei Frolovdef14712019-12-23 13:03:32 -0800261 metadata = {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800262 gopath = [ "GOPATH+=" + rebase_path(_proto_gopath) ]
Alexei Frolovc15a9882019-12-23 14:29:02 -0800263 external_deps = [
264 "github.com/golang/protobuf/proto",
265 "google.golang.org/grpc",
266 ]
Alexei Frolovdef14712019-12-23 13:03:32 -0800267 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800268
269 # Override the default "$base_out_dir/$language" output path.
270 out_dir = "$_proto_gopath/src"
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800271 }
272
273 group(target_name) {
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700274 deps =
275 invoker.deps + [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Alexei Frolovdef14712019-12-23 13:03:32 -0800276 }
277}
278
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800279# Generates Python code for proto files, creating a pw_python_package containing
280# the generated files. This is internal and should not be used outside of this
281# file. Use pw_proto_library instead.
282template("_pw_python_proto_library") {
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800283 _pw_invoke_protoc(target_name) {
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800284 forward_variables_from(invoker, "*", _forwarded_vars + [ "python_package" ])
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800285 language = "python"
Wyatt Hepler4b921c12021-03-05 15:33:29 -0800286 python_deps = [ "$dir_pw_protobuf_compiler:protobuf_requirements" ]
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800287 }
288
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800289 if (defined(invoker.python_package) && invoker.python_package != "") {
290 # If nested in a Python package, write the package's name to a file so
291 # pw_python_package can check that the dependencies are correct.
292 write_file("${invoker.base_out_dir}/python_package.txt",
293 get_label_info(invoker.python_package, "label_no_toolchain"))
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800294
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800295 # If anyone attempts to depend on this Python package, print an error.
296 pw_error(target_name) {
297 _pkg = get_label_info(invoker.python_package, "label_no_toolchain")
298 message_lines = [
299 "This proto Python package is embedded in the $_pkg Python package.",
300 "It cannot be used directly; instead, depend on $_pkg.",
301 ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800302 }
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800303 foreach(subtarget, pw_python_package_subtargets) {
304 group("$target_name.$subtarget") {
305 deps = [ ":${invoker.target_name}" ]
306 }
307 }
308 } else {
309 write_file("${invoker.base_out_dir}/python_package.txt", "")
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800310
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800311 # Create a Python package with the generated source files.
312 pw_python_package(target_name) {
313 forward_variables_from(invoker, _forwarded_vars)
314 generate_setup = {
315 name = invoker._package_dir
316 version = "0.0.1" # TODO(hepler): Need to be able to set this verison.
317 }
318 sources = invoker.outputs
319 strip_prefix = "${invoker.base_out_dir}/python"
320 python_deps = invoker.deps
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700321 other_deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
Wyatt Heplerc2ce5242021-03-17 08:42:14 -0700322 static_analysis = []
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800323
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800324 _pw_module_as_package = invoker.module_as_package != ""
325 }
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800326 }
327}
328
Alexei Frolov942adf02019-12-11 17:07:28 -0800329# Generates protobuf code from .proto definitions for various languages.
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700330# For each supported generator, creates a sub-target named:
Alexei Frolov942adf02019-12-11 17:07:28 -0800331#
Alexei Frolov8e30d462020-10-22 13:54:36 -0700332# <target_name>.<generator>
Alexei Frolov942adf02019-12-11 17:07:28 -0800333#
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700334# GN permits using abbreviated labels when the target name matches the directory
335# name (e.g. //foo for //foo:foo). For consistency with this, the sub-targets
336# for each generator are aliased to the directory when the target name is the
337# same. For example, these two labels are equivalent:
338#
339# //path/to/my_protos:my_protos.pwpb
340# //path/to/my_protos:pwpb
341#
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800342# pw_protobuf_library targets generate Python packages. As such, they must have
343# globally unique package names. The first directory of the prefix or the first
344# common directory of the sources is used as the Python package.
345#
Alexei Frolov942adf02019-12-11 17:07:28 -0800346# Args:
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800347# sources: List of input .proto files.
348# deps: List of other pw_proto_library dependencies.
349# inputs: Other files on which the protos depend (e.g. nanopb .options files).
350# prefix: A prefix to add to the source protos prior to compilation. For
351# example, a source called "foo.proto" with prefix = "nested" will be
352# compiled with protoc as "nested/foo.proto".
353# strip_prefix: Remove this prefix from the source protos. All source and
354# input files must be nested under this path.
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700355# python_package: Label of Python package to which to add the proto modules.
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700356#
Alexei Frolov942adf02019-12-11 17:07:28 -0800357template("pw_proto_library") {
358 assert(defined(invoker.sources) && invoker.sources != [],
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700359 "pw_proto_library requires .proto source files")
Alexei Frolov942adf02019-12-11 17:07:28 -0800360
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800361 if (defined(invoker.python_module_as_package)) {
362 _module_as_package = invoker.python_module_as_package
363
364 _must_be_one_source = invoker.sources
365 assert([ _must_be_one_source[0] ] == _must_be_one_source,
366 "'python_module_as_package' requires exactly one source file")
367 assert(_module_as_package != "",
368 "'python_module_as_package' cannot be be empty")
369 assert(string_split(_module_as_package, "/") == [ _module_as_package ],
370 "'python_module_as_package' cannot contain slashes")
371 assert(!defined(invoker.prefix),
372 "'prefix' cannot be provided with 'python_module_as_package'")
373 } else {
374 _module_as_package = ""
375 }
376
377 if (defined(invoker.strip_prefix)) {
378 _source_root = get_path_info(invoker.strip_prefix, "abspath")
379 } else {
380 _source_root = get_path_info(".", "abspath")
381 }
382
383 if (defined(invoker.prefix)) {
384 _prefix = invoker.prefix
385 } else {
386 _prefix = ""
387 }
388
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800389 _common = {
390 base_target = target_name
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800391
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800392 # This is the output directory for all files related to this proto library.
393 # Sources are mirrored to "$base_out_dir/sources" and protoc puts outputs in
394 # "$base_out_dir/$language" by default.
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800395 base_out_dir =
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700396 get_label_info(":$target_name($pw_protobuf_compiler_TOOLCHAIN)",
397 "target_gen_dir") + "/$target_name.proto_library"
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800398
399 compile_dir = "$base_out_dir/sources"
400
401 # Refer to the source files as the are mirrored to the output directory.
402 sources = []
403 foreach(file, rebase_path(invoker.sources, _source_root)) {
404 sources += [ "$compile_dir/$_prefix/$file" ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800405 }
406 }
407
Wyatt Hepler91741472021-02-03 08:45:10 -0800408 _package_dir = ""
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800409 _source_names = []
Wyatt Hepler91741472021-02-03 08:45:10 -0800410
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800411 # Determine the Python package name to use for these protos. If there is no
412 # prefix, the first directory the sources are nested under is used.
413 foreach(source, rebase_path(invoker.sources, _source_root)) {
Wyatt Hepler91741472021-02-03 08:45:10 -0800414 _path_components = []
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800415 _path_components = string_split(source, "/")
Wyatt Hepler91741472021-02-03 08:45:10 -0800416
417 if (_package_dir == "") {
418 _package_dir = _path_components[0]
419 } else {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800420 assert(_prefix != "" || _path_components[0] == _package_dir,
421 "Unless 'prefix' is supplied, all .proto sources in a " +
422 "pw_proto_library must be in the same directory tree")
Wyatt Hepler91741472021-02-03 08:45:10 -0800423 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800424
425 _source_names +=
426 [ get_path_info(source, "dir") + "/" + get_path_info(source, "name") ]
Wyatt Hepler91741472021-02-03 08:45:10 -0800427 }
428
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800429 # If the 'prefix' was supplied, use that for the package directory.
430 if (_prefix != "") {
431 _prefix_path_components = string_split(_prefix, "/")
432 _package_dir = _prefix_path_components[0]
433 }
434
435 assert(_package_dir != "" && _package_dir != "." && _package_dir != "..",
436 "Either a 'prefix' must be specified or all sources must be nested " +
437 "under a common directory")
438
439 # Define an action that is never executed to prevent duplicate proto packages
440 # from being declared. The target name and the output file include only the
441 # package directory, so different targets that use the same proto package name
442 # will conflict.
443 action("pw_proto_library.$_package_dir") {
444 script = "$dir_pw_build/py/pw_build/nop.py"
Wyatt Hepler91741472021-02-03 08:45:10 -0800445 visibility = []
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800446
447 # Place an error message in the output path (which is never created). If the
448 # package name conflicts occur in different BUILD.gn files, this results in
449 # an otherwise cryptic Ninja error, rather than a GN error.
450 outputs = [ "$root_out_dir/ " +
451 "ERROR - Multiple pw_proto_library targets create the " +
452 "'$_package_dir' package. Change the package name by setting " +
453 "the \"prefix\" arg or move the protos to a different " +
454 "directory, then re-run gn gen." ]
Wyatt Hepler91741472021-02-03 08:45:10 -0800455 }
456
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800457 if (defined(invoker.deps)) {
458 _deps = invoker.deps
459 } else {
460 _deps = []
461 }
462
Alexei Frolove19ebb82020-05-14 17:21:20 -0700463 # For each proto target, create a file which collects the base directories of
464 # all of its dependencies to list as include paths to protoc.
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800465 generated_file("$target_name._includes") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800466 # Collect metadata from the include path files of each dependency.
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700467
468 deps = []
469 foreach(dep, _deps) {
470 _base = get_label_info(dep, "label_no_toolchain")
471 deps += [ "$_base._includes(" + get_label_info(dep, "toolchain") + ")" ]
472 }
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800473
Alexei Frolove19ebb82020-05-14 17:21:20 -0700474 data_keys = [ "protoc_includes" ]
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800475 outputs = [ "${_common.base_out_dir}/includes.txt" ]
Alexei Frolove19ebb82020-05-14 17:21:20 -0700476
477 # Indicate this library's base directory for its dependents.
478 metadata = {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800479 protoc_includes = [ rebase_path(_common.compile_dir) ]
Alexei Frolove19ebb82020-05-14 17:21:20 -0700480 }
481 }
482
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800483 # Mirror the proto sources to the output directory with the prefix added.
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700484 if (current_toolchain == pw_protobuf_compiler_TOOLCHAIN) {
485 pw_mirror_tree("$target_name._sources") {
486 source_root = _source_root
487 sources = invoker.sources
Alexei Frolov05d8ef22020-06-08 10:32:29 -0700488
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700489 if (defined(invoker.inputs)) {
490 sources += invoker.inputs
491 }
492
493 directory = "${_common.compile_dir}/$_prefix"
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800494 }
Wyatt Heplerf6f74f42021-04-13 19:26:20 -0700495 } else {
496 not_needed(invoker, [ "inputs" ])
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700497 }
498
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700499 # Enumerate all of the protobuf generator targets.
Alexei Frolovc4b62ec2020-07-13 08:35:10 -0700500
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800501 _pw_pwpb_proto_library("$target_name.pwpb") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700502 forward_variables_from(invoker, _forwarded_vars)
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800503 forward_variables_from(_common, "*")
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800504
505 deps = []
506 foreach(dep, _deps) {
507 _base = get_label_info(dep, "label_no_toolchain")
508 deps += [ "$_base.pwpb(" + get_label_info(dep, "toolchain") + ")" ]
509 }
510
511 outputs = []
512 foreach(name, _source_names) {
513 outputs += [ "$base_out_dir/pwpb/$_prefix/${name}.pwpb.h" ]
514 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700515 }
516
517 if (dir_pw_third_party_nanopb != "") {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800518 _pw_nanopb_rpc_proto_library("$target_name.nanopb_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700519 forward_variables_from(invoker, _forwarded_vars)
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800520 forward_variables_from(_common, "*")
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800521
522 deps = []
523 foreach(dep, _deps) {
524 _lbl = get_label_info(dep, "label_no_toolchain")
525 deps += [ "$_lbl.nanopb_rpc(" + get_label_info(dep, "toolchain") + ")" ]
526 }
527
528 outputs = []
529 foreach(name, _source_names) {
530 outputs += [ "$base_out_dir/nanopb_rpc/$_prefix/${name}.rpc.pb.h" ]
531 }
Alexei Frolovc4b62ec2020-07-13 08:35:10 -0700532 }
533
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800534 _pw_nanopb_proto_library("$target_name.nanopb") {
535 forward_variables_from(invoker, _forwarded_vars)
536 forward_variables_from(_common, "*")
537
538 deps = []
539 foreach(dep, _deps) {
540 _base = get_label_info(dep, "label_no_toolchain")
541 deps += [ "$_base.nanopb(" + get_label_info(dep, "toolchain") + ")" ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800542 }
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800543
544 outputs = []
545 foreach(name, _source_names) {
546 outputs += [
547 "$base_out_dir/nanopb/$_prefix/${name}.pb.h",
548 "$base_out_dir/nanopb/$_prefix/${name}.pb.c",
549 ]
Wyatt Heplerd517afc2021-02-03 19:40:08 -0800550 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700551 }
552 } else {
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800553 pw_error("$target_name.nanopb_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700554 message =
555 "\$dir_pw_third_party_nanopb must be set to generate nanopb RPC code."
Alexei Frolov8185c822020-06-12 10:45:04 -0700556 }
Alexei Frolov942adf02019-12-11 17:07:28 -0800557
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800558 pw_error("$target_name.nanopb") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700559 message =
560 "\$dir_pw_third_party_nanopb must be set to compile nanopb protobufs."
Alexei Frolov942adf02019-12-11 17:07:28 -0800561 }
562 }
563
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800564 _pw_raw_rpc_proto_library("$target_name.raw_rpc") {
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700565 forward_variables_from(invoker, _forwarded_vars)
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800566 forward_variables_from(_common, "*")
567
568 deps = []
569 foreach(dep, _deps) {
570 _base = get_label_info(dep, "label_no_toolchain")
571 deps += [ "$_base.raw_rpc(" + get_label_info(dep, "toolchain") + ")" ]
572 }
573
574 outputs = []
575 foreach(name, _source_names) {
576 outputs += [ "$base_out_dir/raw_rpc/$_prefix/${name}.raw_rpc.pb.h" ]
577 }
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700578 }
579
Wyatt Heplerd9336a42020-11-10 09:47:30 -0800580 _pw_go_proto_library("$target_name.go") {
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800581 sources = _common.sources
582
583 deps = []
584 foreach(dep, _deps) {
585 _base = get_label_info(dep, "label_no_toolchain")
586 deps += [ "$_base.go(" + get_label_info(dep, "toolchain") + ")" ]
587 }
588
589 forward_variables_from(_common, "*")
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700590 }
591
Alexei Frolov38cad0c2020-12-03 12:36:24 -0800592 _pw_python_proto_library("$target_name.python") {
Alexei Frolov38cad0c2020-12-03 12:36:24 -0800593 forward_variables_from(_common, "*")
Wyatt Heplerdcfcecf2021-03-01 08:36:19 -0800594 forward_variables_from(invoker, [ "python_package" ])
Wyatt Hepler752d7d32021-03-02 09:02:23 -0800595 module_as_package = _module_as_package
596
597 deps = []
598 foreach(dep, _deps) {
599 _base = get_label_info(dep, "label_no_toolchain")
600 deps += [ "$_base.python(" + get_label_info(dep, "toolchain") + ")" ]
601 }
602
603 if (module_as_package == "") {
604 _python_prefix = "$base_out_dir/python/$_prefix"
605 } else {
606 _python_prefix = "$base_out_dir/python/$module_as_package"
607 }
608
609 outputs = []
610 foreach(name, _source_names) {
611 outputs += [
612 "$_python_prefix/${name}_pb2.py",
613 "$_python_prefix/${name}_pb2.pyi",
614 ]
615 }
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800616 }
617
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700618 # All supported pw_protobuf generators.
619 _protobuf_generators = [
620 "pwpb",
621 "nanopb",
Alexei Frolov79b7cb02020-07-06 13:51:43 -0700622 "nanopb_rpc",
Alexei Frolovc912ea72020-10-26 08:43:27 -0700623 "raw_rpc",
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700624 "go",
Alexei Frolova4c0aee2020-12-01 13:48:48 -0800625 "python",
Wyatt Heplerb4b73a62020-05-27 15:17:27 -0700626 ]
627
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700628 # If the label matches the directory name, alias the subtargets to the
629 # directory (e.g. //foo:nanopb is an alias for //foo:foo.nanopb).
630 if (get_label_info(":$target_name", "name") ==
631 get_path_info(get_label_info(":$target_name", "dir"), "name")) {
Wyatt Hepler2c6c0ba2021-04-07 09:50:23 -0700632 foreach(_generator, _protobuf_generators - [ "python" ]) {
633 group(_generator) {
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700634 public_deps = [ ":${invoker.target_name}.$_generator" ]
635 }
636 }
Wyatt Hepler2c6c0ba2021-04-07 09:50:23 -0700637
638 pw_python_group("python") {
639 python_deps = [ ":${invoker.target_name}.python" ]
640 }
Wyatt Hepler4cdc3e72021-03-24 08:41:08 -0700641 }
642
Alexei Frolov942adf02019-12-11 17:07:28 -0800643 # If the user attempts to use the target directly instead of one of the
Alexei Frolovf39cd8b2020-04-13 17:59:20 -0700644 # generator targets, run a script which prints a nice error message.
Wyatt Heplerc8e05a42020-10-19 14:49:39 -0700645 pw_python_action(target_name) {
Alexei Frolov942adf02019-12-11 17:07:28 -0800646 script = string_join("/",
647 [
648 dir_pw_protobuf_compiler,
649 "py",
650 "pw_protobuf_compiler",
651 "proto_target_invalid.py",
652 ])
653 args = [
654 "--target",
655 target_name,
656 "--dir",
657 get_path_info(".", "abspath"),
658 "--root",
659 "//",
Alexei Frolovb499d3f2020-10-28 13:00:08 -0700660 ] + _protobuf_generators
Alexei Frolov942adf02019-12-11 17:07:28 -0800661 stamp = true
662 }
663}