作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 protobuf 并且我正在从以下 proto 文件生成 JAVA 类。
syntax = "proto3";
enum Greeting {
NONE = 0;
MR = 1;
MRS = 2;
MISS = 3;
}
message Hello {
Greeting greeting = 1;
string name = 2;
}
message Bye {
string name = 1;
}
option java_multiple_files = true;
public class Test {
PluginProtos.CodeGeneratorResponse.getDefaultInstance();
/* Code to get generated files from java_out and use the insertion points */
codeGeneratorResponse.writeTo(System.out);
}
protoc --java_out=./classes --plugin=protoc-gen-demo=my-plugin --demo_out=. example.proto
Test.java
上main 方法我不知道如何访问由选项
--java_out
创建的文件这样我就可以使用他们的插入点。目前
CodeGeneratorResponse
默认实例为空(无文件)。
CodeGeneratorResponse
来自 --java_out 以便我可以向生成的类添加更多代码?
最佳答案
我最近也在为此苦苦挣扎,无法找到好的答案。看了CodeGeneratorResponse里面的评论,我终于明白了。留言一会儿。
起初让我失望的是,我认为插件是一个管道,其中一个的输出馈入下一个。然而,每个插件获得完全相同的输入 (解析后的 .proto 文件通过 CodeGeneratorRequest
消息表示),并且所有从插件(包括内置插件)生成的代码都合并到输出文件中。但是,插件可能会修改先前插件的输出,这是插入点的设计目的。
具体到您的问题,您将添加 file
回复 name
字段设置为生成的 Java 文件的名称,insertion_point
字段设置为要添加代码的插入点的名称,以及 content
字段设置为您要在该点插入的代码。
我找到了 this article有助于创建一个简单的插件(在这种情况下是在 python 中)。作为一个简单的测试,我修改了generate_code
该文章中的函数如下所示:
def generate_code(request, response):
for proto_file in request.proto_file:
f = response.file.add()
f.name = "Test.java"
f.insertion_point = "outer_class_scope"
f.content = "// Inserting a comment as a test"
然后我用插件运行 protoc:
$ cat test.proto
syntax = "proto3";
message MyMsg {
int32 num = 1;
}
$ protoc --plugin=protoc-gen-sample=sample_proto_gen.py --java_out=. --sample_out=. test.proto
$ tail -n3 Test.java
// Inserting a comment as a test
// @@protoc_insertion_point(outer_class_scope)
}
你的插件只需要是一些可执行文件,它读取
CodeGeneratorRequest
来自标准输入的消息并写入
CodeGeneratorResponse
消息到标准输出,所以当然可以用 Java 编写。我只是选择了 python,因为我通常更习惯它并找到了这个简单的例子。
关于protocol-buffers - 如何将我自己的代码从 proto 文件添加到 JAVA 生成的类中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50806894/
我是一名优秀的程序员,十分优秀!