blob: 5c4a24d7b15ca199b1790f65b054e3e157f1a0f1 [file] [log] [blame]
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +01001def _GetPath(ctx, path):
2 if ctx.label.workspace_root:
3 return ctx.label.workspace_root + '/' + path
4 else:
5 return path
6
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -05007def _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 Liu993fb702015-10-19 17:19:49 -070014def _GenDir(ctx):
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050015 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
24def _SourceDir(ctx):
Jisi Liu53a56be2015-10-20 15:18:20 -070025 if not ctx.attr.includes:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010026 return ctx.label.workspace_root
Jisi Liu53a56be2015-10-20 15:18:20 -070027 if not ctx.attr.includes[0]:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010028 return _GetPath(ctx, ctx.label.package)
Jisi Liu39362b32015-10-14 17:12:11 -070029 if not ctx.label.package:
Damien Martin-Guillerez76547e52016-01-15 14:01:37 +010030 return _GetPath(ctx, ctx.attr.includes[0])
31 return _GetPath(ctx, ctx.label.package + '/' + ctx.attr.includes[0])
Jisi Liu39362b32015-10-14 17:12:11 -070032
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020033def _CcHdrs(srcs, use_grpc_plugin=False):
34 ret = [s[:-len(".proto")] + ".pb.h" for s in srcs]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -080035 if use_grpc_plugin:
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020036 ret += [s[:-len(".proto")] + ".grpc.pb.h" for s in srcs]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -080037 return ret
Jisi Liu39362b32015-10-14 17:12:11 -070038
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +020039def _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
45def _CcOuts(srcs, use_grpc_plugin=False):
46 return _CcHdrs(srcs, use_grpc_plugin) + _CcSrcs(srcs, use_grpc_plugin)
47
Mateusz Matejczyk294b5752018-03-11 17:48:10 -040048def _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 Liu39362b32015-10-14 17:12:11 -070053
David Z. Chen02cd45c2016-05-20 16:49:04 -070054def _RelativeOutputPath(path, include, dest=""):
Jisi Liu993fb702015-10-19 17:19:49 -070055 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. Chen02cd45c2016-05-20 16:49:04 -070063 if dest and dest[-1] != '/':
64 dest = dest + '/'
Jisi Liu993fb702015-10-19 17:19:49 -070065
66 path = path[len(include):]
David Z. Chen02cd45c2016-05-20 16:49:04 -070067 return dest + path
Jisi Liu993fb702015-10-19 17:19:49 -070068
Jisi Liu9c7d9c02015-10-15 10:51:32 -070069def _proto_gen_impl(ctx):
70 """General implementation for generating protos"""
Jisi Liu39362b32015-10-14 17:12:11 -070071 srcs = ctx.files.srcs
72 deps = []
73 deps += ctx.files.srcs
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050074 source_dir = _SourceDir(ctx)
Jisi Liu993fb702015-10-19 17:19:49 -070075 gen_dir = _GenDir(ctx)
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -050076 if source_dir:
77 import_flags = ["-I" + source_dir, "-I" + gen_dir]
Jisi Liu53a56be2015-10-20 15:18:20 -070078 else:
79 import_flags = ["-I."]
80
Jisi Liu39362b32015-10-14 17:12:11 -070081 for dep in ctx.attr.deps:
82 import_flags += dep.proto.import_flags
83 deps += dep.proto.deps
84
Fahrzin Hemmati800f8d62017-11-30 22:27:48 -080085 if not ctx.attr.gen_cc and not ctx.attr.gen_py and not ctx.executable.plugin:
86 return struct(
87 proto=struct(
88 srcs=srcs,
89 import_flags=import_flags,
90 deps=deps,
91 ),
92 )
Jisi Liu39362b32015-10-14 17:12:11 -070093
Fahrzin Hemmatib3c2ec72018-03-14 17:49:04 -070094 for src in srcs:
Fahrzin Hemmati800f8d62017-11-30 22:27:48 -080095 args = []
Fahrzin Hemmatib3c2ec72018-03-14 17:49:04 -070096 src_name = src.basename[:-len(".proto")]
97 outs = [out for out in ctx.outputs.outs if src_name in out.basename]
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +090098
Fahrzin Hemmatia6501e42018-03-14 15:23:23 -070099 in_gen_dir = src.root.path == gen_dir.rstrip('/')
Fahrzin Hemmati800f8d62017-11-30 22:27:48 -0800100 if in_gen_dir:
101 import_flags_real = []
102 for f in depset(import_flags):
103 path = f.replace('-I', '')
104 import_flags_real.append('-I$(realpath -s %s)' % path)
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800105
Fahrzin Hemmati800f8d62017-11-30 22:27:48 -0800106 if ctx.attr.gen_cc:
107 args += ["--cpp_out=$(realpath %s)" % gen_dir]
108 if ctx.attr.gen_py:
109 args += ["--python_out=$(realpath %s)" % gen_dir]
110
111 inputs = [src] + deps
112 if ctx.executable.plugin:
113 plugin = ctx.executable.plugin
114 lang = ctx.attr.plugin_language
115 if not lang and plugin.basename.startswith('protoc-gen-'):
116 lang = plugin.basename[len('protoc-gen-'):]
117 if not lang:
118 fail("cannot infer the target language of plugin", "plugin_language")
119
120 if in_gen_dir:
121 outdir = "."
122 else:
123 outdir = gen_dir
124
125 if ctx.attr.plugin_options:
126 outdir = ",".join(ctx.attr.plugin_options) + ":" + outdir
127 args += ["--plugin=protoc-gen-%s=$(realpath %s)" % (lang, plugin.path)]
128 args += ["--%s_out=%s" % (lang, outdir)]
129 inputs += [plugin]
130
Fahrzin Hemmatib3c2ec72018-03-14 17:49:04 -0700131 for out in outs:
132 if in_gen_dir:
133 orig_command = " ".join(
134 ["$(realpath %s)" % ctx.executable.protoc.path] + args +
135 import_flags_real + ["-I.", src.basename])
136 command = ";".join([
137 'CMD="%s"' % orig_command,
138 "cd %s" % src.dirname,
139 "${CMD}",
140 "cd -",
141 "mv %s/%s %s" % (gen_dir, out.basename, out.path)
142 ])
143 else:
144 command = " ".join(
145 [ctx.executable.protoc.path] + args + import_flags + [src.path])
146 ctx.action(
147 inputs=inputs + [ctx.executable.protoc],
148 outputs=[out],
149 command=command,
150 mnemonic="ProtoCompile",
151 use_default_shell_env=True,
152 )
Jisi Liu39362b32015-10-14 17:12:11 -0700153
154 return struct(
155 proto=struct(
Jisi Liu125a91b2015-10-14 17:37:39 -0700156 srcs=srcs,
157 import_flags=import_flags,
158 deps=deps,
159 ),
160 )
Jisi Liu39362b32015-10-14 17:12:11 -0700161
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900162proto_gen = rule(
Jisi Liu39362b32015-10-14 17:12:11 -0700163 attrs = {
Jisi Liuee8131a2015-10-14 17:20:05 -0700164 "srcs": attr.label_list(allow_files = True),
165 "deps": attr.label_list(providers = ["proto"]),
Jisi Liu53a56be2015-10-20 15:18:20 -0700166 "includes": attr.string_list(),
Jisi Liuee8131a2015-10-14 17:20:05 -0700167 "protoc": attr.label(
Vladimir Moskvaa86e6d82016-09-09 13:21:35 +0200168 cfg = "host",
Jisi Liuee8131a2015-10-14 17:20:05 -0700169 executable = True,
170 single_file = True,
171 mandatory = True,
172 ),
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900173 "plugin": attr.label(
Vladimir Moskvaa86e6d82016-09-09 13:21:35 +0200174 cfg = "host",
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900175 allow_files = True,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800176 executable = True,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800177 ),
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900178 "plugin_language": attr.string(),
179 "plugin_options": attr.string_list(),
Jisi Liuee8131a2015-10-14 17:20:05 -0700180 "gen_cc": attr.bool(),
181 "gen_py": attr.bool(),
182 "outs": attr.output_list(),
183 },
184 output_to_genfiles = True,
Jisi Liu9c7d9c02015-10-15 10:51:32 -0700185 implementation = _proto_gen_impl,
Jisi Liu39362b32015-10-14 17:12:11 -0700186)
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900187"""Generates codes from Protocol Buffers definitions.
188
189This rule helps you to implement Skylark macros specific to the target
190language. You should prefer more specific `cc_proto_library `,
191`py_proto_library` and others unless you are adding such wrapper macros.
192
193Args:
194 srcs: Protocol Buffers definition files (.proto) to run the protocol compiler
195 against.
196 deps: a list of dependency labels; must be other proto libraries.
197 includes: a list of include paths to .proto files.
198 protoc: the label of the protocol compiler to generate the sources.
199 plugin: the label of the protocol compiler plugin to be passed to the protocol
200 compiler.
201 plugin_language: the language of the generated sources
202 plugin_options: a list of options to be passed to the plugin
Kristina Chodorow4e7ecde2017-01-25 14:10:56 -0500203 gen_cc: generates C++ sources in addition to the ones from the plugin.
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900204 gen_py: generates Python sources in addition to the ones from the plugin.
205 outs: a list of labels of the expected outputs from the protocol compiler.
206"""
Jisi Liu39362b32015-10-14 17:12:11 -0700207
208def cc_proto_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700209 name,
210 srcs=[],
Jisi Liu125a91b2015-10-14 17:37:39 -0700211 deps=[],
Jisi Liud8701b52015-10-16 11:44:21 -0700212 cc_libs=[],
Jisi Liu6dac0822015-10-19 14:41:00 -0700213 include=None,
James O'Kane950f5e42018-03-08 22:30:44 -0800214 protoc="@com_google_protobuf//:protoc",
Jisi Liu3101e732015-10-16 12:46:26 -0700215 internal_bootstrap_hack=False,
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800216 use_grpc_plugin=False,
James O'Kane950f5e42018-03-08 22:30:44 -0800217 default_runtime="@com_google_protobuf//:protobuf",
Jisi Liu125a91b2015-10-14 17:37:39 -0700218 **kargs):
Jisi Liu3101e732015-10-16 12:46:26 -0700219 """Bazel rule to create a C++ protobuf library from proto source files
220
Jisi Liud4bef7d2015-11-02 12:24:32 -0800221 NOTE: the rule is only an internal workaround to generate protos. The
222 interface may change and the rule may be removed when bazel has introduced
223 the native rule.
224
Jisi Liu3101e732015-10-16 12:46:26 -0700225 Args:
226 name: the name of the cc_proto_library.
227 srcs: the .proto files of the cc_proto_library.
228 deps: a list of dependency labels; must be cc_proto_library.
229 cc_libs: a list of other cc_library targets depended by the generated
230 cc_library.
231 include: a string indicating the include path of the .proto files.
232 protoc: the label of the protocol compiler to generate the sources.
233 internal_bootstrap_hack: a flag indicate the cc_proto_library is used only
234 for bootstraping. When it is set to True, no files will be generated.
235 The rule will simply be a provider for .proto files, so that other
236 cc_proto_library can depend on it.
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800237 use_grpc_plugin: a flag to indicate whether to call the grpc C++ plugin
238 when processing the proto files.
Jisi Liube92ffb2015-10-27 15:11:38 -0700239 default_runtime: the implicitly default runtime which will be depended on by
240 the generated cc_library target.
Jisi Liu3101e732015-10-16 12:46:26 -0700241 **kargs: other keyword arguments that are passed to cc_library.
242
243 """
Jisi Liu39362b32015-10-14 17:12:11 -0700244
Jisi Liu53a56be2015-10-20 15:18:20 -0700245 includes = []
246 if include != None:
247 includes = [include]
248
Jisi Liu39362b32015-10-14 17:12:11 -0700249 if internal_bootstrap_hack:
250 # For pre-checked-in generated files, we add the internal_bootstrap_hack
251 # which will skip the codegen action.
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900252 proto_gen(
Jisi Liu125a91b2015-10-14 17:37:39 -0700253 name=name + "_genproto",
254 srcs=srcs,
Jisi Liud8701b52015-10-16 11:44:21 -0700255 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700256 includes=includes,
Jisi Liu125a91b2015-10-14 17:37:39 -0700257 protoc=protoc,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800258 visibility=["//visibility:public"],
Jisi Liu39362b32015-10-14 17:12:11 -0700259 )
260 # An empty cc_library to make rule dependency consistent.
261 native.cc_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700262 name=name,
Jisi Liud8701b52015-10-16 11:44:21 -0700263 **kargs)
Jisi Liu39362b32015-10-14 17:12:11 -0700264 return
265
Manjunath Kudlurf0966a72016-02-22 14:30:43 -0800266 grpc_cpp_plugin = None
267 if use_grpc_plugin:
268 grpc_cpp_plugin = "//external:grpc_cpp_plugin"
269
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +0200270 gen_srcs = _CcSrcs(srcs, use_grpc_plugin)
271 gen_hdrs = _CcHdrs(srcs, use_grpc_plugin)
272 outs = gen_srcs + gen_hdrs
Manjunath Kudlurf5c73632016-02-25 08:50:50 -0800273
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900274 proto_gen(
Jisi Liu125a91b2015-10-14 17:37:39 -0700275 name=name + "_genproto",
276 srcs=srcs,
Jisi Liud8701b52015-10-16 11:44:21 -0700277 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700278 includes=includes,
Jisi Liu125a91b2015-10-14 17:37:39 -0700279 protoc=protoc,
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900280 plugin=grpc_cpp_plugin,
281 plugin_language="grpc",
Jisi Liu125a91b2015-10-14 17:37:39 -0700282 gen_cc=1,
283 outs=outs,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800284 visibility=["//visibility:public"],
Jisi Liu39362b32015-10-14 17:12:11 -0700285 )
286
Jisi Liube92ffb2015-10-27 15:11:38 -0700287 if default_runtime and not default_runtime in cc_libs:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200288 cc_libs = cc_libs + [default_runtime]
Manjunath Kudlurf5c73632016-02-25 08:50:50 -0800289 if use_grpc_plugin:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200290 cc_libs = cc_libs + ["//external:grpc_lib"]
Jisi Liu6dac0822015-10-19 14:41:00 -0700291
Jisi Liu39362b32015-10-14 17:12:11 -0700292 native.cc_library(
Jisi Liu125a91b2015-10-14 17:37:39 -0700293 name=name,
Andreas Bergmeierbbeb9832016-08-15 16:57:30 +0200294 srcs=gen_srcs,
295 hdrs=gen_hdrs,
Jisi Liud8701b52015-10-16 11:44:21 -0700296 deps=cc_libs + deps,
Jisi Liu6dac0822015-10-19 14:41:00 -0700297 includes=includes,
Jisi Liud8701b52015-10-16 11:44:21 -0700298 **kargs)
Jisi Liu993fb702015-10-19 17:19:49 -0700299
Steven Parkesea188662016-02-25 07:53:19 -0800300def internal_gen_well_known_protos_java(srcs):
301 """Bazel rule to generate the gen_well_known_protos_java genrule
302
303 Args:
304 srcs: the well known protos
305 """
306 root = Label("%s//protobuf_java" % (REPOSITORY_NAME)).workspace_root
cgrushko6fffd4a2017-02-08 12:19:40 -0500307 pkg = PACKAGE_NAME + "/" if PACKAGE_NAME else ""
Steven Parkesea188662016-02-25 07:53:19 -0800308 if root == "":
cgrushko6fffd4a2017-02-08 12:19:40 -0500309 include = " -I%ssrc " % pkg
Steven Parkesea188662016-02-25 07:53:19 -0800310 else:
cgrushko6fffd4a2017-02-08 12:19:40 -0500311 include = " -I%s/%ssrc " % (root, pkg)
Steven Parkesea188662016-02-25 07:53:19 -0800312 native.genrule(
313 name = "gen_well_known_protos_java",
314 srcs = srcs,
315 outs = [
316 "wellknown.srcjar",
317 ],
318 cmd = "$(location :protoc) --java_out=$(@D)/wellknown.jar" +
319 " %s $(SRCS) " % include +
320 " && mv $(@D)/wellknown.jar $(@D)/wellknown.srcjar",
321 tools = [":protoc"],
322 )
323
David Z. Chen02cd45c2016-05-20 16:49:04 -0700324def internal_copied_filegroup(name, srcs, strip_prefix, dest, **kwargs):
325 """Macro to copy files to a different directory and then create a filegroup.
326
327 This is used by the //:protobuf_python py_proto_library target to work around
328 an issue caused by Python source files that are part of the same Python
329 package being in separate directories.
330
331 Args:
332 srcs: The source files to copy and add to the filegroup.
333 strip_prefix: Path to the root of the files to copy.
334 dest: The directory to copy the source files into.
335 **kwargs: extra arguments that will be passesd to the filegroup.
336 """
337 outs = [_RelativeOutputPath(s, strip_prefix, dest) for s in srcs]
338
339 native.genrule(
340 name = name + "_genrule",
341 srcs = srcs,
342 outs = outs,
343 cmd = " && ".join(
344 ["cp $(location %s) $(location %s)" %
345 (s, _RelativeOutputPath(s, strip_prefix, dest)) for s in srcs]),
346 )
347
348 native.filegroup(
349 name = name,
350 srcs = outs,
351 **kwargs)
352
Jisi Liu993fb702015-10-19 17:19:49 -0700353def py_proto_library(
354 name,
355 srcs=[],
356 deps=[],
357 py_libs=[],
358 py_extra_srcs=[],
359 include=None,
James O'Kane950f5e42018-03-08 22:30:44 -0800360 default_runtime="@com_google_protobuf//:protobuf_python",
361 protoc="@com_google_protobuf//:protoc",
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100362 use_grpc_plugin=False,
Jisi Liu993fb702015-10-19 17:19:49 -0700363 **kargs):
Jisi Liu7b948cc2015-10-19 17:56:27 -0700364 """Bazel rule to create a Python protobuf library from proto source files
365
Jisi Liud4bef7d2015-11-02 12:24:32 -0800366 NOTE: the rule is only an internal workaround to generate protos. The
367 interface may change and the rule may be removed when bazel has introduced
368 the native rule.
369
Jisi Liu7b948cc2015-10-19 17:56:27 -0700370 Args:
371 name: the name of the py_proto_library.
372 srcs: the .proto files of the py_proto_library.
373 deps: a list of dependency labels; must be py_proto_library.
374 py_libs: a list of other py_library targets depended by the generated
375 py_library.
376 py_extra_srcs: extra source files that will be added to the output
377 py_library. This attribute is used for internal bootstrapping.
378 include: a string indicating the include path of the .proto files.
Jisi Liube92ffb2015-10-27 15:11:38 -0700379 default_runtime: the implicitly default runtime which will be depended on by
380 the generated py_library target.
Jisi Liu7b948cc2015-10-19 17:56:27 -0700381 protoc: the label of the protocol compiler to generate the sources.
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100382 use_grpc_plugin: a flag to indicate whether to call the Python C++ plugin
383 when processing the proto files.
Jisi Liu7b948cc2015-10-19 17:56:27 -0700384 **kargs: other keyword arguments that are passed to cc_library.
385
386 """
Mateusz Matejczyk294b5752018-03-11 17:48:10 -0400387 outs = _PyOuts(srcs, use_grpc_plugin)
Jisi Liu53a56be2015-10-20 15:18:20 -0700388
389 includes = []
390 if include != None:
391 includes = [include]
392
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100393 grpc_python_plugin = None
394 if use_grpc_plugin:
395 grpc_python_plugin = "//external:grpc_python_plugin"
396 # Note: Generated grpc code depends on Python grpc module. This dependency
397 # is not explicitly listed in py_libs. Instead, host system is assumed to
398 # have grpc installed.
399
Yuki Yugui Sonoda5977fb02016-06-01 16:23:15 +0900400 proto_gen(
Jisi Liu993fb702015-10-19 17:19:49 -0700401 name=name + "_genproto",
402 srcs=srcs,
403 deps=[s + "_genproto" for s in deps],
Jisi Liu53a56be2015-10-20 15:18:20 -0700404 includes=includes,
Jisi Liu993fb702015-10-19 17:19:49 -0700405 protoc=protoc,
406 gen_py=1,
407 outs=outs,
Martin Maly8e0c9a32015-12-04 17:44:58 -0800408 visibility=["//visibility:public"],
Wiktor Tomczak0fa31b22016-11-22 20:18:46 +0100409 plugin=grpc_python_plugin,
410 plugin_language="grpc"
Jisi Liu993fb702015-10-19 17:19:49 -0700411 )
412
Jisi Liube92ffb2015-10-27 15:11:38 -0700413 if default_runtime and not default_runtime in py_libs + deps:
Vladimir Moskva4fc93042017-08-07 13:33:03 +0200414 py_libs = py_libs + [default_runtime]
Jisi Liube92ffb2015-10-27 15:11:38 -0700415
Jisi Liu993fb702015-10-19 17:19:49 -0700416 native.py_library(
417 name=name,
Jisi Liua33fa8e2015-10-20 15:30:44 -0700418 srcs=outs+py_extra_srcs,
419 deps=py_libs+deps,
David Z. Chen985c9682016-02-11 18:11:10 -0800420 imports=includes,
Jisi Liu993fb702015-10-19 17:19:49 -0700421 **kargs)
422
423def internal_protobuf_py_tests(
424 name,
425 modules=[],
426 **kargs):
Jisi Liu7b948cc2015-10-19 17:56:27 -0700427 """Bazel rules to create batch tests for protobuf internal.
428
429 Args:
430 name: the name of the rule.
431 modules: a list of modules for tests. The macro will create a py_test for
432 each of the parameter with the source "google/protobuf/%s.py"
433 kargs: extra parameters that will be passed into the py_test.
434
435 """
Jisi Liu993fb702015-10-19 17:19:49 -0700436 for m in modules:
David Z. Chen985c9682016-02-11 18:11:10 -0800437 s = "python/google/protobuf/internal/%s.py" % m
Jisi Liu993fb702015-10-19 17:19:49 -0700438 native.py_test(
439 name="py_%s" % m,
Jisi Liu7b948cc2015-10-19 17:56:27 -0700440 srcs=[s],
441 main=s,
Jisi Liu993fb702015-10-19 17:19:49 -0700442 **kargs)
Fahrzin Hemmati35119e32017-11-28 14:24:53 -0800443
444
445def check_protobuf_required_bazel_version():
446 """For WORKSPACE files, to check the installed version of bazel.
447
448 This ensures bazel supports our approach to proto_library() depending on a
449 copied filegroup. (Fixed in bazel 0.5.4)
450 """
451 expected = apple_common.dotted_version("0.5.4")
452 current = apple_common.dotted_version(native.bazel_version)
453 if current.compare_to(expected) < 0:
454 fail("Bazel must be newer than 0.5.4")