ruby.rl's string and regex literals shouldn't call @code right after '%'.
[ohcount] / ext / ohcount_native / ragel_parsers / vim.rl
1 // vim.rl written by Mitchell Foral. mitchell<att>caladbolg<dott>net.
2
3 /************************* Required for every parser *************************/
4 #ifndef RAGEL_VIM_PARSER
5 #define RAGEL_VIM_PARSER
6
7 #include "ragel_parser_macros.h"
8
9 // the name of the language
10 const char *VIM_LANG = "vim";
11
12 // the languages entities
13 const char *vim_entities[] = {
14   "space", "comment", "string", "any"
15 };
16
17 // constants associated with the entities
18 enum {
19   VIM_SPACE = 0, VIM_COMMENT, VIM_STRING, VIM_ANY
20 };
21
22 /*****************************************************************************/
23
24 %%{
25   machine vim;
26   write data;
27   include common "common.rl";
28
29   # Line counting machine
30
31   action vim_ccallback {
32     switch(entity) {
33     case VIM_SPACE:
34       ls
35       break;
36     case VIM_ANY:
37       code
38       break;
39     case INTERNAL_NL:
40       std_internal_newline(VIM_LANG)
41       break;
42     case NEWLINE:
43       std_newline(VIM_LANG)
44     }
45   }
46
47   vim_comment = '"' when no_code  @comment nonnewline*;
48
49   vim_sq_str = '\'' @code ([^\r\n\f'\\] | '\\' any)* '\'';
50   vim_dq_str = '"' when !no_code @code ([^\r\n\f"\\] | '\\' any)* '"';
51   vim_string = vim_sq_str | vim_dq_str;
52
53   vim_line := |*
54     spaces         ${ entity = VIM_SPACE; } => vim_ccallback;
55     vim_comment;
56     vim_string;
57     newline        ${ entity = NEWLINE;   } => vim_ccallback;
58     #'"';
59     ^(space | '"') ${ entity = VIM_ANY;   } => vim_ccallback;
60
61   *|;
62
63   # Entity machine
64
65   action vim_ecallback {
66     callback(VIM_LANG, vim_entities[entity], cint(ts), cint(te));
67   }
68
69   vim_entity := 'TODO:';
70 }%%
71
72 /************************* Required for every parser *************************/
73
74 /* Parses a string buffer with Vim code.
75  *
76  * @param *buffer The string to parse.
77  * @param length The length of the string to parse.
78  * @param count Integer flag specifying whether or not to count lines. If yes,
79  *   uses the Ragel machine optimized for counting. Otherwise uses the Ragel
80  *   machine optimized for returning entity positions.
81  * @param *callback Callback function. If count is set, callback is called for
82  *   every line of code, comment, or blank with 'lcode', 'lcomment', and
83  *   'lblank' respectively. Otherwise callback is called for each entity found.
84  */
85 void parse_vim(char *buffer, int length, int count,
86   void (*callback) (const char *lang, const char *entity, int start, int end)
87   ) {
88   init
89
90   %% write init;
91   cs = (count) ? vim_en_vim_line : vim_en_vim_entity;
92   %% write exec;
93
94   // if no newline at EOF; callback contents of last line
95   if (count) { process_last_line(VIM_LANG) }
96 }
97
98 #endif
99
100 /*****************************************************************************/