Damien Martin-Guillerez | 76547e5 | 2016-01-15 14:01:37 +0100 | [diff] [blame] | 1 | def _GetPath(ctx, path): |
| 2 | if ctx.label.workspace_root: |
| 3 | return ctx.label.workspace_root + '/' + path |
| 4 | else: |
| 5 | return path |
| 6 | |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 7 | def _IsNewExternal(ctx): |
| 8 | # Bazel 0.4.4 and older have genfiles paths that look like: |
| 9 | # bazel-out/local-fastbuild/genfiles/external/repo/foo |
| 10 | # After the exec root rearrangement, they look like: |
| 11 | # ../repo/bazel-out/local-fastbuild/genfiles/foo |
| 12 | return ctx.label.workspace_root.startswith("../") |
| 13 | |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 14 | def _GenDir(ctx): |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 15 | if _IsNewExternal(ctx): |
| 16 | # We are using the fact that Bazel 0.4.4+ provides repository-relative paths |
| 17 | # for ctx.genfiles_dir. |
| 18 | return ctx.genfiles_dir.path + ( |
| 19 | "/" + ctx.attr.includes[0] if ctx.attr.includes and ctx.attr.includes[0] else "") |
| 20 | # This means that we're either in the old version OR the new version in the local repo. |
| 21 | # Either way, appending the source path to the genfiles dir works. |
| 22 | return ctx.var["GENDIR"] + "/" + _SourceDir(ctx) |
| 23 | |
| 24 | def _SourceDir(ctx): |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 25 | if not ctx.attr.includes: |
Damien Martin-Guillerez | 76547e5 | 2016-01-15 14:01:37 +0100 | [diff] [blame] | 26 | return ctx.label.workspace_root |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 27 | if not ctx.attr.includes[0]: |
Damien Martin-Guillerez | 76547e5 | 2016-01-15 14:01:37 +0100 | [diff] [blame] | 28 | return _GetPath(ctx, ctx.label.package) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 29 | if not ctx.label.package: |
Damien Martin-Guillerez | 76547e5 | 2016-01-15 14:01:37 +0100 | [diff] [blame] | 30 | return _GetPath(ctx, ctx.attr.includes[0]) |
| 31 | return _GetPath(ctx, ctx.label.package + '/' + ctx.attr.includes[0]) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 32 | |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 33 | def _CcHdrs(srcs, use_grpc_plugin=False): |
| 34 | ret = [s[:-len(".proto")] + ".pb.h" for s in srcs] |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 35 | if use_grpc_plugin: |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 36 | ret += [s[:-len(".proto")] + ".grpc.pb.h" for s in srcs] |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 37 | return ret |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 38 | |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 39 | def _CcSrcs(srcs, use_grpc_plugin=False): |
| 40 | ret = [s[:-len(".proto")] + ".pb.cc" for s in srcs] |
| 41 | if use_grpc_plugin: |
| 42 | ret += [s[:-len(".proto")] + ".grpc.pb.cc" for s in srcs] |
| 43 | return ret |
| 44 | |
| 45 | def _CcOuts(srcs, use_grpc_plugin=False): |
| 46 | return _CcHdrs(srcs, use_grpc_plugin) + _CcSrcs(srcs, use_grpc_plugin) |
| 47 | |
Mateusz Matejczyk | 294b575 | 2018-03-11 17:48:10 -0400 | [diff] [blame] | 48 | def _PyOuts(srcs, use_grpc_plugin=False): |
| 49 | ret = [s[:-len(".proto")] + "_pb2.py" for s in srcs] |
| 50 | if use_grpc_plugin: |
| 51 | ret += [s[:-len(".proto")] + "_pb2_grpc.py" for s in srcs] |
| 52 | return ret |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 53 | |
David Z. Chen | 02cd45c | 2016-05-20 16:49:04 -0700 | [diff] [blame] | 54 | def _RelativeOutputPath(path, include, dest=""): |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 55 | if include == None: |
| 56 | return path |
| 57 | |
| 58 | if not path.startswith(include): |
| 59 | fail("Include path %s isn't part of the path %s." % (include, path)) |
| 60 | |
| 61 | if include and include[-1] != '/': |
| 62 | include = include + '/' |
David Z. Chen | 02cd45c | 2016-05-20 16:49:04 -0700 | [diff] [blame] | 63 | if dest and dest[-1] != '/': |
| 64 | dest = dest + '/' |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 65 | |
| 66 | path = path[len(include):] |
David Z. Chen | 02cd45c | 2016-05-20 16:49:04 -0700 | [diff] [blame] | 67 | return dest + path |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 68 | |
Jisi Liu | 9c7d9c0 | 2015-10-15 10:51:32 -0700 | [diff] [blame] | 69 | def _proto_gen_impl(ctx): |
| 70 | """General implementation for generating protos""" |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 71 | srcs = ctx.files.srcs |
| 72 | deps = [] |
| 73 | deps += ctx.files.srcs |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 74 | source_dir = _SourceDir(ctx) |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 75 | gen_dir = _GenDir(ctx) |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 76 | if source_dir: |
| 77 | import_flags = ["-I" + source_dir, "-I" + gen_dir] |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 78 | else: |
| 79 | import_flags = ["-I."] |
| 80 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 81 | for dep in ctx.attr.deps: |
| 82 | import_flags += dep.proto.import_flags |
| 83 | deps += dep.proto.deps |
| 84 | |
| 85 | args = [] |
| 86 | if ctx.attr.gen_cc: |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 87 | args += ["--cpp_out=" + gen_dir] |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 88 | if ctx.attr.gen_py: |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 89 | args += ["--python_out=" + gen_dir] |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 90 | |
Florian Weikert | c2b3e70 | 2016-10-12 14:03:07 +0200 | [diff] [blame] | 91 | inputs = srcs + deps |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 92 | if ctx.executable.plugin: |
| 93 | plugin = ctx.executable.plugin |
| 94 | lang = ctx.attr.plugin_language |
| 95 | if not lang and plugin.basename.startswith('protoc-gen-'): |
| 96 | lang = plugin.basename[len('protoc-gen-'):] |
| 97 | if not lang: |
| 98 | fail("cannot infer the target language of plugin", "plugin_language") |
| 99 | |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 100 | outdir = gen_dir |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 101 | if ctx.attr.plugin_options: |
| 102 | outdir = ",".join(ctx.attr.plugin_options) + ":" + outdir |
| 103 | args += ["--plugin=protoc-gen-%s=%s" % (lang, plugin.path)] |
| 104 | args += ["--%s_out=%s" % (lang, outdir)] |
Florian Weikert | c2b3e70 | 2016-10-12 14:03:07 +0200 | [diff] [blame] | 105 | inputs += [plugin] |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 106 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 107 | if args: |
| 108 | ctx.action( |
Florian Weikert | c2b3e70 | 2016-10-12 14:03:07 +0200 | [diff] [blame] | 109 | inputs=inputs, |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 110 | outputs=ctx.outputs.outs, |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 111 | arguments=args + import_flags + [s.path for s in srcs], |
Jisi Liu | 9c7d9c0 | 2015-10-15 10:51:32 -0700 | [diff] [blame] | 112 | executable=ctx.executable.protoc, |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 113 | mnemonic="ProtoCompile", |
Marco A. Harrendorf | dd04ffb | 2017-04-03 17:01:36 +0200 | [diff] [blame] | 114 | use_default_shell_env=True, |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 115 | ) |
| 116 | |
| 117 | return struct( |
| 118 | proto=struct( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 119 | srcs=srcs, |
| 120 | import_flags=import_flags, |
| 121 | deps=deps, |
| 122 | ), |
| 123 | ) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 124 | |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 125 | proto_gen = rule( |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 126 | attrs = { |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 127 | "srcs": attr.label_list(allow_files = True), |
| 128 | "deps": attr.label_list(providers = ["proto"]), |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 129 | "includes": attr.string_list(), |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 130 | "protoc": attr.label( |
Vladimir Moskva | a86e6d8 | 2016-09-09 13:21:35 +0200 | [diff] [blame] | 131 | cfg = "host", |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 132 | executable = True, |
| 133 | single_file = True, |
| 134 | mandatory = True, |
| 135 | ), |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 136 | "plugin": attr.label( |
Vladimir Moskva | a86e6d8 | 2016-09-09 13:21:35 +0200 | [diff] [blame] | 137 | cfg = "host", |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 138 | allow_files = True, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 139 | executable = True, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 140 | ), |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 141 | "plugin_language": attr.string(), |
| 142 | "plugin_options": attr.string_list(), |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 143 | "gen_cc": attr.bool(), |
| 144 | "gen_py": attr.bool(), |
| 145 | "outs": attr.output_list(), |
| 146 | }, |
| 147 | output_to_genfiles = True, |
Jisi Liu | 9c7d9c0 | 2015-10-15 10:51:32 -0700 | [diff] [blame] | 148 | implementation = _proto_gen_impl, |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 149 | ) |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 150 | """Generates codes from Protocol Buffers definitions. |
| 151 | |
| 152 | This rule helps you to implement Skylark macros specific to the target |
| 153 | language. You should prefer more specific `cc_proto_library `, |
| 154 | `py_proto_library` and others unless you are adding such wrapper macros. |
| 155 | |
| 156 | Args: |
| 157 | srcs: Protocol Buffers definition files (.proto) to run the protocol compiler |
| 158 | against. |
| 159 | deps: a list of dependency labels; must be other proto libraries. |
| 160 | includes: a list of include paths to .proto files. |
| 161 | protoc: the label of the protocol compiler to generate the sources. |
| 162 | plugin: the label of the protocol compiler plugin to be passed to the protocol |
| 163 | compiler. |
| 164 | plugin_language: the language of the generated sources |
| 165 | plugin_options: a list of options to be passed to the plugin |
Kristina Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 166 | gen_cc: generates C++ sources in addition to the ones from the plugin. |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 167 | gen_py: generates Python sources in addition to the ones from the plugin. |
| 168 | outs: a list of labels of the expected outputs from the protocol compiler. |
| 169 | """ |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 170 | |
| 171 | def cc_proto_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 172 | name, |
| 173 | srcs=[], |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 174 | deps=[], |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 175 | cc_libs=[], |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 176 | include=None, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 177 | protoc="@com_google_protobuf//:protoc", |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 178 | internal_bootstrap_hack=False, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 179 | use_grpc_plugin=False, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 180 | default_runtime="@com_google_protobuf//:protobuf", |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 181 | **kargs): |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 182 | """Bazel rule to create a C++ protobuf library from proto source files |
| 183 | |
Jisi Liu | d4bef7d | 2015-11-02 12:24:32 -0800 | [diff] [blame] | 184 | NOTE: the rule is only an internal workaround to generate protos. The |
| 185 | interface may change and the rule may be removed when bazel has introduced |
| 186 | the native rule. |
| 187 | |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 188 | Args: |
| 189 | name: the name of the cc_proto_library. |
| 190 | srcs: the .proto files of the cc_proto_library. |
| 191 | deps: a list of dependency labels; must be cc_proto_library. |
| 192 | cc_libs: a list of other cc_library targets depended by the generated |
| 193 | cc_library. |
| 194 | include: a string indicating the include path of the .proto files. |
| 195 | protoc: the label of the protocol compiler to generate the sources. |
| 196 | internal_bootstrap_hack: a flag indicate the cc_proto_library is used only |
| 197 | for bootstraping. When it is set to True, no files will be generated. |
| 198 | The rule will simply be a provider for .proto files, so that other |
| 199 | cc_proto_library can depend on it. |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 200 | use_grpc_plugin: a flag to indicate whether to call the grpc C++ plugin |
| 201 | when processing the proto files. |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 202 | default_runtime: the implicitly default runtime which will be depended on by |
| 203 | the generated cc_library target. |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 204 | **kargs: other keyword arguments that are passed to cc_library. |
| 205 | |
| 206 | """ |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 207 | |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 208 | includes = [] |
| 209 | if include != None: |
| 210 | includes = [include] |
| 211 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 212 | if internal_bootstrap_hack: |
| 213 | # For pre-checked-in generated files, we add the internal_bootstrap_hack |
| 214 | # which will skip the codegen action. |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 215 | proto_gen( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 216 | name=name + "_genproto", |
| 217 | srcs=srcs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 218 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 219 | includes=includes, |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 220 | protoc=protoc, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 221 | visibility=["//visibility:public"], |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 222 | ) |
| 223 | # An empty cc_library to make rule dependency consistent. |
| 224 | native.cc_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 225 | name=name, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 226 | **kargs) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 227 | return |
| 228 | |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 229 | grpc_cpp_plugin = None |
| 230 | if use_grpc_plugin: |
| 231 | grpc_cpp_plugin = "//external:grpc_cpp_plugin" |
| 232 | |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 233 | gen_srcs = _CcSrcs(srcs, use_grpc_plugin) |
| 234 | gen_hdrs = _CcHdrs(srcs, use_grpc_plugin) |
| 235 | outs = gen_srcs + gen_hdrs |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 236 | |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 237 | proto_gen( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 238 | name=name + "_genproto", |
| 239 | srcs=srcs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 240 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 241 | includes=includes, |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 242 | protoc=protoc, |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 243 | plugin=grpc_cpp_plugin, |
| 244 | plugin_language="grpc", |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 245 | gen_cc=1, |
| 246 | outs=outs, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 247 | visibility=["//visibility:public"], |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 248 | ) |
| 249 | |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 250 | if default_runtime and not default_runtime in cc_libs: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 251 | cc_libs = cc_libs + [default_runtime] |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 252 | if use_grpc_plugin: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 253 | cc_libs = cc_libs + ["//external:grpc_lib"] |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 254 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 255 | native.cc_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 256 | name=name, |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 257 | srcs=gen_srcs, |
| 258 | hdrs=gen_hdrs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 259 | deps=cc_libs + deps, |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 260 | includes=includes, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 261 | **kargs) |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 262 | |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 263 | def internal_gen_well_known_protos_java(srcs): |
| 264 | """Bazel rule to generate the gen_well_known_protos_java genrule |
| 265 | |
| 266 | Args: |
| 267 | srcs: the well known protos |
| 268 | """ |
Ittai Zeidman | 4fcb36c | 2018-05-21 23:48:10 +0300 | [diff] [blame^] | 269 | root = Label("%s//protobuf_java" % (native.repository_name())).workspace_root |
| 270 | pkg = native.package_name() + "/" if native.package_name() else "" |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 271 | if root == "": |
cgrushko | 6fffd4a | 2017-02-08 12:19:40 -0500 | [diff] [blame] | 272 | include = " -I%ssrc " % pkg |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 273 | else: |
cgrushko | 6fffd4a | 2017-02-08 12:19:40 -0500 | [diff] [blame] | 274 | include = " -I%s/%ssrc " % (root, pkg) |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 275 | native.genrule( |
| 276 | name = "gen_well_known_protos_java", |
| 277 | srcs = srcs, |
| 278 | outs = [ |
| 279 | "wellknown.srcjar", |
| 280 | ], |
| 281 | cmd = "$(location :protoc) --java_out=$(@D)/wellknown.jar" + |
| 282 | " %s $(SRCS) " % include + |
| 283 | " && mv $(@D)/wellknown.jar $(@D)/wellknown.srcjar", |
| 284 | tools = [":protoc"], |
| 285 | ) |
| 286 | |
David Z. Chen | 02cd45c | 2016-05-20 16:49:04 -0700 | [diff] [blame] | 287 | def internal_copied_filegroup(name, srcs, strip_prefix, dest, **kwargs): |
| 288 | """Macro to copy files to a different directory and then create a filegroup. |
| 289 | |
| 290 | This is used by the //:protobuf_python py_proto_library target to work around |
| 291 | an issue caused by Python source files that are part of the same Python |
| 292 | package being in separate directories. |
| 293 | |
| 294 | Args: |
| 295 | srcs: The source files to copy and add to the filegroup. |
| 296 | strip_prefix: Path to the root of the files to copy. |
| 297 | dest: The directory to copy the source files into. |
| 298 | **kwargs: extra arguments that will be passesd to the filegroup. |
| 299 | """ |
| 300 | outs = [_RelativeOutputPath(s, strip_prefix, dest) for s in srcs] |
| 301 | |
| 302 | native.genrule( |
| 303 | name = name + "_genrule", |
| 304 | srcs = srcs, |
| 305 | outs = outs, |
| 306 | cmd = " && ".join( |
| 307 | ["cp $(location %s) $(location %s)" % |
| 308 | (s, _RelativeOutputPath(s, strip_prefix, dest)) for s in srcs]), |
| 309 | ) |
| 310 | |
| 311 | native.filegroup( |
| 312 | name = name, |
| 313 | srcs = outs, |
| 314 | **kwargs) |
| 315 | |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 316 | def py_proto_library( |
| 317 | name, |
| 318 | srcs=[], |
| 319 | deps=[], |
| 320 | py_libs=[], |
| 321 | py_extra_srcs=[], |
| 322 | include=None, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 323 | default_runtime="@com_google_protobuf//:protobuf_python", |
| 324 | protoc="@com_google_protobuf//:protoc", |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 325 | use_grpc_plugin=False, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 326 | **kargs): |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 327 | """Bazel rule to create a Python protobuf library from proto source files |
| 328 | |
Jisi Liu | d4bef7d | 2015-11-02 12:24:32 -0800 | [diff] [blame] | 329 | NOTE: the rule is only an internal workaround to generate protos. The |
| 330 | interface may change and the rule may be removed when bazel has introduced |
| 331 | the native rule. |
| 332 | |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 333 | Args: |
| 334 | name: the name of the py_proto_library. |
| 335 | srcs: the .proto files of the py_proto_library. |
| 336 | deps: a list of dependency labels; must be py_proto_library. |
| 337 | py_libs: a list of other py_library targets depended by the generated |
| 338 | py_library. |
| 339 | py_extra_srcs: extra source files that will be added to the output |
| 340 | py_library. This attribute is used for internal bootstrapping. |
| 341 | include: a string indicating the include path of the .proto files. |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 342 | default_runtime: the implicitly default runtime which will be depended on by |
| 343 | the generated py_library target. |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 344 | protoc: the label of the protocol compiler to generate the sources. |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 345 | use_grpc_plugin: a flag to indicate whether to call the Python C++ plugin |
| 346 | when processing the proto files. |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 347 | **kargs: other keyword arguments that are passed to cc_library. |
| 348 | |
| 349 | """ |
Mateusz Matejczyk | 294b575 | 2018-03-11 17:48:10 -0400 | [diff] [blame] | 350 | outs = _PyOuts(srcs, use_grpc_plugin) |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 351 | |
| 352 | includes = [] |
| 353 | if include != None: |
| 354 | includes = [include] |
| 355 | |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 356 | grpc_python_plugin = None |
| 357 | if use_grpc_plugin: |
| 358 | grpc_python_plugin = "//external:grpc_python_plugin" |
| 359 | # Note: Generated grpc code depends on Python grpc module. This dependency |
| 360 | # is not explicitly listed in py_libs. Instead, host system is assumed to |
| 361 | # have grpc installed. |
| 362 | |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 363 | proto_gen( |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 364 | name=name + "_genproto", |
| 365 | srcs=srcs, |
| 366 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 367 | includes=includes, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 368 | protoc=protoc, |
| 369 | gen_py=1, |
| 370 | outs=outs, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 371 | visibility=["//visibility:public"], |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 372 | plugin=grpc_python_plugin, |
| 373 | plugin_language="grpc" |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 374 | ) |
| 375 | |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 376 | if default_runtime and not default_runtime in py_libs + deps: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 377 | py_libs = py_libs + [default_runtime] |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 378 | |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 379 | native.py_library( |
| 380 | name=name, |
Jisi Liu | a33fa8e | 2015-10-20 15:30:44 -0700 | [diff] [blame] | 381 | srcs=outs+py_extra_srcs, |
| 382 | deps=py_libs+deps, |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 383 | imports=includes, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 384 | **kargs) |
| 385 | |
| 386 | def internal_protobuf_py_tests( |
| 387 | name, |
| 388 | modules=[], |
| 389 | **kargs): |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 390 | """Bazel rules to create batch tests for protobuf internal. |
| 391 | |
| 392 | Args: |
| 393 | name: the name of the rule. |
| 394 | modules: a list of modules for tests. The macro will create a py_test for |
| 395 | each of the parameter with the source "google/protobuf/%s.py" |
| 396 | kargs: extra parameters that will be passed into the py_test. |
| 397 | |
| 398 | """ |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 399 | for m in modules: |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 400 | s = "python/google/protobuf/internal/%s.py" % m |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 401 | native.py_test( |
| 402 | name="py_%s" % m, |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 403 | srcs=[s], |
| 404 | main=s, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 405 | **kargs) |
Fahrzin Hemmati | 35119e3 | 2017-11-28 14:24:53 -0800 | [diff] [blame] | 406 | |
| 407 | |
| 408 | def check_protobuf_required_bazel_version(): |
| 409 | """For WORKSPACE files, to check the installed version of bazel. |
| 410 | |
| 411 | This ensures bazel supports our approach to proto_library() depending on a |
| 412 | copied filegroup. (Fixed in bazel 0.5.4) |
| 413 | """ |
| 414 | expected = apple_common.dotted_version("0.5.4") |
| 415 | current = apple_common.dotted_version(native.bazel_version) |
| 416 | if current.compare_to(expected) < 0: |
| 417 | fail("Bazel must be newer than 0.5.4") |