Skip to content
Snippets Groups Projects
Commit 1a7918bc authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Generate separate files until either of GeneratorContext::OpenForAppend/Insert work.

parent 472f0b0a
No related branches found
No related tags found
No related merge requests found
...@@ -39,44 +39,59 @@ ...@@ -39,44 +39,59 @@
#include "src/compiler/objective_c_generator.h" #include "src/compiler/objective_c_generator.h"
#include "src/compiler/objective_c_generator_helpers.h" #include "src/compiler/objective_c_generator_helpers.h"
using ::grpc::string;
class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator {
public: public:
ObjectiveCGrpcGenerator() {} ObjectiveCGrpcGenerator() {}
virtual ~ObjectiveCGrpcGenerator() {} virtual ~ObjectiveCGrpcGenerator() {}
virtual bool Generate(const grpc::protobuf::FileDescriptor *file, virtual bool Generate(const grpc::protobuf::FileDescriptor *file,
const grpc::string &parameter, const string &parameter,
grpc::protobuf::compiler::GeneratorContext *context, grpc::protobuf::compiler::GeneratorContext *context,
grpc::string *error) const { string *error) const {
if (file->service_count() == 0) { if (file->service_count() == 0) {
// No services. Do nothing. // No services. Do nothing.
return true; return true;
} }
grpc::string file_name = grpc_generator::FileNameInUpperCamel(file); string file_name = grpc_generator::FileNameInUpperCamel(file);
grpc::string prefix = "RMT"; // TODO string prefix = "RMT"; // TODO
for (int i = 0; i < file->service_count(); i++) { for (int i = 0; i < file->service_count(); i++) {
const grpc::protobuf::ServiceDescriptor *service = file->service(i); const grpc::protobuf::ServiceDescriptor *service = file->service(i);
// Generate .pb.h {
// Generate .pbrpc.h
string imports = string("#import \"") + file_name + ".pbobjc.h\"\n"
"#import <gRPC/ProtoService.h>\n";
//Append(context, file_name + ".pbobjc.h",/* "imports",*/ imports);
Insert(context, file_name + ".pbobjc.h", "imports", string declarations =
"#import <gRPC/ProtoService.h>\n"); grpc_objective_c_generator::GetHeader(service, prefix);
//Append(context, file_name + ".pbobjc.h",/* "global_scope",*/
// declarations);
Insert(context, file_name + ".pbobjc.h", "global_scope", Write(context, file_name + ".pbrpc.h", imports + declarations);
grpc_objective_c_generator::GetHeader(service, prefix)); }
// Generate .pb.m {
// Generate .pbrpc.m
Insert(context, file_name + ".pbobjc.m", "imports", string imports = string("#import \"") + file_name + ".pbrpc.h\"\n"
"#import <gRPC/GRXWriteable.h>\n" "#import <gRPC/GRXWriteable.h>\n"
"#import <gRPC/GRXWriter+Immediate.h>\n" "#import <gRPC/GRXWriter+Immediate.h>\n"
"#import <gRPC/ProtoRPC.h>\n"); "#import <gRPC/ProtoRPC.h>\n";
//Append(context, file_name + ".pbobjc.m",/* "imports",*/ imports);
Insert(context, file_name + ".pbobjc.m", "global_scope",
grpc_objective_c_generator::GetSource(service, prefix)); string definitions =
grpc_objective_c_generator::GetSource(service, prefix);
//Append(context, file_name + ".pbobjc.m",/* "global_scope",*/
// definitions);
Write(context, file_name + ".pbrpc.m", imports + definitions);
}
} }
return true; return true;
...@@ -85,13 +100,31 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { ...@@ -85,13 +100,31 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator {
private: private:
// Insert the given code into the given file at the given insertion point. // Insert the given code into the given file at the given insertion point.
void Insert(grpc::protobuf::compiler::GeneratorContext *context, void Insert(grpc::protobuf::compiler::GeneratorContext *context,
const grpc::string &filename, const grpc::string &insertion_point, const string &filename, const string &insertion_point,
const grpc::string &code) const { const string &code) const {
std::unique_ptr<grpc::protobuf::io::ZeroCopyOutputStream> output( std::unique_ptr<grpc::protobuf::io::ZeroCopyOutputStream> output(
context->OpenForInsert(filename, insertion_point)); context->OpenForInsert(filename, insertion_point));
grpc::protobuf::io::CodedOutputStream coded_out(output.get()); grpc::protobuf::io::CodedOutputStream coded_out(output.get());
coded_out.WriteRaw(code.data(), code.size()); coded_out.WriteRaw(code.data(), code.size());
} }
// Append the given code into the given file.
void Append(grpc::protobuf::compiler::GeneratorContext *context,
const string &filename, const string &code) const {
std::unique_ptr<grpc::protobuf::io::ZeroCopyOutputStream> output(
context->OpenForAppend(filename));
grpc::protobuf::io::CodedOutputStream coded_out(output.get());
coded_out.WriteRaw(code.data(), code.size());
}
// Write the given code into the given file.
void Write(grpc::protobuf::compiler::GeneratorContext *context,
const string &filename, const string &code) const {
std::unique_ptr<grpc::protobuf::io::ZeroCopyOutputStream> output(
context->Open(filename));
grpc::protobuf::io::CodedOutputStream coded_out(output.get());
coded_out.WriteRaw(code.data(), code.size());
}
}; };
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment