mirror of https://github.com/grpc/grpc.git
This reverts commit e970b8fa03
.
pull/27806/head
parent
b85ca5d5ce
commit
763e5b40f3
12 changed files with 147 additions and 290 deletions
@ -0,0 +1,37 @@ |
|||||||
|
# Copyright 2019 the gRPC authors. |
||||||
|
# |
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
# you may not use this file except in compliance with the License. |
||||||
|
# You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
"""A dummy plugin for testing""" |
||||||
|
|
||||||
|
import sys |
||||||
|
|
||||||
|
from google.protobuf.compiler.plugin_pb2 import CodeGeneratorRequest |
||||||
|
from google.protobuf.compiler.plugin_pb2 import CodeGeneratorResponse |
||||||
|
|
||||||
|
|
||||||
|
def main(input_file=sys.stdin, output_file=sys.stdout): |
||||||
|
request = CodeGeneratorRequest.FromString(input_file.buffer.read()) |
||||||
|
answer = [] |
||||||
|
for fname in request.file_to_generate: |
||||||
|
answer.append(CodeGeneratorResponse.File( |
||||||
|
name=fname.replace('.proto', '_pb2.py'), |
||||||
|
insertion_point='module_scope', |
||||||
|
content="# Hello {}, I'm a dummy plugin!".format(fname), |
||||||
|
)) |
||||||
|
|
||||||
|
cgr = CodeGeneratorResponse(file=answer) |
||||||
|
output_file.buffer.write(cgr.SerializeToString()) |
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__': |
||||||
|
main() |
@ -1,18 +0,0 @@ |
|||||||
# Copyright 2021 the gRPC authors. |
|
||||||
# |
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
# you may not use this file except in compliance with the License. |
|
||||||
# You may obtain a copy of the License at |
|
||||||
# |
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
# |
|
||||||
# Unless required by applicable law or agreed to in writing, software |
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
# See the License for the specific language governing permissions and |
|
||||||
# limitations under the License. |
|
||||||
"""A trivial executable that imports Protobuf generated code where the |
|
||||||
proto_library and py_proto_library are in different Bazel packages. |
|
||||||
""" |
|
||||||
|
|
||||||
import in_subpackage.subpackage_pb2 |
|
@ -1,18 +0,0 @@ |
|||||||
# Copyright 2021 the gRPC authors. |
|
||||||
# |
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
# you may not use this file except in compliance with the License. |
|
||||||
# You may obtain a copy of the License at |
|
||||||
# |
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
# |
|
||||||
# Unless required by applicable law or agreed to in writing, software |
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
# See the License for the specific language governing permissions and |
|
||||||
# limitations under the License. |
|
||||||
"""A trivial executable that imports Protobuf generated code where the |
|
||||||
proto_library and py_proto_library are in different Bazel packages. |
|
||||||
""" |
|
||||||
|
|
||||||
import subpackage_pb2 |
|
@ -1,27 +0,0 @@ |
|||||||
# gRPC Bazel BUILD file. |
|
||||||
# |
|
||||||
# Copyright 2021 The gRPC authors. |
|
||||||
# |
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
# you may not use this file except in compliance with the License. |
|
||||||
# You may obtain a copy of the License at |
|
||||||
# |
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
# |
|
||||||
# Unless required by applicable law or agreed to in writing, software |
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
# See the License for the specific language governing permissions and |
|
||||||
# limitations under the License. |
|
||||||
|
|
||||||
load("@rules_proto//proto:defs.bzl", "proto_library") |
|
||||||
|
|
||||||
package( |
|
||||||
default_testonly = 1, |
|
||||||
default_visibility = ["//:__subpackages__"], |
|
||||||
) |
|
||||||
|
|
||||||
proto_library( |
|
||||||
name = "subpackage_proto", |
|
||||||
srcs = ["subpackage.proto"], |
|
||||||
) |
|
@ -1,27 +0,0 @@ |
|||||||
// Copyright 2021 The gRPC authors. |
|
||||||
// |
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
// you may not use this file except in compliance with the License. |
|
||||||
// You may obtain a copy of the License at |
|
||||||
// |
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
// |
|
||||||
// Unless required by applicable law or agreed to in writing, software |
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
// See the License for the specific language governing permissions and |
|
||||||
// limitations under the License. |
|
||||||
|
|
||||||
syntax = "proto3"; |
|
||||||
|
|
||||||
option java_multiple_files = true; |
|
||||||
option java_package = "io.grpc.examples.subpackage"; |
|
||||||
option java_outer_classname = "SubpackageProto"; |
|
||||||
option objc_class_prefix = "SP"; |
|
||||||
|
|
||||||
package subpackage; |
|
||||||
|
|
||||||
message Subpackaged { |
|
||||||
string name = 1; |
|
||||||
} |
|
||||||
|
|
@ -1,17 +0,0 @@ |
|||||||
# Copyright 2021 the gRPC authors. |
|
||||||
# |
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
# you may not use this file except in compliance with the License. |
|
||||||
# You may obtain a copy of the License at |
|
||||||
# |
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
# |
|
||||||
# Unless required by applicable law or agreed to in writing, software |
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
# See the License for the specific language governing permissions and |
|
||||||
# limitations under the License. |
|
||||||
"""A trivial executable that imports helloworld_pb2, but NOT its transitive |
|
||||||
dependencies.""" |
|
||||||
|
|
||||||
import helloworld_pb2 |
|
Loading…
Reference in new issue