2015-10-15 00:12:11 +00:00
|
|
|
# -*- mode: python; -*- PYTHON-PREPROCESSING-REQUIRED
|
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
def _GenDir(ctx):
|
2015-10-20 22:18:20 +00:00
|
|
|
if not ctx.attr.includes:
|
2015-10-19 21:41:00 +00:00
|
|
|
return ""
|
2015-10-20 22:18:20 +00:00
|
|
|
if not ctx.attr.includes[0]:
|
2015-10-15 00:12:11 +00:00
|
|
|
return ctx.label.package
|
|
|
|
if not ctx.label.package:
|
2015-10-20 22:18:20 +00:00
|
|
|
return ctx.attr.includes[0]
|
|
|
|
return ctx.label.package + '/' + ctx.attr.includes[0]
|
2015-10-15 00:12:11 +00:00
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
def _CcOuts(srcs):
|
2015-10-15 00:12:11 +00:00
|
|
|
return [s[:-len(".proto")] + ".pb.h" for s in srcs] + \
|
2015-10-15 00:37:39 +00:00
|
|
|
[s[:-len(".proto")] + ".pb.cc" for s in srcs]
|
2015-10-15 00:12:11 +00:00
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
def _PyOuts(srcs):
|
2015-10-15 00:37:39 +00:00
|
|
|
return [s[:-len(".proto")] + "_pb2.py" for s in srcs]
|
2015-10-15 00:12:11 +00:00
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
def _RelativeOutputPath(path, include):
|
|
|
|
if include == None:
|
|
|
|
return path
|
|
|
|
|
|
|
|
if not path.startswith(include):
|
|
|
|
fail("Include path %s isn't part of the path %s." % (include, path))
|
|
|
|
|
|
|
|
if include and include[-1] != '/':
|
|
|
|
include = include + '/'
|
|
|
|
|
|
|
|
path = path[len(include):]
|
|
|
|
|
|
|
|
if not path.startswith(PACKAGE_NAME):
|
|
|
|
fail("The package %s is not within the path %s" % (PACKAGE_NAME, path))
|
|
|
|
|
|
|
|
if not PACKAGE_NAME:
|
|
|
|
return path
|
|
|
|
|
|
|
|
return path[len(PACKAGE_NAME)+1:]
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-15 17:51:32 +00:00
|
|
|
def _proto_gen_impl(ctx):
|
|
|
|
"""General implementation for generating protos"""
|
2015-10-15 00:12:11 +00:00
|
|
|
srcs = ctx.files.srcs
|
|
|
|
deps = []
|
|
|
|
deps += ctx.files.srcs
|
2015-10-20 00:19:49 +00:00
|
|
|
gen_dir = _GenDir(ctx)
|
2015-10-20 22:18:20 +00:00
|
|
|
if gen_dir:
|
|
|
|
import_flags = ["-I" + gen_dir]
|
|
|
|
else:
|
|
|
|
import_flags = ["-I."]
|
|
|
|
|
2015-10-15 00:12:11 +00:00
|
|
|
for dep in ctx.attr.deps:
|
|
|
|
import_flags += dep.proto.import_flags
|
|
|
|
deps += dep.proto.deps
|
|
|
|
|
|
|
|
args = []
|
|
|
|
if ctx.attr.gen_cc:
|
|
|
|
args += ["--cpp_out=" + ctx.var["GENDIR"] + "/" + gen_dir]
|
|
|
|
if ctx.attr.gen_py:
|
|
|
|
args += ["--python_out=" + ctx.var["GENDIR"] + "/" + gen_dir]
|
|
|
|
|
|
|
|
if args:
|
|
|
|
ctx.action(
|
2015-10-15 00:37:39 +00:00
|
|
|
inputs=srcs + deps,
|
2015-10-15 00:12:11 +00:00
|
|
|
outputs=ctx.outputs.outs,
|
2015-10-15 00:37:39 +00:00
|
|
|
arguments=args + import_flags + [s.path for s in srcs],
|
2015-10-15 17:51:32 +00:00
|
|
|
executable=ctx.executable.protoc,
|
2015-10-15 00:12:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
return struct(
|
|
|
|
proto=struct(
|
2015-10-15 00:37:39 +00:00
|
|
|
srcs=srcs,
|
|
|
|
import_flags=import_flags,
|
|
|
|
deps=deps,
|
|
|
|
),
|
|
|
|
)
|
2015-10-15 00:12:11 +00:00
|
|
|
|
2015-10-15 17:51:32 +00:00
|
|
|
_proto_gen = rule(
|
2015-10-15 00:12:11 +00:00
|
|
|
attrs = {
|
2015-10-15 00:20:05 +00:00
|
|
|
"srcs": attr.label_list(allow_files = True),
|
|
|
|
"deps": attr.label_list(providers = ["proto"]),
|
2015-10-20 22:18:20 +00:00
|
|
|
"includes": attr.string_list(),
|
2015-10-15 00:20:05 +00:00
|
|
|
"protoc": attr.label(
|
2015-11-03 21:39:32 +00:00
|
|
|
cfg = HOST_CFG,
|
2015-10-15 00:20:05 +00:00
|
|
|
executable = True,
|
|
|
|
single_file = True,
|
|
|
|
mandatory = True,
|
|
|
|
),
|
|
|
|
"gen_cc": attr.bool(),
|
|
|
|
"gen_py": attr.bool(),
|
|
|
|
"outs": attr.output_list(),
|
|
|
|
},
|
|
|
|
output_to_genfiles = True,
|
2015-10-15 17:51:32 +00:00
|
|
|
implementation = _proto_gen_impl,
|
2015-10-15 00:12:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def cc_proto_library(
|
2015-10-15 00:37:39 +00:00
|
|
|
name,
|
|
|
|
srcs=[],
|
|
|
|
deps=[],
|
2015-10-16 18:44:21 +00:00
|
|
|
cc_libs=[],
|
2015-10-19 21:41:00 +00:00
|
|
|
include=None,
|
2015-10-20 22:00:13 +00:00
|
|
|
protoc="//google/protobuf:protoc",
|
2015-10-16 19:46:26 +00:00
|
|
|
internal_bootstrap_hack=False,
|
2015-10-27 22:11:38 +00:00
|
|
|
default_runtime="//google/protobuf:protobuf",
|
2015-10-15 00:37:39 +00:00
|
|
|
**kargs):
|
2015-10-16 19:46:26 +00:00
|
|
|
"""Bazel rule to create a C++ protobuf library from proto source files
|
|
|
|
|
2015-11-02 20:24:32 +00:00
|
|
|
NOTE: the rule is only an internal workaround to generate protos. The
|
|
|
|
interface may change and the rule may be removed when bazel has introduced
|
|
|
|
the native rule.
|
|
|
|
|
2015-10-16 19:46:26 +00:00
|
|
|
Args:
|
|
|
|
name: the name of the cc_proto_library.
|
|
|
|
srcs: the .proto files of the cc_proto_library.
|
|
|
|
deps: a list of dependency labels; must be cc_proto_library.
|
|
|
|
cc_libs: a list of other cc_library targets depended by the generated
|
|
|
|
cc_library.
|
|
|
|
include: a string indicating the include path of the .proto files.
|
|
|
|
protoc: the label of the protocol compiler to generate the sources.
|
|
|
|
internal_bootstrap_hack: a flag indicate the cc_proto_library is used only
|
|
|
|
for bootstraping. When it is set to True, no files will be generated.
|
|
|
|
The rule will simply be a provider for .proto files, so that other
|
|
|
|
cc_proto_library can depend on it.
|
2015-10-27 22:11:38 +00:00
|
|
|
default_runtime: the implicitly default runtime which will be depended on by
|
|
|
|
the generated cc_library target.
|
2015-10-16 19:46:26 +00:00
|
|
|
**kargs: other keyword arguments that are passed to cc_library.
|
|
|
|
|
|
|
|
"""
|
2015-10-15 00:12:11 +00:00
|
|
|
|
2015-10-20 22:18:20 +00:00
|
|
|
includes = []
|
|
|
|
if include != None:
|
|
|
|
includes = [include]
|
|
|
|
|
2015-10-15 00:12:11 +00:00
|
|
|
if internal_bootstrap_hack:
|
|
|
|
# For pre-checked-in generated files, we add the internal_bootstrap_hack
|
|
|
|
# which will skip the codegen action.
|
2015-10-15 17:51:32 +00:00
|
|
|
_proto_gen(
|
2015-10-15 00:37:39 +00:00
|
|
|
name=name + "_genproto",
|
|
|
|
srcs=srcs,
|
2015-10-16 18:44:21 +00:00
|
|
|
deps=[s + "_genproto" for s in deps],
|
2015-10-20 22:18:20 +00:00
|
|
|
includes=includes,
|
2015-10-15 00:37:39 +00:00
|
|
|
protoc=protoc,
|
2015-12-05 01:44:58 +00:00
|
|
|
visibility=["//visibility:public"],
|
2015-10-15 00:12:11 +00:00
|
|
|
)
|
|
|
|
# An empty cc_library to make rule dependency consistent.
|
|
|
|
native.cc_library(
|
2015-10-15 00:37:39 +00:00
|
|
|
name=name,
|
2015-10-16 18:44:21 +00:00
|
|
|
**kargs)
|
2015-10-15 00:12:11 +00:00
|
|
|
return
|
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
outs = _CcOuts(srcs)
|
2015-10-15 17:51:32 +00:00
|
|
|
_proto_gen(
|
2015-10-15 00:37:39 +00:00
|
|
|
name=name + "_genproto",
|
|
|
|
srcs=srcs,
|
2015-10-16 18:44:21 +00:00
|
|
|
deps=[s + "_genproto" for s in deps],
|
2015-10-20 22:18:20 +00:00
|
|
|
includes=includes,
|
2015-10-15 00:37:39 +00:00
|
|
|
protoc=protoc,
|
|
|
|
gen_cc=1,
|
|
|
|
outs=outs,
|
2015-12-05 01:44:58 +00:00
|
|
|
visibility=["//visibility:public"],
|
2015-10-15 00:12:11 +00:00
|
|
|
)
|
|
|
|
|
2015-10-27 22:11:38 +00:00
|
|
|
if default_runtime and not default_runtime in cc_libs:
|
|
|
|
cc_libs += [default_runtime]
|
2015-10-19 21:41:00 +00:00
|
|
|
|
2015-10-15 00:12:11 +00:00
|
|
|
native.cc_library(
|
2015-10-15 00:37:39 +00:00
|
|
|
name=name,
|
|
|
|
srcs=outs,
|
2015-10-16 18:44:21 +00:00
|
|
|
deps=cc_libs + deps,
|
2015-10-19 21:41:00 +00:00
|
|
|
includes=includes,
|
2015-10-16 18:44:21 +00:00
|
|
|
**kargs)
|
2015-10-20 00:19:49 +00:00
|
|
|
|
|
|
|
|
2015-10-20 23:02:58 +00:00
|
|
|
def internal_copied_filegroup(
|
2015-10-20 00:19:49 +00:00
|
|
|
name,
|
|
|
|
srcs,
|
|
|
|
include,
|
|
|
|
**kargs):
|
2015-10-20 00:56:27 +00:00
|
|
|
"""Bazel rule to fix sources file to workaround with python path issues.
|
|
|
|
|
|
|
|
Args:
|
2015-10-20 23:02:58 +00:00
|
|
|
name: the name of the internal_copied_filegroup rule, which will be the
|
|
|
|
name of the generated filegroup.
|
2015-10-20 00:56:27 +00:00
|
|
|
srcs: the source files to be copied.
|
|
|
|
include: the expected import root of the source.
|
|
|
|
**kargs: extra arguments that will be passed into the filegroup.
|
|
|
|
"""
|
2015-10-20 00:19:49 +00:00
|
|
|
outs = [_RelativeOutputPath(s, include) for s in srcs]
|
|
|
|
|
|
|
|
native.genrule(
|
|
|
|
name=name+"_genrule",
|
|
|
|
srcs=srcs,
|
|
|
|
outs=outs,
|
2015-10-21 17:48:33 +00:00
|
|
|
cmd=" && ".join(["cp $(location %s) $(location %s)" %
|
|
|
|
(s, _RelativeOutputPath(s, include))
|
|
|
|
for s in srcs]))
|
2015-10-20 00:19:49 +00:00
|
|
|
|
|
|
|
native.filegroup(
|
|
|
|
name=name,
|
|
|
|
srcs=outs,
|
|
|
|
**kargs)
|
|
|
|
|
|
|
|
|
|
|
|
def py_proto_library(
|
|
|
|
name,
|
|
|
|
srcs=[],
|
|
|
|
deps=[],
|
|
|
|
py_libs=[],
|
|
|
|
py_extra_srcs=[],
|
|
|
|
include=None,
|
2015-10-27 22:11:38 +00:00
|
|
|
default_runtime="//google/protobuf:protobuf_python",
|
2015-10-20 22:00:13 +00:00
|
|
|
protoc="//google/protobuf:protoc",
|
2015-10-20 00:19:49 +00:00
|
|
|
**kargs):
|
2015-10-20 00:56:27 +00:00
|
|
|
"""Bazel rule to create a Python protobuf library from proto source files
|
|
|
|
|
2015-11-02 20:24:32 +00:00
|
|
|
NOTE: the rule is only an internal workaround to generate protos. The
|
|
|
|
interface may change and the rule may be removed when bazel has introduced
|
|
|
|
the native rule.
|
|
|
|
|
2015-10-20 00:56:27 +00:00
|
|
|
Args:
|
|
|
|
name: the name of the py_proto_library.
|
|
|
|
srcs: the .proto files of the py_proto_library.
|
|
|
|
deps: a list of dependency labels; must be py_proto_library.
|
|
|
|
py_libs: a list of other py_library targets depended by the generated
|
|
|
|
py_library.
|
|
|
|
py_extra_srcs: extra source files that will be added to the output
|
|
|
|
py_library. This attribute is used for internal bootstrapping.
|
|
|
|
include: a string indicating the include path of the .proto files.
|
2015-10-27 22:11:38 +00:00
|
|
|
default_runtime: the implicitly default runtime which will be depended on by
|
|
|
|
the generated py_library target.
|
2015-10-20 00:56:27 +00:00
|
|
|
protoc: the label of the protocol compiler to generate the sources.
|
|
|
|
**kargs: other keyword arguments that are passed to cc_library.
|
|
|
|
|
|
|
|
"""
|
2015-10-20 00:19:49 +00:00
|
|
|
outs = _PyOuts(srcs)
|
2015-10-20 22:18:20 +00:00
|
|
|
|
|
|
|
includes = []
|
|
|
|
if include != None:
|
|
|
|
includes = [include]
|
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
_proto_gen(
|
|
|
|
name=name + "_genproto",
|
|
|
|
srcs=srcs,
|
|
|
|
deps=[s + "_genproto" for s in deps],
|
2015-10-20 22:18:20 +00:00
|
|
|
includes=includes,
|
2015-10-20 00:19:49 +00:00
|
|
|
protoc=protoc,
|
|
|
|
gen_py=1,
|
|
|
|
outs=outs,
|
2015-12-05 01:44:58 +00:00
|
|
|
visibility=["//visibility:public"],
|
2015-10-20 00:19:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if include != None:
|
2015-10-20 00:56:27 +00:00
|
|
|
# Copy the output files to the desired location to make the import work.
|
2015-10-20 23:02:58 +00:00
|
|
|
internal_copied_filegroup_name=name + "_internal_copied_filegroup"
|
|
|
|
internal_copied_filegroup(
|
|
|
|
name=internal_copied_filegroup_name,
|
2015-10-20 00:19:49 +00:00
|
|
|
srcs=outs,
|
|
|
|
include=include)
|
2015-10-20 23:02:58 +00:00
|
|
|
outs=[internal_copied_filegroup_name]
|
2015-10-20 00:19:49 +00:00
|
|
|
|
2015-10-27 22:11:38 +00:00
|
|
|
if default_runtime and not default_runtime in py_libs + deps:
|
|
|
|
py_libs += [default_runtime]
|
|
|
|
|
2015-10-20 00:19:49 +00:00
|
|
|
native.py_library(
|
|
|
|
name=name,
|
2015-10-20 22:30:44 +00:00
|
|
|
srcs=outs+py_extra_srcs,
|
|
|
|
deps=py_libs+deps,
|
2015-10-20 00:19:49 +00:00
|
|
|
**kargs)
|
|
|
|
|
|
|
|
def internal_protobuf_py_tests(
|
|
|
|
name,
|
|
|
|
modules=[],
|
|
|
|
**kargs):
|
2015-10-20 00:56:27 +00:00
|
|
|
"""Bazel rules to create batch tests for protobuf internal.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name: the name of the rule.
|
|
|
|
modules: a list of modules for tests. The macro will create a py_test for
|
|
|
|
each of the parameter with the source "google/protobuf/%s.py"
|
|
|
|
kargs: extra parameters that will be passed into the py_test.
|
|
|
|
|
|
|
|
"""
|
2015-10-20 00:19:49 +00:00
|
|
|
for m in modules:
|
2015-10-20 00:56:27 +00:00
|
|
|
s = _RelativeOutputPath(
|
|
|
|
"python/google/protobuf/internal/%s.py" % m, "python")
|
2015-10-20 00:19:49 +00:00
|
|
|
native.py_test(
|
|
|
|
name="py_%s" % m,
|
2015-10-20 00:56:27 +00:00
|
|
|
srcs=[s],
|
|
|
|
main=s,
|
2015-10-20 00:19:49 +00:00
|
|
|
**kargs)
|