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 | |
Fahrzin Hemmati | 800f8d6 | 2017-11-30 22:27:48 -0800 | [diff] [blame] | 85 | 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 Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 93 | |
Fahrzin Hemmati | b3c2ec7 | 2018-03-14 17:49:04 -0700 | [diff] [blame^] | 94 | for src in srcs: |
Fahrzin Hemmati | 800f8d6 | 2017-11-30 22:27:48 -0800 | [diff] [blame] | 95 | args = [] |
Fahrzin Hemmati | b3c2ec7 | 2018-03-14 17:49:04 -0700 | [diff] [blame^] | 96 | src_name = src.basename[:-len(".proto")] |
| 97 | outs = [out for out in ctx.outputs.outs if src_name in out.basename] |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 98 | |
Fahrzin Hemmati | a6501e4 | 2018-03-14 15:23:23 -0700 | [diff] [blame] | 99 | in_gen_dir = src.root.path == gen_dir.rstrip('/') |
Fahrzin Hemmati | 800f8d6 | 2017-11-30 22:27:48 -0800 | [diff] [blame] | 100 | 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 Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 105 | |
Fahrzin Hemmati | 800f8d6 | 2017-11-30 22:27:48 -0800 | [diff] [blame] | 106 | 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 Hemmati | b3c2ec7 | 2018-03-14 17:49:04 -0700 | [diff] [blame^] | 131 | 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 Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 153 | |
| 154 | return struct( |
| 155 | proto=struct( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 156 | srcs=srcs, |
| 157 | import_flags=import_flags, |
| 158 | deps=deps, |
| 159 | ), |
| 160 | ) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 161 | |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 162 | proto_gen = rule( |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 163 | attrs = { |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 164 | "srcs": attr.label_list(allow_files = True), |
| 165 | "deps": attr.label_list(providers = ["proto"]), |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 166 | "includes": attr.string_list(), |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 167 | "protoc": attr.label( |
Vladimir Moskva | a86e6d8 | 2016-09-09 13:21:35 +0200 | [diff] [blame] | 168 | cfg = "host", |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 169 | executable = True, |
| 170 | single_file = True, |
| 171 | mandatory = True, |
| 172 | ), |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 173 | "plugin": attr.label( |
Vladimir Moskva | a86e6d8 | 2016-09-09 13:21:35 +0200 | [diff] [blame] | 174 | cfg = "host", |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 175 | allow_files = True, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 176 | executable = True, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 177 | ), |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 178 | "plugin_language": attr.string(), |
| 179 | "plugin_options": attr.string_list(), |
Jisi Liu | ee8131a | 2015-10-14 17:20:05 -0700 | [diff] [blame] | 180 | "gen_cc": attr.bool(), |
| 181 | "gen_py": attr.bool(), |
| 182 | "outs": attr.output_list(), |
| 183 | }, |
| 184 | output_to_genfiles = True, |
Jisi Liu | 9c7d9c0 | 2015-10-15 10:51:32 -0700 | [diff] [blame] | 185 | implementation = _proto_gen_impl, |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 186 | ) |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 187 | """Generates codes from Protocol Buffers definitions. |
| 188 | |
| 189 | This rule helps you to implement Skylark macros specific to the target |
| 190 | language. You should prefer more specific `cc_proto_library `, |
| 191 | `py_proto_library` and others unless you are adding such wrapper macros. |
| 192 | |
| 193 | Args: |
| 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 Chodorow | 4e7ecde | 2017-01-25 14:10:56 -0500 | [diff] [blame] | 203 | 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] | 204 | 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 Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 207 | |
| 208 | def cc_proto_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 209 | name, |
| 210 | srcs=[], |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 211 | deps=[], |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 212 | cc_libs=[], |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 213 | include=None, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 214 | protoc="@com_google_protobuf//:protoc", |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 215 | internal_bootstrap_hack=False, |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 216 | use_grpc_plugin=False, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 217 | default_runtime="@com_google_protobuf//:protobuf", |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 218 | **kargs): |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 219 | """Bazel rule to create a C++ protobuf library from proto source files |
| 220 | |
Jisi Liu | d4bef7d | 2015-11-02 12:24:32 -0800 | [diff] [blame] | 221 | 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 Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 225 | 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 Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 237 | use_grpc_plugin: a flag to indicate whether to call the grpc C++ plugin |
| 238 | when processing the proto files. |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 239 | default_runtime: the implicitly default runtime which will be depended on by |
| 240 | the generated cc_library target. |
Jisi Liu | 3101e73 | 2015-10-16 12:46:26 -0700 | [diff] [blame] | 241 | **kargs: other keyword arguments that are passed to cc_library. |
| 242 | |
| 243 | """ |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 244 | |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 245 | includes = [] |
| 246 | if include != None: |
| 247 | includes = [include] |
| 248 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 249 | 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 Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 252 | proto_gen( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 253 | name=name + "_genproto", |
| 254 | srcs=srcs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 255 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 256 | includes=includes, |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 257 | protoc=protoc, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 258 | visibility=["//visibility:public"], |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 259 | ) |
| 260 | # An empty cc_library to make rule dependency consistent. |
| 261 | native.cc_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 262 | name=name, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 263 | **kargs) |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 264 | return |
| 265 | |
Manjunath Kudlur | f0966a7 | 2016-02-22 14:30:43 -0800 | [diff] [blame] | 266 | grpc_cpp_plugin = None |
| 267 | if use_grpc_plugin: |
| 268 | grpc_cpp_plugin = "//external:grpc_cpp_plugin" |
| 269 | |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 270 | gen_srcs = _CcSrcs(srcs, use_grpc_plugin) |
| 271 | gen_hdrs = _CcHdrs(srcs, use_grpc_plugin) |
| 272 | outs = gen_srcs + gen_hdrs |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 273 | |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 274 | proto_gen( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 275 | name=name + "_genproto", |
| 276 | srcs=srcs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 277 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 278 | includes=includes, |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 279 | protoc=protoc, |
Yuki Yugui Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 280 | plugin=grpc_cpp_plugin, |
| 281 | plugin_language="grpc", |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 282 | gen_cc=1, |
| 283 | outs=outs, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 284 | visibility=["//visibility:public"], |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 285 | ) |
| 286 | |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 287 | if default_runtime and not default_runtime in cc_libs: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 288 | cc_libs = cc_libs + [default_runtime] |
Manjunath Kudlur | f5c7363 | 2016-02-25 08:50:50 -0800 | [diff] [blame] | 289 | if use_grpc_plugin: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 290 | cc_libs = cc_libs + ["//external:grpc_lib"] |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 291 | |
Jisi Liu | 39362b3 | 2015-10-14 17:12:11 -0700 | [diff] [blame] | 292 | native.cc_library( |
Jisi Liu | 125a91b | 2015-10-14 17:37:39 -0700 | [diff] [blame] | 293 | name=name, |
Andreas Bergmeier | bbeb983 | 2016-08-15 16:57:30 +0200 | [diff] [blame] | 294 | srcs=gen_srcs, |
| 295 | hdrs=gen_hdrs, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 296 | deps=cc_libs + deps, |
Jisi Liu | 6dac082 | 2015-10-19 14:41:00 -0700 | [diff] [blame] | 297 | includes=includes, |
Jisi Liu | d8701b5 | 2015-10-16 11:44:21 -0700 | [diff] [blame] | 298 | **kargs) |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 299 | |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 300 | def 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 |
cgrushko | 6fffd4a | 2017-02-08 12:19:40 -0500 | [diff] [blame] | 307 | pkg = PACKAGE_NAME + "/" if PACKAGE_NAME else "" |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 308 | if root == "": |
cgrushko | 6fffd4a | 2017-02-08 12:19:40 -0500 | [diff] [blame] | 309 | include = " -I%ssrc " % pkg |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 310 | else: |
cgrushko | 6fffd4a | 2017-02-08 12:19:40 -0500 | [diff] [blame] | 311 | include = " -I%s/%ssrc " % (root, pkg) |
Steven Parkes | ea18866 | 2016-02-25 07:53:19 -0800 | [diff] [blame] | 312 | 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. Chen | 02cd45c | 2016-05-20 16:49:04 -0700 | [diff] [blame] | 324 | def 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 Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 353 | def py_proto_library( |
| 354 | name, |
| 355 | srcs=[], |
| 356 | deps=[], |
| 357 | py_libs=[], |
| 358 | py_extra_srcs=[], |
| 359 | include=None, |
James O'Kane | 950f5e4 | 2018-03-08 22:30:44 -0800 | [diff] [blame] | 360 | default_runtime="@com_google_protobuf//:protobuf_python", |
| 361 | protoc="@com_google_protobuf//:protoc", |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 362 | use_grpc_plugin=False, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 363 | **kargs): |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 364 | """Bazel rule to create a Python protobuf library from proto source files |
| 365 | |
Jisi Liu | d4bef7d | 2015-11-02 12:24:32 -0800 | [diff] [blame] | 366 | 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 Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 370 | 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 Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 379 | default_runtime: the implicitly default runtime which will be depended on by |
| 380 | the generated py_library target. |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 381 | protoc: the label of the protocol compiler to generate the sources. |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 382 | use_grpc_plugin: a flag to indicate whether to call the Python C++ plugin |
| 383 | when processing the proto files. |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 384 | **kargs: other keyword arguments that are passed to cc_library. |
| 385 | |
| 386 | """ |
Mateusz Matejczyk | 294b575 | 2018-03-11 17:48:10 -0400 | [diff] [blame] | 387 | outs = _PyOuts(srcs, use_grpc_plugin) |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 388 | |
| 389 | includes = [] |
| 390 | if include != None: |
| 391 | includes = [include] |
| 392 | |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 393 | 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 Sonoda | 5977fb0 | 2016-06-01 16:23:15 +0900 | [diff] [blame] | 400 | proto_gen( |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 401 | name=name + "_genproto", |
| 402 | srcs=srcs, |
| 403 | deps=[s + "_genproto" for s in deps], |
Jisi Liu | 53a56be | 2015-10-20 15:18:20 -0700 | [diff] [blame] | 404 | includes=includes, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 405 | protoc=protoc, |
| 406 | gen_py=1, |
| 407 | outs=outs, |
Martin Maly | 8e0c9a3 | 2015-12-04 17:44:58 -0800 | [diff] [blame] | 408 | visibility=["//visibility:public"], |
Wiktor Tomczak | 0fa31b2 | 2016-11-22 20:18:46 +0100 | [diff] [blame] | 409 | plugin=grpc_python_plugin, |
| 410 | plugin_language="grpc" |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 411 | ) |
| 412 | |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 413 | if default_runtime and not default_runtime in py_libs + deps: |
Vladimir Moskva | 4fc9304 | 2017-08-07 13:33:03 +0200 | [diff] [blame] | 414 | py_libs = py_libs + [default_runtime] |
Jisi Liu | be92ffb | 2015-10-27 15:11:38 -0700 | [diff] [blame] | 415 | |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 416 | native.py_library( |
| 417 | name=name, |
Jisi Liu | a33fa8e | 2015-10-20 15:30:44 -0700 | [diff] [blame] | 418 | srcs=outs+py_extra_srcs, |
| 419 | deps=py_libs+deps, |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 420 | imports=includes, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 421 | **kargs) |
| 422 | |
| 423 | def internal_protobuf_py_tests( |
| 424 | name, |
| 425 | modules=[], |
| 426 | **kargs): |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 427 | """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 Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 436 | for m in modules: |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 437 | s = "python/google/protobuf/internal/%s.py" % m |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 438 | native.py_test( |
| 439 | name="py_%s" % m, |
Jisi Liu | 7b948cc | 2015-10-19 17:56:27 -0700 | [diff] [blame] | 440 | srcs=[s], |
| 441 | main=s, |
Jisi Liu | 993fb70 | 2015-10-19 17:19:49 -0700 | [diff] [blame] | 442 | **kargs) |
Fahrzin Hemmati | 35119e3 | 2017-11-28 14:24:53 -0800 | [diff] [blame] | 443 | |
| 444 | |
| 445 | def 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") |