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