VERY basic UTF8 parser

This commit is contained in:
Udo 2022-01-28 20:23:14 +00:00
parent 939009f9a1
commit 18ca2368bc
9 changed files with 350 additions and 2 deletions

View File

@ -5,6 +5,7 @@ first
join
nibble
split
split_utf8
replace
to_lower
to_upper

View File

@ -1,8 +1,9 @@
:sig
String expand_path(String path)
String expand_path(String path, String relative_to_path = "")
:params
path : a relative path
relative_to_path : optional, expand relative to this path (if not given, the current path is used)
return value : expanded version of the 'path'
:desc

15
doc/pages/split_utf8.txt Normal file
View File

@ -0,0 +1,15 @@
:sig
StringList split_utf8(String str)
:params
str : string to be split
return value : a list of Unicode characters
:desc
Splits the string 'str' into its constituent Unicode code points.
This currently does not honor compound characters such as flags or composite emojis.
:see
>string

View File

@ -24,7 +24,7 @@ OPT_FLAG="O0"
COMPILER="clang++"
#COMPILER="g++"
FLAGS="-shared -g -rdynamic -w -Wall -$OPT_FLAG -std=c++17 -fpermissive -ffast-math -fPIC"
FLAGS="-shared -g -rdynamic -w -Wall -$OPT_FLAG -std=c++14 -fpermissive -ffast-math -fPIC"
LIBS="-ldl -lm -lpthread "
SRCFLAGS="-D PLATFORM_NAME=\"linux\""

View File

