1 // awk.rl written by Mitchell Foral. mitchell<att>caladbolg<dott>net
3 /************************* Required for every parser *************************/
4 #ifndef RAGEL_AWK_PARSER
5 #define RAGEL_AWK_PARSER
7 #include "ragel_parser_macros.h"
9 // the name of the language
10 const char *AWK_LANG = "awk";
12 // the languages entities
13 const char *awk_entities[] = {
14 "space", "comment", "string", "any"
17 // constants associated with the entities
19 AWK_SPACE = 0, AWK_COMMENT, AWK_STRING, AWK_ANY
22 /*****************************************************************************/
27 include common "common.rl";
29 # Line counting machine
31 action awk_ccallback {
40 std_internal_newline(AWK_LANG)
47 awk_comment = '#' @comment nonnewline*;
49 awk_dq_str = '"' @code ([^\r\n\f"\\] | '\\' nonnewline)* '"';
50 awk_regex = '/' @code ([^\r\n\f/\\] | '\\' nonnewline)* '/';
51 awk_string = awk_dq_str | awk_regex;
54 spaces ${ entity = AWK_SPACE; } => awk_ccallback;
57 newline ${ entity = NEWLINE; } => awk_ccallback;
58 ^space ${ entity = AWK_ANY; } => awk_ccallback;
63 action awk_ecallback {
64 callback(AWK_LANG, awk_entities[entity], cint(ts), cint(te));
67 awk_entity := 'TODO:';
70 /************************* Required for every parser *************************/
72 /* Parses a string buffer with Awk code.
74 * @param *buffer The string to parse.
75 * @param length The length of the string to parse.
76 * @param count Integer flag specifying whether or not to count lines. If yes,
77 * uses the Ragel machine optimized for counting. Otherwise uses the Ragel
78 * machine optimized for returning entity positions.
79 * @param *callback Callback function. If count is set, callback is called for
80 * every line of code, comment, or blank with 'lcode', 'lcomment', and
81 * 'lblank' respectively. Otherwise callback is called for each entity found.
83 void parse_awk(char *buffer, int length, int count,
84 void (*callback) (const char *lang, const char *entity, int start, int end)
89 cs = (count) ? awk_en_awk_line : awk_en_awk_entity;
92 // if no newline at EOF; callback contents of last line
93 if (count) { process_last_line(AWK_LANG) }
98 /*****************************************************************************/