mirror of
https://github.com/ksherlock/mpw-shell.git
synced 2024-12-28 09:29:57 +00:00
264 lines
4.9 KiB
Ragel
264 lines
4.9 KiB
Ragel
#include <string>
|
|
#include <vector>
|
|
#include <stdio.h>
|
|
|
|
#include "mpw-shell.h"
|
|
|
|
%%{
|
|
machine tokenizer;
|
|
alphtype unsigned char;
|
|
|
|
|
|
escape = 0xb6;
|
|
ws = [ \t];
|
|
nl = '\n' | '\r';
|
|
|
|
action push_token {
|
|
if (!scratch.empty() || quoted) {
|
|
tokens.emplace_back(std::move(scratch));
|
|
scratch.clear();
|
|
quoted = false;
|
|
}
|
|
}
|
|
|
|
action push_back {
|
|
scratch.push_back(fc);
|
|
}
|
|
|
|
# vstring_quoted =
|
|
# [{]
|
|
# ( (any-nl-[}]) ${ var.push_back(fc); } )*
|
|
# [}]
|
|
# %{
|
|
# auto iter = Environment.find(var);
|
|
# if (iter != Environment.end() {
|
|
# scratch.append(iter->second);
|
|
# })
|
|
# var.clear();
|
|
# }
|
|
# $err{
|
|
# throw std::runtime_error("### MPW Shell - '{ must occur in pairs.");
|
|
# }
|
|
# ;
|
|
|
|
# vstring_unqoted =
|
|
# [{]
|
|
# ( (any-nl-[}]) ${ var.push_back(fc); } )*
|
|
# [}]
|
|
# %{
|
|
# auto iter = Environment.find(var);
|
|
# if (iter != Environment.end() {
|
|
# // re-parse. ", ', { are not
|
|
# // special. all others are treated normally.
|
|
# })
|
|
# var.clear();
|
|
# }
|
|
# $err{
|
|
# throw std::runtime_error("### MPW Shell - '{ must occur in pairs.");
|
|
# }
|
|
# ;
|
|
|
|
sstring =
|
|
[']
|
|
( (any-nl-[']) $push_back )*
|
|
[']
|
|
${ quoted = true; }
|
|
$err{
|
|
throw std::runtime_error("### MPW Shell - 's must occur in pairs.");
|
|
}
|
|
;
|
|
|
|
escape_seq =
|
|
escape
|
|
(
|
|
'f' ${scratch.push_back('\f'); }
|
|
|
|
|
'n' ${scratch.push_back('\n'); /* \r ? */ }
|
|
|
|
|
't' ${scratch.push_back('\t'); }
|
|
|
|
|
any-[fnt] $push_back
|
|
)
|
|
;
|
|
|
|
# double-quoted string.
|
|
dstring =
|
|
["]
|
|
(
|
|
escape_seq
|
|
|
|
|
(any-escape-["]) $push_back
|
|
)*
|
|
["]
|
|
${ quoted = true; }
|
|
$err{
|
|
throw std::runtime_error("### MPW Shell - \"s must occur in pairs.");
|
|
}
|
|
;
|
|
|
|
|
|
action eval { eval }
|
|
|
|
# > == start state (single char tokens or common prefix)
|
|
# % == final state (multi char tokens w/ unique prefix)
|
|
# $ == all states
|
|
|
|
main := |*
|
|
ws+ >push_token;
|
|
'>>' %push_token => { tokens.emplace_back(">>", '>>'); };
|
|
'>' %push_token => { tokens.emplace_back(">", '>'); };
|
|
|
|
'<' %push_token => { tokens.emplace_back("<", '<'); };
|
|
|
|
'||' %push_token => { tokens.emplace_back("||", '||'); };
|
|
'|' %push_token => { tokens.emplace_back("|", '|'); };
|
|
|
|
'&&'
|
|
%push_token => { tokens.emplace_back("&&", '&&'); };
|
|
|
|
# eval-only.
|
|
|
|
'(' when eval
|
|
%push_token => { tokens.emplace_back("(", '('); };
|
|
|
|
')' when eval
|
|
%push_token => { tokens.emplace_back(")", ')'); };
|
|
|
|
|
|
'<<' when eval
|
|
%push_token => { tokens.emplace_back("<<", '<<'); };
|
|
|
|
'<=' when eval
|
|
%push_token => { tokens.emplace_back("<=", '<='); };
|
|
|
|
'>=' when eval
|
|
%push_token => { tokens.emplace_back(">=", '>='); };
|
|
|
|
'==' when eval
|
|
%push_token => { tokens.emplace_back("==", '=='); };
|
|
|
|
'!=' when eval
|
|
%push_token => { tokens.emplace_back("!=", '!='); };
|
|
|
|
'&' when eval
|
|
%push_token => { tokens.emplace_back("&", '&'); };
|
|
|
|
'+' when eval
|
|
>push_token => { tokens.emplace_back("+", '+'); };
|
|
|
|
'*' when eval
|
|
%push_token => { tokens.emplace_back("*", '*'); };
|
|
|
|
'%' when eval
|
|
%push_token => { tokens.emplace_back("%", '%'); };
|
|
|
|
|
|
'-' when eval
|
|
%push_token => { tokens.emplace_back("+", '-'); };
|
|
|
|
'!' when eval
|
|
%push_token => { tokens.emplace_back("!", '!'); };
|
|
|
|
'^' when eval
|
|
%push_token => { tokens.emplace_back("^", '^'); };
|
|
|
|
'~' when eval
|
|
%push_token => { tokens.emplace_back("~", '~'); };
|
|
|
|
|
|
'=' when eval
|
|
%push_token => { tokens.emplace_back("=", '='); };
|
|
|
|
'+=' when eval
|
|
%push_token => { tokens.emplace_back("+=", '+='); };
|
|
|
|
'-=' when eval
|
|
%push_token => { tokens.emplace_back("-=", '-='); };
|
|
|
|
|
|
sstring ;
|
|
dstring ;
|
|
escape_seq;
|
|
|
|
(any-escape-['"]) => push_back; # { scratch.append(ts, te); };
|
|
#(any-escape-ws-[>'"])+ => { scratch.append(ts, te); };
|
|
*|
|
|
;
|
|
}%%
|
|
|
|
|
|
|
|
inline void replace_eval_token(token &t) {
|
|
|
|
%%{
|
|
|
|
machine eval_keywords;
|
|
|
|
main :=
|
|
/and/i %{ t.type = '&&'; }
|
|
|
|
|
/or/i %{ t.type = '||'; }
|
|
|
|
|
/not/i %{ t.type = '!'; }
|
|
|
|
|
/div/i %{ t.type = '/'; }
|
|
|
|
|
/mod/i %{ t.type = '%'; }
|
|
;
|
|
}%%
|
|
|
|
|
|
%%machine eval_keywords;
|
|
%%write data;
|
|
|
|
|
|
const char *p = t.string.data();
|
|
const char *pe = t.string.data() + t.string.size();
|
|
const char *eof = pe;
|
|
int cs;
|
|
%%write init;
|
|
|
|
%%write exec;
|
|
}
|
|
std::vector<token> tokenize(const std::string &s, bool eval)
|
|
{
|
|
std::vector<token> tokens;
|
|
std::string scratch;
|
|
bool quoted = false; // found a quote character ("" creates a token)
|
|
|
|
|
|
%%machine tokenizer;
|
|
%% write data;
|
|
|
|
int cs, act;
|
|
unsigned const char *p = (const unsigned char *)s.data();
|
|
unsigned const char *pe = (const unsigned char *)s.data() + s.size();
|
|
unsigned const char *eof = pe;
|
|
|
|
unsigned const char *ts, *te;
|
|
|
|
%%write init;
|
|
|
|
%%write exec;
|
|
|
|
if (cs == tokenizer_error) {
|
|
throw std::runtime_error("MPW Shell - Lexer error.");
|
|
}
|
|
|
|
if (!scratch.empty() || quoted) {
|
|
tokens.emplace_back(std::move(scratch));
|
|
scratch.clear();
|
|
}
|
|
|
|
// alternate operator tokens for eval
|
|
if (eval) {
|
|
|
|
for (token & t : tokens) {
|
|
if (t.type == token::text) replace_eval_token(t);
|
|
|
|
}
|
|
}
|
|
|
|
return tokens;
|
|
}
|