Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 1 | /* |
| 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" Noble | 1ff52d5 | 2015-03-01 05:24:36 +0100 | [diff] [blame] | 34 | #ifndef GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H |
| 35 | #define GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 36 | |
| 37 | #include <map> |
yang-g | 9efec8e | 2016-04-14 14:34:55 -0700 | [diff] [blame] | 38 | #include <sstream> |
| 39 | #include <string> |
| 40 | #include <vector> |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 41 | |
| 42 | #include "src/compiler/config.h" |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 43 | |
| 44 | namespace grpc_generator { |
| 45 | |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 46 | inline bool StripSuffix(grpc::string *filename, const grpc::string &suffix) { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 47 | if (filename->length() >= suffix.length()) { |
| 48 | size_t suffix_pos = filename->length() - suffix.length(); |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 49 | if (filename->compare(suffix_pos, grpc::string::npos, suffix) == 0) { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 50 | filename->resize(filename->size() - suffix.size()); |
| 51 | return true; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | return false; |
| 56 | } |
| 57 | |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 58 | inline grpc::string StripProto(grpc::string filename) { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 59 | if (!StripSuffix(&filename, ".protodevel")) { |
| 60 | StripSuffix(&filename, ".proto"); |
| 61 | } |
| 62 | return filename; |
| 63 | } |
| 64 | |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 65 | inline grpc::string StringReplace(grpc::string str, const grpc::string &from, |
Jan Tattermusch | 41f9f33 | 2015-05-20 08:52:00 -0700 | [diff] [blame] | 66 | const grpc::string &to, bool replace_all) { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 67 | size_t pos = 0; |
| 68 | |
Jan Tattermusch | 41f9f33 | 2015-05-20 08:52:00 -0700 | [diff] [blame] | 69 | do { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 70 | pos = str.find(from, pos); |
Nicolas Noble | d446eb8 | 2015-03-12 17:22:33 -0700 | [diff] [blame] | 71 | if (pos == grpc::string::npos) { |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 72 | break; |
| 73 | } |
| 74 | str.replace(pos, from.length(), to); |
| 75 | pos += to.length(); |
Jan Tattermusch | 41f9f33 | 2015-05-20 08:52:00 -0700 | [diff] [blame] | 76 | } while(replace_all); |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 77 | |
| 78 | return str; |
| 79 | } |
| 80 | |
Jan Tattermusch | 41f9f33 | 2015-05-20 08:52:00 -0700 | [diff] [blame] | 81 | inline 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" Noble | 375a82b | 2015-03-24 02:33:18 +0100 | [diff] [blame] | 86 | inline 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 | |
murgatroid99 | ac0002a | 2015-04-07 12:49:14 -0700 | [diff] [blame] | 106 | inline grpc::string CapitalizeFirstLetter(grpc::string s) { |
murgatroid99 | d3efd0a | 2015-04-07 11:40:29 -0700 | [diff] [blame] | 107 | if (s.empty()) { |
| 108 | return s; |
| 109 | } |
| 110 | s[0] = ::toupper(s[0]); |
| 111 | return s; |
| 112 | } |
| 113 | |
Jorge Canizales | 9a065d2 | 2015-04-27 00:05:01 -0700 | [diff] [blame] | 114 | inline 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 | |
murgatroid99 | d3efd0a | 2015-04-07 11:40:29 -0700 | [diff] [blame] | 122 | inline 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 Tattermusch | 205e6c8 | 2015-08-14 09:25:06 -0700 | [diff] [blame] | 131 | inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file, |
| 132 | bool include_package_path) { |
Jorge Canizales | 5115af5 | 2015-08-02 16:09:41 -0700 | [diff] [blame] | 133 | std::vector<grpc::string> tokens = tokenize(StripProto(file->name()), "/"); |
| 134 | grpc::string result = ""; |
Jan Tattermusch | 205e6c8 | 2015-08-14 09:25:06 -0700 | [diff] [blame] | 135 | if (include_package_path) { |
| 136 | for (unsigned int i = 0; i < tokens.size() - 1; i++) { |
| 137 | result += tokens[i] + "/"; |
| 138 | } |
Jorge Canizales | 5115af5 | 2015-08-02 16:09:41 -0700 | [diff] [blame] | 139 | } |
| 140 | result += LowerUnderscoreToUpperCamel(tokens.back()); |
| 141 | return result; |
murgatroid99 | d3efd0a | 2015-04-07 11:40:29 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Jan Tattermusch | 205e6c8 | 2015-08-14 09:25:06 -0700 | [diff] [blame] | 144 | inline grpc::string FileNameInUpperCamel(const grpc::protobuf::FileDescriptor *file) { |
| 145 | return FileNameInUpperCamel(file, true); |
| 146 | } |
| 147 | |
Jan Tattermusch | b5897bf | 2015-05-07 15:45:37 -0700 | [diff] [blame] | 148 | enum MethodType { |
| 149 | METHODTYPE_NO_STREAMING, |
| 150 | METHODTYPE_CLIENT_STREAMING, |
| 151 | METHODTYPE_SERVER_STREAMING, |
| 152 | METHODTYPE_BIDI_STREAMING |
| 153 | }; |
| 154 | |
| 155 | inline 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-g | 9efec8e | 2016-04-14 14:34:55 -0700 | [diff] [blame] | 171 | inline 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 | |
| 180 | enum CommentType { |
| 181 | COMMENTTYPE_LEADING, |
| 182 | COMMENTTYPE_TRAILING, |
| 183 | COMMENTTYPE_LEADING_DETACHED |
| 184 | }; |
| 185 | |
| 186 | // Get all the comments and append each line to out. |
| 187 | template <typename DescriptorType> |
| 188 | inline 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) { |
yang-g | b01e013 | 2016-04-14 16:41:09 -0700 | [diff] [blame^] | 200 | for (unsigned int i = 0; i < location.leading_detached_comments.size(); |
| 201 | i++) { |
yang-g | 9efec8e | 2016-04-14 14:34:55 -0700 | [diff] [blame] | 202 | Split(location.leading_detached_comments[i], '\n', out); |
| 203 | out->push_back(""); |
| 204 | } |
| 205 | } else { |
| 206 | abort(); |
| 207 | } |
| 208 | } |
| 209 | |
Nicolas "Pixel" Noble | 93fa098 | 2015-02-27 21:50:58 +0100 | [diff] [blame] | 210 | } // namespace grpc_generator |
| 211 | |
Nicolas "Pixel" Noble | 1ff52d5 | 2015-03-01 05:24:36 +0100 | [diff] [blame] | 212 | #endif // GRPC_INTERNAL_COMPILER_GENERATOR_HELPERS_H |