blob: 7cfea9d96d759e896e6b4c44fbf093d1fa52403d [file] [log] [blame]
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +01001/*
2 *
3 * Copyright 2015, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +010034#ifndef GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H
35#define GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010036
37#include <map>
yang-g9efec8e2016-04-14 14:34:55 -070038#include <sstream>
39#include <string>
40#include <vector>
Nicolas Nobled446eb82015-03-12 17:22:33 -070041
42#include "src/compiler/config.h"
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010043
44namespace grpc_generator {
45
Nicolas Nobled446eb82015-03-12 17:22:33 -070046inline bool StripSuffix(grpc::string *filename, const grpc::string &suffix) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010047 if (filename->length() >= suffix.length()) {
48 size_t suffix_pos = filename->length() - suffix.length();
Nicolas Nobled446eb82015-03-12 17:22:33 -070049 if (filename->compare(suffix_pos, grpc::string::npos, suffix) == 0) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010050 filename->resize(filename->size() - suffix.size());
51 return true;
52 }
53 }
54
55 return false;
56}
57
Nicolas Nobled446eb82015-03-12 17:22:33 -070058inline grpc::string StripProto(grpc::string filename) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010059 if (!StripSuffix(&filename, ".protodevel")) {
60 StripSuffix(&filename, ".proto");
61 }
62 return filename;
63}
64
Nicolas Nobled446eb82015-03-12 17:22:33 -070065inline grpc::string StringReplace(grpc::string str, const grpc::string &from,
Jan Tattermusch41f9f332015-05-20 08:52:00 -070066 const grpc::string &to, bool replace_all) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010067 size_t pos = 0;
68
Jan Tattermusch41f9f332015-05-20 08:52:00 -070069 do {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010070 pos = str.find(from, pos);
Nicolas Nobled446eb82015-03-12 17:22:33 -070071 if (pos == grpc::string::npos) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010072 break;
73 }
74 str.replace(pos, from.length(), to);
75 pos += to.length();
Jan Tattermusch41f9f332015-05-20 08:52:00 -070076 } while(replace_all);
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010077
78 return str;
79}
80
Jan Tattermusch41f9f332015-05-20 08:52:00 -070081inline grpc::string StringReplace(grpc::string str, const grpc::string &from,
82 const grpc::string &to) {
83 return StringReplace(str, from, to, true);
84}
85
Nicolas "Pixel" Noble375a82b2015-03-24 02:33:18 +010086inline std::vector<grpc::string> tokenize(const grpc::string &input,
87 const grpc::string &delimiters) {
88 std::vector<grpc::string> tokens;
89 size_t pos, last_pos = 0;
90
91 for (;;) {
92 bool done = false;
93 pos = input.find_first_of(delimiters, last_pos);
94 if (pos == grpc::string::npos) {
95 done = true;
96 pos = input.length();
97 }
98
99 tokens.push_back(input.substr(last_pos, pos - last_pos));
100 if (done) return tokens;
101
102 last_pos = pos + 1;
103 }
104}
105
murgatroid99ac0002a2015-04-07 12:49:14 -0700106inline grpc::string CapitalizeFirstLetter(grpc::string s) {
murgatroid99d3efd0a2015-04-07 11:40:29 -0700107 if (s.empty()) {
108 return s;
109 }
110 s[0] = ::toupper(s[0]);
111 return s;
112}
113
Jorge Canizales9a065d22015-04-27 00:05:01 -0700114inline grpc::string LowercaseFirstLetter(grpc::string s) {
115 if (s.empty()) {
116 return s;
117 }
118 s[0] = ::tolower(s[0]);
119 return s;
120}
121
murgatroid99d3efd0a2015-04-07 11:40:29 -0700122inline grpc::string LowerUnderscoreToUpperCamel(grpc::string str) {
123 std::vector<grpc::string> tokens = tokenize(str, "_");
124 grpc::string result = "";
125 for (unsigned int i = 0; i < tokens.size(); i++) {
126 result += CapitalizeFirstLetter(tokens[i]);
127 }
128 return result;
129}
130
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700131inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file,
132 bool include_package_path) {
Jorge Canizales5115af52015-08-02 16:09:41 -0700133 std::vector<grpc::string> tokens = tokenize(StripProto(file->name()), "/");
134 grpc::string result = "";
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700135 if (include_package_path) {
136 for (unsigned int i = 0; i < tokens.size() - 1; i++) {
137 result += tokens[i] + "/";
138 }
Jorge Canizales5115af52015-08-02 16:09:41 -0700139 }
140 result += LowerUnderscoreToUpperCamel(tokens.back());
141 return result;
murgatroid99d3efd0a2015-04-07 11:40:29 -0700142}
143
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700144inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file) {
145 return FileNameInUpperCamel(file, true);
146}
147
Jan Tattermuschb5897bf2015-05-07 15:45:37 -0700148enum MethodType {
149 METHODTYPE_NO_STREAMING,
150 METHODTYPE_CLIENT_STREAMING,
151 METHODTYPE_SERVER_STREAMING,
152 METHODTYPE_BIDI_STREAMING
153};
154
155inline MethodType GetMethodType(const grpc::protobuf::MethodDescriptor *method) {
156 if (method->client_streaming()) {
157 if (method->server_streaming()) {
158 return METHODTYPE_BIDI_STREAMING;
159 } else {
160 return METHODTYPE_CLIENT_STREAMING;
161 }
162 } else {
163 if (method->server_streaming()) {
164 return METHODTYPE_SERVER_STREAMING;
165 } else {
166 return METHODTYPE_NO_STREAMING;
167 }
168 }
169}
170
yang-g9efec8e2016-04-14 14:34:55 -0700171inline void Split(const grpc::string &s, char delim,
172 std::vector<grpc::string> *append_to) {
173 std::istringstream iss(s);
174 grpc::string piece;
175 while (std::getline(iss, piece)) {
176 append_to->push_back(piece);
177 }
178}
179
180enum CommentType {
181 COMMENTTYPE_LEADING,
182 COMMENTTYPE_TRAILING,
183 COMMENTTYPE_LEADING_DETACHED
184};
185
186// Get all the comments and append each line to out.
187template <typename DescriptorType>
188inline void GetComment(const DescriptorType *desc, CommentType type,
189 std::vector<grpc::string> *out) {
190 grpc::protobuf::SourceLocation location;
191 if (!desc->GetSourceLocation(&location)) {
192 return;
193 }
194 if (type == COMMENTTYPE_LEADING || type == COMMENTTYPE_TRAILING) {
195 const grpc::string &comments = type == COMMENTTYPE_LEADING
196 ? location.leading_comments
197 : location.trailing_comments;
198 Split(comments, '\n', out);
199 } else if (type == COMMENTTYPE_LEADING_DETACHED) {
200 for (int i = 0; i < location.leading_detached_comments.size(); i++) {
201 Split(location.leading_detached_comments[i], '\n', out);
202 out->push_back("");
203 }
204 } else {
205 abort();
206 }
207}
208
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +0100209} // namespace grpc_generator
210
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100211#endif // GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H