ruby.rl's string and regex literals shouldn't call @code right after '%'.
[ohcount] / ext / ohcount_native / ragel_parsers / groovy.rl
1 // groovy.rl written by Mitchell Foral. mitchell<att>caladbolg<dott>net.
2
3 /************************* Required for every parser *************************/
4 #ifndef RAGEL_GROOVY_PARSER
5 #define RAGEL_GROOVY_PARSER
6
7 #include "ragel_parser_macros.h"
8
9 // the name of the language
10 const char *GROOVY_LANG = "groovy";
11
12 // the languages entities
13 const char *groovy_entities[] = {
14   "space", "comment", "string", "any"
15 };
16
17 // constants associated with the entities
18 enum {
19   GROOVY_SPACE = 0, GROOVY_COMMENT, GROOVY_STRING, GROOVY_ANY
20 };
21
22 /*****************************************************************************/
23
24 %%{
25   machine groovy;
26   write data;
27   include common "common.rl";
28
29   # Line counting machine
30
31   action groovy_ccallback {
32     switch(entity) {
33     case GROOVY_SPACE:
34       ls
35       break;
36     case GROOVY_ANY:
37       code
38       break;
39     case INTERNAL_NL:
40       std_internal_newline(GROOVY_LANG)
41       break;
42     case NEWLINE:
43       std_newline(GROOVY_LANG)
44     }
45   }
46
47   groovy_line_comment =
48     '//' @comment (
49       escaped_newline %{ entity = INTERNAL_NL; } %groovy_ccallback
50       |
51       ws
52       |
53       (nonnewline - ws) @comment
54     )*;
55   groovy_block_comment =
56     '/*' @comment (
57       newline %{ entity = INTERNAL_NL; } %groovy_ccallback
58       |
59       ws
60       |
61       (nonnewline - ws) @comment
62     )* :>> '*/';
63   groovy_comment = groovy_line_comment | groovy_block_comment;
64
65   groovy_sq_str =
66     '\'' @code (
67       escaped_newline %{ entity = INTERNAL_NL; } %groovy_ccallback
68       |
69       ws
70       |
71       [^\t '\\] @code
72       |
73       '\\' nonnewline @code
74     )* '\'';
75   groovy_dq_str =
76     '"' @code (
77       escaped_newline %{ entity = INTERNAL_NL; } %groovy_ccallback
78       |
79       ws
80       |
81       [^\t "\\] @code
82       |
83       '\\' nonnewline @code
84     )* '"';
85   groovy_string = groovy_sq_str | groovy_dq_str;
86
87   groovy_line := |*
88     spaces          ${ entity = GROOVY_SPACE; } => groovy_ccallback;
89     groovy_comment;
90     groovy_string;
91     newline         ${ entity = NEWLINE;      } => groovy_ccallback;
92     ^space          ${ entity = GROOVY_ANY;   } => groovy_ccallback;
93   *|;
94
95   # Entity machine
96
97   action groovy_ecallback {
98     callback(GROOVY_LANG, entity, cint(ts), cint(te));
99   }
100
101   groovy_entity := 'TODO:';
102 }%%
103
104 /* Parses a string buffer with Groovy code.
105  *
106  * @param *buffer The string to parse.
107  * @param length The length of the string to parse.
108  * @param count Integer flag specifying whether or not to count lines. If yes,
109  *   uses the Ragel machine optimized for counting. Otherwise uses the Ragel
110  *   machine optimized for returning entity positions.
111  * @param *callback Callback function. If count is set, callback is called for
112  *   every line of code, comment, or blank with 'lcode', 'lcomment', and
113  *   'lblank' respectively. Otherwise callback is called for each entity found.
114  */
115 void parse_groovy(char *buffer, int length, int count,
116   void (*callback) (const char *lang, const char *entity, int start, int end)
117   ) {
118   init
119
120   %% write init;
121   cs = (count) ? groovy_en_groovy_line : groovy_en_groovy_entity;
122   %% write exec;
123
124   // if no newline at EOF; callback contents of last line
125   if (count) { process_last_line(GROOVY_LANG) }
126 }
127
128 #endif