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
c429d783
Commit
c429d783
authored
8 years ago
by
Alexander Polcyn
Browse files
Options
Downloads
Patches
Plain Diff
change ruby proto plugin to copy package name conversion from protoc
parent
d69c0d34
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/compiler/ruby_generator.cc
+35
-1
35 additions, 1 deletion
src/compiler/ruby_generator.cc
with
35 additions
and
1 deletion
src/compiler/ruby_generator.cc
+
35
−
1
View file @
c429d783
...
@@ -124,6 +124,40 @@ grpc::string SnakeCaseToCamelCase(grpc::string input) {
...
@@ -124,6 +124,40 @@ grpc::string SnakeCaseToCamelCase(grpc::string input) {
return
output
;
return
output
;
}
}
// The following functions are copied directly from the source for the protoc ruby generator
// to ensure compatibility ('int i' changed to 'uint i' is the only change).
// See https://github.com/google/protobuf/blob/master/src/google/protobuf/compiler/ruby/ruby_generator.cc#L250
// TODO: keep up to date with protoc code generation, though this behavior isn't expected to change
bool
IsLower
(
char
ch
)
{
return
ch
>=
'a'
&&
ch
<=
'z'
;
}
char
ToUpper
(
char
ch
)
{
return
IsLower
(
ch
)
?
(
ch
-
'a'
+
'A'
)
:
ch
;
}
// Package names in protobuf are snake_case by convention, but Ruby module
// names must be PascalCased.
//
// foo_bar_baz -> FooBarBaz
std
::
string
PackageToModule
(
const
std
::
string
&
name
)
{
bool
next_upper
=
true
;
std
::
string
result
;
result
.
reserve
(
name
.
size
());
for
(
uint
i
=
0
;
i
<
name
.
size
();
i
++
)
{
if
(
name
[
i
]
==
'_'
)
{
next_upper
=
true
;
}
else
{
if
(
next_upper
)
{
result
.
push_back
(
ToUpper
(
name
[
i
]));
}
else
{
result
.
push_back
(
name
[
i
]);
}
next_upper
=
false
;
}
}
return
result
;
}
// end copying of protoc generator for ruby code
grpc
::
string
GetServices
(
const
FileDescriptor
*
file
)
{
grpc
::
string
GetServices
(
const
FileDescriptor
*
file
)
{
grpc
::
string
output
;
grpc
::
string
output
;
...
@@ -166,7 +200,7 @@ grpc::string GetServices(const FileDescriptor *file) {
...
@@ -166,7 +200,7 @@ grpc::string GetServices(const FileDescriptor *file) {
std
::
vector
<
grpc
::
string
>
modules
=
Split
(
file
->
package
(),
'.'
);
std
::
vector
<
grpc
::
string
>
modules
=
Split
(
file
->
package
(),
'.'
);
for
(
size_t
i
=
0
;
i
<
modules
.
size
();
++
i
)
{
for
(
size_t
i
=
0
;
i
<
modules
.
size
();
++
i
)
{
std
::
map
<
grpc
::
string
,
grpc
::
string
>
module_vars
=
std
::
map
<
grpc
::
string
,
grpc
::
string
>
module_vars
=
ListToDict
({
"module.name"
,
SnakeCaseToCamelCas
e
(
modules
[
i
]),
});
ListToDict
({
"module.name"
,
PackageToModul
e
(
modules
[
i
]),
});
out
.
Print
(
module_vars
,
"module $module.name$
\n
"
);
out
.
Print
(
module_vars
,
"module $module.name$
\n
"
);
out
.
Indent
();
out
.
Indent
();
}
}
...
...
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