@ -154,6 +154,40 @@ String join(StringList l, String delim)
return(result);
}
StringList split_utf8(String s)
{
StringList result;
auto len = s.size();
String codepoint = "";
for(s64 i = 0; i < len; i++)
{
u8 c = s[i];
if(is_bit_set(c, 7))
{
codepoint = "";
codepoint.append(1, c);
if(is_bit_set(c, 6))
{
codepoint.append(1, s[++i]);
if(is_bit_set(c, 5))
{
codepoint.append(1, s[++i]);
if(is_bit_set(c, 4))
{
codepoint.append(1, s[++i]);
}
}
}
result.push_back(codepoint);
}
else
{
result.push_back(String().append(1, c));
}
}
return(result);
}
String html_escape(String s)
{
String result;

View File

@ -12,6 +12,7 @@ StringList split(String str, String delim);
String join(StringList l, String delim = "\n");
String nibble(String& haystack, String delim);
void json_consume_space(String s, u32& i);
StringList split_utf8(String s);
template<typename T>
std::vector<T> filter(std::vector<T> items, std::function<bool (T)> f)
@ -50,3 +51,4 @@ void ob_clear();
String ob_get_clear();
String ob_get();
#define is_bit_set(var,pos) ((var) & (1<<(pos)))

View File

@ -30,6 +30,7 @@ RENDER()
<li><a href="file_append.uce">File Append</a></li>
<li><a href="random.uce">RNG/Noise</a></li>
<li><a href="task.uce">Task API</a></li>
<li><a href="utf8.uce">UTF-8</a></li>
</ul>
<pre><?
print("Worker PID: ", my_pid, "\n");

260
test/script.uce Normal file
View File

@ -0,0 +1,260 @@
StringList script_tokenize(String code)
{
StringList result;
String current_token = "";
char mode = 'N';
char quote_character = 0;
char last_character = 0;
for(auto c : code)
{
if(mode == 'Q')
{
if(c == '\\')
{
}
else if(quote_character == c && last_character != '\\')
{
mode = 'N';
result.push_back(current_token);
current_token = "";
}
else
{
current_token.append(1, c);
}
}
else
{
if(isspace(c))
{
if(current_token != "")
result.push_back(current_token);
current_token = "";
}
else if(c == '"' || c == '\'')
{
mode = 'Q';
quote_character = c;
if(current_token != "")
result.push_back(current_token);
current_token = "\"";
}
else if(ispunct(c) && c != '_')
{
if(current_token != "")
result.push_back(current_token);
current_token = "";
result.push_back(String().append(1, c));
}
else
{
current_token.append(1, c);
}
}
last_character = c;
}
if(current_token != "")
result.push_back(current_token);
return(result);
}
struct ASTNode
{
String identifier = "";
String type_name = "";
char type = 0;
ASTNode* assign = 0;
ASTNode* call_params = 0;
ASTNode* children = 0;
ASTNode* next = 0;
ASTNode(char _type)
{
type = _type;
type_name = "";
identifier = "";
assign = 0;
children = 0;
next = 0;
}
String to_string(String indent = "")
{
String result = "";
ASTNode* current = this;
while(current)
{
result += indent + String().append(1, current->type);
if(identifier != "") result += " ident=" + identifier;
if(type_name != "") result += " type=" + type_name;
result += "\n";
if(current->call_params)
result += current->call_params->to_string(indent + "--CALL ");
if(current->assign)
result += current->assign->to_string(indent + "--ASSIGN ");
if(current->children)
result += current->children->to_string(indent + " ");
current = current->next;
}
return(result);
}
};
struct ParserState
{
ASTNode* root = 0;
StringList tokens;
s32 token_index = 0;
String error = "";
String next()
{
return(tokens[token_index++]);
}
String look_ahead(u32 by)
{
return(tokens[token_index+by]);
}
bool expect(String token_str)
{
String found = look_ahead(0);
if(found == token_str)
return(true);
token_index = tokens.size() + 1;
error = String("'") + token_str + "' expected but '" + found + "' found";
return(false);
}
void consume(String token_str)
{
if(expect(token_str))
next();
}
};
ASTNode* script_parse_expression(ParserState* state, String accept_delim);
ASTNode* script_parse_call_params(ParserState* state)
{
ASTNode* result = new ASTNode('P');
while(state->look_ahead(0) != ")")
{
state->next();
}
state->consume(")");
return(result);
}
ASTNode* script_parse_expression(ParserState* state, String accept_delim)
{
ASTNode* result = new ASTNode('E');
String tname = state->next();
String tnx = state->look_ahead(0);
if(tnx == ":")
{
// declaration
result->type = 'D';
result->identifier = tname;
state->consume(":");
if(state->look_ahead(0) != "=")
result->type_name = state->next();
if(state->look_ahead(0) == "=")
{
state->consume("=");
result->assign = script_parse_expression(state, accept_delim);
}
else
{
state->consume(accept_delim);
}
return(result);
}
else if(tnx == "=")
{
// assignment
result->type = 'A';
result->identifier = tname;
state->consume("=");
result->assign = script_parse_expression(state, accept_delim);
return(result);
}
else
{
// who knows
result->type = 'E';
result->identifier = tname;
tnx = state->look_ahead(0);
if(tnx == "(")
{
result->type = 'C';
result->call_params = script_parse_call_params(state);
}
state->consume(accept_delim);
return(result);
}
return(result);
}
ParserState* script_parse(StringList tokens)
{
ParserState* state = new ParserState();
state->tokens = tokens;
state->root = new ASTNode('R');
ASTNode* current_node = 0;
while(state->token_index < state->tokens.size())
{
if(!current_node)
{
current_node = script_parse_expression(state, ";");
state->root->children = current_node;
}
else
{
current_node->next = script_parse_expression(state, ";");
current_node = current_node->next;
}
}
return(state);
}
RENDER()
{
<>
<link rel="stylesheet" href='style.css'></link>
<h1>
<a href="index.uce">UCE Test</a>:
Script
</h1>
</>
<>
<h3>Code</h3>
<form action="?" method="post">
<textarea name="code"><?= first(context->post["code"]) ?></textarea>
<input type="submit" value="parse"/>
</form>
<pre><?
StringList tokens = script_tokenize(context->post["code"]);
ParserState* ps = script_parse(tokens);
print(ps->error+"\n");
print(ps->root->to_string());
?></pre>
Params
<pre><?= var_dump(context->params) ?></pre>
</>
}

34
test/utf8.uce Normal file
View File

@ -0,0 +1,34 @@
RENDER()
{
String raw = first(context->post["raw"], "■▧▲😂😆😏😱🇦🇽");
<>
<link rel="stylesheet" href='style.css'></link>
<h1>
<a href="index.uce">UCE Test</a>:
UTF-8
</h1>
<form action="?" method="post">
<div>
<label>split_utf8</label>
<input type="text" name="raw" value="<?= raw ?>"/>
</div>
<div>
<input type="submit" value="Submit Form"/>
</div>
</form>
<pre><?
u32 item_idx = 0;
for(auto seg : split_utf8(raw))
{
print(item_idx++, " : ", seg, "\n");
}
?></pre>
<pre><?= var_dump(context->params) ?></pre>
</>
}