Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
1a7918bc
Commit
1a7918bc
authored
9 years ago
by
Jorge Canizales
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/compiler/objective_c_plugin.cc
+50
-17
50 additions, 17 deletions
src/compiler/objective_c_plugin.cc
with
50 additions
and
17 deletions
src/compiler/objective_c_plugin.cc
+
50
−
17
View file @
1a7918bc
...
@@ -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
+
".pb
obj
c.h"
,
"global_scope"
,
Write
(
context
,
file_name
+
".pb
rp
c.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
[])
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment