tokenizer.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. // Author: kenton@google.com (Kenton Varda)
  31. // Based on original Protocol Buffers design by
  32. // Sanjay Ghemawat, Jeff Dean, and others.
  33. //
  34. // Class for parsing tokenized text from a ZeroCopyInputStream.
  35. #ifndef GOOGLE_PROTOBUF_IO_TOKENIZER_H__
  36. #define GOOGLE_PROTOBUF_IO_TOKENIZER_H__
  37. #include <string>
  38. #include <vector>
  39. #include <google/protobuf/stubs/common.h>
  40. namespace google {
  41. namespace protobuf {
  42. namespace io {
  43. class ZeroCopyInputStream; // zero_copy_stream.h
  44. // Defined in this file.
  45. class ErrorCollector;
  46. class Tokenizer;
  47. // Abstract interface for an object which collects the errors that occur
  48. // during parsing. A typical implementation might simply print the errors
  49. // to stdout.
  50. class LIBPROTOBUF_EXPORT ErrorCollector {
  51. public:
  52. inline ErrorCollector() {}
  53. virtual ~ErrorCollector();
  54. // Indicates that there was an error in the input at the given line and
  55. // column numbers. The numbers are zero-based, so you may want to add
  56. // 1 to each before printing them.
  57. virtual void AddError(int line, int column, const string& message) = 0;
  58. // Indicates that there was a warning in the input at the given line and
  59. // column numbers. The numbers are zero-based, so you may want to add
  60. // 1 to each before printing them.
  61. virtual void AddWarning(int /* line */, int /* column */,
  62. const string& /* message */) { }
  63. private:
  64. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ErrorCollector);
  65. };
  66. // This class converts a stream of raw text into a stream of tokens for
  67. // the protocol definition parser to parse. The tokens recognized are
  68. // similar to those that make up the C language; see the TokenType enum for
  69. // precise descriptions. Whitespace and comments are skipped. By default,
  70. // C- and C++-style comments are recognized, but other styles can be used by
  71. // calling set_comment_style().
  72. class LIBPROTOBUF_EXPORT Tokenizer {
  73. public:
  74. // Construct a Tokenizer that reads and tokenizes text from the given
  75. // input stream and writes errors to the given error_collector.
  76. // The caller keeps ownership of input and error_collector.
  77. Tokenizer(ZeroCopyInputStream* input, ErrorCollector* error_collector);
  78. ~Tokenizer();
  79. enum TokenType {
  80. TYPE_START, // Next() has not yet been called.
  81. TYPE_END, // End of input reached. "text" is empty.
  82. TYPE_IDENTIFIER, // A sequence of letters, digits, and underscores, not
  83. // starting with a digit. It is an error for a number
  84. // to be followed by an identifier with no space in
  85. // between.
  86. TYPE_INTEGER, // A sequence of digits representing an integer. Normally
  87. // the digits are decimal, but a prefix of "0x" indicates
  88. // a hex number and a leading zero indicates octal, just
  89. // like with C numeric literals. A leading negative sign
  90. // is NOT included in the token; it's up to the parser to
  91. // interpret the unary minus operator on its own.
  92. TYPE_FLOAT, // A floating point literal, with a fractional part and/or
  93. // an exponent. Always in decimal. Again, never
  94. // negative.
  95. TYPE_STRING, // A quoted sequence of escaped characters. Either single
  96. // or double quotes can be used, but they must match.
  97. // A string literal cannot cross a line break.
  98. TYPE_SYMBOL, // Any other printable character, like '!' or '+'.
  99. // Symbols are always a single character, so "!+$%" is
  100. // four tokens.
  101. };
  102. // Structure representing a token read from the token stream.
  103. struct Token {
  104. TokenType type;
  105. string text; // The exact text of the token as it appeared in
  106. // the input. e.g. tokens of TYPE_STRING will still
  107. // be escaped and in quotes.
  108. // "line" and "column" specify the position of the first character of
  109. // the token within the input stream. They are zero-based.
  110. int line;
  111. int column;
  112. int end_column;
  113. };
  114. // Get the current token. This is updated when Next() is called. Before
  115. // the first call to Next(), current() has type TYPE_START and no contents.
  116. const Token& current();
  117. // Return the previous token -- i.e. what current() returned before the
  118. // previous call to Next().
  119. const Token& previous();
  120. // Advance to the next token. Returns false if the end of the input is
  121. // reached.
  122. bool Next();
  123. // Like Next(), but also collects comments which appear between the previous
  124. // and next tokens.
  125. //
  126. // Comments which appear to be attached to the previous token are stored
  127. // in *prev_tailing_comments. Comments which appear to be attached to the
  128. // next token are stored in *next_leading_comments. Comments appearing in
  129. // between which do not appear to be attached to either will be added to
  130. // detached_comments. Any of these parameters can be NULL to simply discard
  131. // the comments.
  132. //
  133. // A series of line comments appearing on consecutive lines, with no other
  134. // tokens appearing on those lines, will be treated as a single comment.
  135. //
  136. // Only the comment content is returned; comment markers (e.g. //) are
  137. // stripped out. For block comments, leading whitespace and an asterisk will
  138. // be stripped from the beginning of each line other than the first. Newlines
  139. // are included in the output.
  140. //
  141. // Examples:
  142. //
  143. // optional int32 foo = 1; // Comment attached to foo.
  144. // // Comment attached to bar.
  145. // optional int32 bar = 2;
  146. //
  147. // optional string baz = 3;
  148. // // Comment attached to baz.
  149. // // Another line attached to baz.
  150. //
  151. // // Comment attached to qux.
  152. // //
  153. // // Another line attached to qux.
  154. // optional double qux = 4;
  155. //
  156. // // Detached comment. This is not attached to qux or corge
  157. // // because there are blank lines separating it from both.
  158. //
  159. // optional string corge = 5;
  160. // /* Block comment attached
  161. // * to corge. Leading asterisks
  162. // * will be removed. */
  163. // /* Block comment attached to
  164. // * grault. */
  165. // optional int32 grault = 6;
  166. bool NextWithComments(string* prev_trailing_comments,
  167. vector<string>* detached_comments,
  168. string* next_leading_comments);
  169. // Parse helpers ---------------------------------------------------
  170. // Parses a TYPE_FLOAT token. This never fails, so long as the text actually
  171. // comes from a TYPE_FLOAT token parsed by Tokenizer. If it doesn't, the
  172. // result is undefined (possibly an assert failure).
  173. static double ParseFloat(const string& text);
  174. // Parses a TYPE_STRING token. This never fails, so long as the text actually
  175. // comes from a TYPE_STRING token parsed by Tokenizer. If it doesn't, the
  176. // result is undefined (possibly an assert failure).
  177. static void ParseString(const string& text, string* output);
  178. // Identical to ParseString, but appends to output.
  179. static void ParseStringAppend(const string& text, string* output);
  180. // Parses a TYPE_INTEGER token. Returns false if the result would be
  181. // greater than max_value. Otherwise, returns true and sets *output to the
  182. // result. If the text is not from a Token of type TYPE_INTEGER originally
  183. // parsed by a Tokenizer, the result is undefined (possibly an assert
  184. // failure).
  185. static bool ParseInteger(const string& text, uint64 max_value,
  186. uint64* output);
  187. // Options ---------------------------------------------------------
  188. // Set true to allow floats to be suffixed with the letter 'f'. Tokens
  189. // which would otherwise be integers but which have the 'f' suffix will be
  190. // forced to be interpreted as floats. For all other purposes, the 'f' is
  191. // ignored.
  192. void set_allow_f_after_float(bool value) { allow_f_after_float_ = value; }
  193. // Valid values for set_comment_style().
  194. enum CommentStyle {
  195. // Line comments begin with "//", block comments are delimited by "/*" and
  196. // "*/".
  197. CPP_COMMENT_STYLE,
  198. // Line comments begin with "#". No way to write block comments.
  199. SH_COMMENT_STYLE
  200. };
  201. // Sets the comment style.
  202. void set_comment_style(CommentStyle style) { comment_style_ = style; }
  203. // Whether to require whitespace between a number and a field name.
  204. // Default is true. Do not use this; for Google-internal cleanup only.
  205. void set_require_space_after_number(bool require) {
  206. require_space_after_number_ = require;
  207. }
  208. // Whether to allow string literals to span multiple lines. Default is false.
  209. // Do not use this; for Google-internal cleanup only.
  210. void set_allow_multiline_strings(bool allow) {
  211. allow_multiline_strings_ = allow;
  212. }
  213. // External helper: validate an identifier.
  214. static bool IsIdentifier(const string& text);
  215. // -----------------------------------------------------------------
  216. private:
  217. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Tokenizer);
  218. Token current_; // Returned by current().
  219. Token previous_; // Returned by previous().
  220. ZeroCopyInputStream* input_;
  221. ErrorCollector* error_collector_;
  222. char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
  223. const char* buffer_; // Current buffer returned from input_.
  224. int buffer_size_; // Size of buffer_.
  225. int buffer_pos_; // Current position within the buffer.
  226. bool read_error_; // Did we previously encounter a read error?
  227. // Line and column number of current_char_ within the whole input stream.
  228. int line_;
  229. int column_;
  230. // String to which text should be appended as we advance through it.
  231. // Call RecordTo(&str) to start recording and StopRecording() to stop.
  232. // E.g. StartToken() calls RecordTo(&current_.text). record_start_ is the
  233. // position within the current buffer where recording started.
  234. string* record_target_;
  235. int record_start_;
  236. // Options.
  237. bool allow_f_after_float_;
  238. CommentStyle comment_style_;
  239. bool require_space_after_number_;
  240. bool allow_multiline_strings_;
  241. // Since we count columns we need to interpret tabs somehow. We'll take
  242. // the standard 8-character definition for lack of any way to do better.
  243. static const int kTabWidth = 8;
  244. // -----------------------------------------------------------------
  245. // Helper methods.
  246. // Consume this character and advance to the next one.
  247. void NextChar();
  248. // Read a new buffer from the input.
  249. void Refresh();
  250. inline void RecordTo(string* target);
  251. inline void StopRecording();
  252. // Called when the current character is the first character of a new
  253. // token (not including whitespace or comments).
  254. inline void StartToken();
  255. // Called when the current character is the first character after the
  256. // end of the last token. After this returns, current_.text will
  257. // contain all text consumed since StartToken() was called.
  258. inline void EndToken();
  259. // Convenience method to add an error at the current line and column.
  260. void AddError(const string& message) {
  261. error_collector_->AddError(line_, column_, message);
  262. }
  263. // -----------------------------------------------------------------
  264. // The following four methods are used to consume tokens of specific
  265. // types. They are actually used to consume all characters *after*
  266. // the first, since the calling function consumes the first character
  267. // in order to decide what kind of token is being read.
  268. // Read and consume a string, ending when the given delimiter is
  269. // consumed.
  270. void ConsumeString(char delimiter);
  271. // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  272. // depending on what was read. This needs to know if the first
  273. // character was a zero in order to correctly recognize hex and octal
  274. // numbers.
  275. // It also needs to know if the first characted was a . to parse floating
  276. // point correctly.
  277. TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  278. // Consume the rest of a line.
  279. void ConsumeLineComment(string* content);
  280. // Consume until "*/".
  281. void ConsumeBlockComment(string* content);
  282. enum NextCommentStatus {
  283. // Started a line comment.
  284. LINE_COMMENT,
  285. // Started a block comment.
  286. BLOCK_COMMENT,
  287. // Consumed a slash, then realized it wasn't a comment. current_ has
  288. // been filled in with a slash token. The caller should return it.
  289. SLASH_NOT_COMMENT,
  290. // We do not appear to be starting a comment here.
  291. NO_COMMENT
  292. };
  293. // If we're at the start of a new comment, consume it and return what kind
  294. // of comment it is.
  295. NextCommentStatus TryConsumeCommentStart();
  296. // -----------------------------------------------------------------
  297. // These helper methods make the parsing code more readable. The
  298. // "character classes" refered to are defined at the top of the .cc file.
  299. // Basically it is a C++ class with one method:
  300. // static bool InClass(char c);
  301. // The method returns true if c is a member of this "class", like "Letter"
  302. // or "Digit".
  303. // Returns true if the current character is of the given character
  304. // class, but does not consume anything.
  305. template<typename CharacterClass>
  306. inline bool LookingAt();
  307. // If the current character is in the given class, consume it and return
  308. // true. Otherwise return false.
  309. // e.g. TryConsumeOne<Letter>()
  310. template<typename CharacterClass>
  311. inline bool TryConsumeOne();
  312. // Like above, but try to consume the specific character indicated.
  313. inline bool TryConsume(char c);
  314. // Consume zero or more of the given character class.
  315. template<typename CharacterClass>
  316. inline void ConsumeZeroOrMore();
  317. // Consume one or more of the given character class or log the given
  318. // error message.
  319. // e.g. ConsumeOneOrMore<Digit>("Expected digits.");
  320. template<typename CharacterClass>
  321. inline void ConsumeOneOrMore(const char* error);
  322. };
  323. // inline methods ====================================================
  324. inline const Tokenizer::Token& Tokenizer::current() {
  325. return current_;
  326. }
  327. inline const Tokenizer::Token& Tokenizer::previous() {
  328. return previous_;
  329. }
  330. inline void Tokenizer::ParseString(const string& text, string* output) {
  331. output->clear();
  332. ParseStringAppend(text, output);
  333. }
  334. } // namespace io
  335. } // namespace protobuf
  336. } // namespace google
  337. #endif // GOOGLE_PROTOBUF_IO_TOKENIZER_H__