blob: e1bb66a8753b0c2f75bde5be0decc9895243c82e [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>
Nicolas Nobled446eb82015-03-12 17:22:33 -070038
39#include "src/compiler/config.h"
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010040
41namespace grpc_generator {
42
Nicolas Nobled446eb82015-03-12 17:22:33 -070043inline bool StripSuffix(grpc::string *filename, const grpc::string &suffix) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010044 if (filename->length() >= suffix.length()) {
45 size_t suffix_pos = filename->length() - suffix.length();
Nicolas Nobled446eb82015-03-12 17:22:33 -070046 if (filename->compare(suffix_pos, grpc::string::npos, suffix) == 0) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010047 filename->resize(filename->size() - suffix.size());
48 return true;
49 }
50 }
51
52 return false;
53}
54
Nicolas Nobled446eb82015-03-12 17:22:33 -070055inline grpc::string StripProto(grpc::string filename) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010056 if (!StripSuffix(&filename, ".protodevel")) {
57 StripSuffix(&filename, ".proto");
58 }
59 return filename;
60}
61
Nicolas Nobled446eb82015-03-12 17:22:33 -070062inline grpc::string StringReplace(grpc::string str, const grpc::string &from,
Jan Tattermusch41f9f332015-05-20 08:52:00 -070063 const grpc::string &to, bool replace_all) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010064 size_t pos = 0;
65
Jan Tattermusch41f9f332015-05-20 08:52:00 -070066 do {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010067 pos = str.find(from, pos);
Nicolas Nobled446eb82015-03-12 17:22:33 -070068 if (pos == grpc::string::npos) {
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010069 break;
70 }
71 str.replace(pos, from.length(), to);
72 pos += to.length();
Jan Tattermusch41f9f332015-05-20 08:52:00 -070073 } while(replace_all);
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +010074
75 return str;
76}
77
Jan Tattermusch41f9f332015-05-20 08:52:00 -070078inline grpc::string StringReplace(grpc::string str, const grpc::string &from,
79 const grpc::string &to) {
80 return StringReplace(str, from, to, true);
81}
82
Nicolas "Pixel" Noble375a82b2015-03-24 02:33:18 +010083inline std::vector<grpc::string> tokenize(const grpc::string &input,
84 const grpc::string &delimiters) {
85 std::vector<grpc::string> tokens;
86 size_t pos, last_pos = 0;
87
88 for (;;) {
89 bool done = false;
90 pos = input.find_first_of(delimiters, last_pos);
91 if (pos == grpc::string::npos) {
92 done = true;
93 pos = input.length();
94 }
95
96 tokens.push_back(input.substr(last_pos, pos - last_pos));
97 if (done) return tokens;
98
99 last_pos = pos + 1;
100 }
101}
102
murgatroid99ac0002a2015-04-07 12:49:14 -0700103inline grpc::string CapitalizeFirstLetter(grpc::string s) {
murgatroid99d3efd0a2015-04-07 11:40:29 -0700104 if (s.empty()) {
105 return s;
106 }
107 s[0] = ::toupper(s[0]);
108 return s;
109}
110
Jorge Canizales9a065d22015-04-27 00:05:01 -0700111inline grpc::string LowercaseFirstLetter(grpc::string s) {
112 if (s.empty()) {
113 return s;
114 }
115 s[0] = ::tolower(s[0]);
116 return s;
117}
118
murgatroid99d3efd0a2015-04-07 11:40:29 -0700119inline grpc::string LowerUnderscoreToUpperCamel(grpc::string str) {
120 std::vector<grpc::string> tokens = tokenize(str, "_");
121 grpc::string result = "";
122 for (unsigned int i = 0; i < tokens.size(); i++) {
123 result += CapitalizeFirstLetter(tokens[i]);
124 }
125 return result;
126}
127
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700128inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file,
129 bool include_package_path) {
Jorge Canizales5115af52015-08-02 16:09:41 -0700130 std::vector<grpc::string> tokens = tokenize(StripProto(file->name()), "/");
131 grpc::string result = "";
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700132 if (include_package_path) {
133 for (unsigned int i = 0; i < tokens.size() - 1; i++) {
134 result += tokens[i] + "/";
135 }
Jorge Canizales5115af52015-08-02 16:09:41 -0700136 }
137 result += LowerUnderscoreToUpperCamel(tokens.back());
138 return result;
murgatroid99d3efd0a2015-04-07 11:40:29 -0700139}
140
Jan Tattermusch205e6c82015-08-14 09:25:06 -0700141inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file) {
142 return FileNameInUpperCamel(file, true);
143}
144
Jan Tattermuschb5897bf2015-05-07 15:45:37 -0700145enum MethodType {
146 METHODTYPE_NO_STREAMING,
147 METHODTYPE_CLIENT_STREAMING,
148 METHODTYPE_SERVER_STREAMING,
149 METHODTYPE_BIDI_STREAMING
150};
151
152inline MethodType GetMethodType(const grpc::protobuf::MethodDescriptor *method) {
153 if (method->client_streaming()) {
154 if (method->server_streaming()) {
155 return METHODTYPE_BIDI_STREAMING;
156 } else {
157 return METHODTYPE_CLIENT_STREAMING;
158 }
159 } else {
160 if (method->server_streaming()) {
161 return METHODTYPE_SERVER_STREAMING;
162 } else {
163 return METHODTYPE_NO_STREAMING;
164 }
165 }
166}
167
Nicolas "Pixel" Noble93fa0982015-02-27 21:50:58 +0100168} // namespace grpc_generator
169
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100170#endif // GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H