mu/014literal_string.cc

198 lines
4.9 KiB
C++
Raw Normal View History

2016-03-14 05:03:52 +00:00
//: For convenience, some instructions will take literal arrays of characters
//: (text or strings).
2015-03-31 06:15:03 +00:00
//:
//: Instead of quotes, we'll use [] to delimit strings. That'll reduce the
2015-03-31 17:17:19 +00:00
//: need for escaping since we can support nested brackets. And we can also
//: imagine that 'recipe' might one day itself be defined in mu, doing its own
//: parsing.
2015-03-31 06:15:03 +00:00
:(scenarios load)
2015-04-24 17:19:03 +00:00
:(scenario string_literal)
def main [
2015-04-29 05:42:54 +00:00
1:address:array:character <- copy [abc def] # copy can't really take a string
2015-03-31 04:22:29 +00:00
]
+parse: ingredient: {"abc def": "literal-string"}
2015-03-31 04:22:29 +00:00
2015-04-24 17:19:03 +00:00
:(scenario string_literal_with_colons)
def main [
2015-04-29 05:42:54 +00:00
1:address:array:character <- copy [abc:def/ghi]
]
+parse: ingredient: {"abc:def/ghi": "literal-string"}
2015-03-31 04:22:29 +00:00
:(before "End Mu Types Initialization")
put(Type_ordinal, "literal-string", 0);
2015-03-31 04:22:29 +00:00
2015-10-27 18:31:05 +00:00
:(before "End next_word Special-cases")
2015-11-17 06:39:14 +00:00
if (in.peek() == '[') {
string result = slurp_quoted(in);
skip_whitespace_and_comments_but_not_newline(in);
2015-11-17 06:39:14 +00:00
return result;
}
2015-03-31 04:22:29 +00:00
:(code)
string slurp_quoted(istream& in) {
ostringstream out;
assert(has_data(in)); assert(in.peek() == '['); out << static_cast<char>(in.get()); // slurp the '['
2015-09-15 04:38:58 +00:00
if (is_code_string(in, out))
slurp_quoted_comment_aware(in, out);
else
slurp_quoted_comment_oblivious(in, out);
return out.str();
}
// A string is a code string if it contains a newline before any non-whitespace
// todo: support comments before the newline. But that gets messy.
2015-10-27 21:49:36 +00:00
bool is_code_string(istream& in, ostream& out) {
while (has_data(in)) {
char c = in.get();
if (!isspace(c)) {
in.putback(c);
return false;
}
out << c;
if (c == '\n') {
return true;
}
}
return false;
}
// Read a regular string. Regular strings can only contain other regular
// strings.
2015-10-27 21:49:36 +00:00
void slurp_quoted_comment_oblivious(istream& in, ostream& out) {
int brace_depth = 1;
while (has_data(in)) {
2015-03-31 04:22:29 +00:00
char c = in.get();
if (c == '\\') {
2015-06-14 19:57:51 +00:00
out << static_cast<char>(in.get());
continue;
}
2015-03-31 04:22:29 +00:00
out << c;
2015-05-28 20:31:20 +00:00
if (c == '[') ++brace_depth;
if (c == ']') --brace_depth;
if (brace_depth == 0) break;
2015-03-31 04:22:29 +00:00
}
if (!has_data(in) && brace_depth > 0) {
2016-02-26 21:04:55 +00:00
raise << "unbalanced '['\n" << end();
out.clear();
}
}
// Read a code string. Code strings can contain either code or regular strings.
2015-10-27 21:49:36 +00:00
void slurp_quoted_comment_aware(istream& in, ostream& out) {
char c;
while (in >> c) {
if (c == '\\') {
out << static_cast<char>(in.get());
continue;
}
if (c == '#') {
out << c;
while (has_data(in) && in.peek() != '\n') out << static_cast<char>(in.get());
continue;
}
if (c == '[') {
in.putback(c);
// recurse
out << slurp_quoted(in);
continue;
}
out << c;
if (c == ']') return;
2015-05-30 19:34:40 +00:00
}
2016-02-26 21:04:55 +00:00
raise << "unbalanced '['\n" << end();
out.clear();
2015-03-31 04:22:29 +00:00
}
2015-03-31 06:15:03 +00:00
2015-07-28 23:38:37 +00:00
:(after "Parsing reagent(string s)")
if (s.at(0) == '[') {
assert(*s.rbegin() == ']');
// delete [] delimiters
s.erase(0, 1);
strip_last(s);
2015-07-28 23:38:37 +00:00
name = s;
type = new type_tree("literal-string", 0);
2015-07-28 23:38:37 +00:00
return;
}
//: Unlike other reagents, escape newlines in literal strings to make them
//: more friendly to trace().
2015-06-14 18:30:32 +00:00
:(after "string to_string(const reagent& r)")
if (is_literal_string(r))
return emit_literal_string(r.name);
2015-06-14 06:17:13 +00:00
:(code)
bool is_literal_string(const reagent& x) {
return x.type && x.type->name == "literal-string";
}
2015-06-14 06:17:13 +00:00
string emit_literal_string(string name) {
size_t pos = 0;
while (pos != string::npos)
pos = replace(name, "\n", "\\n", pos);
return "{\""+name+"\": \"literal-string\"}";
2015-06-14 06:17:13 +00:00
}
size_t replace(string& str, const string& from, const string& to, size_t n) {
size_t result = str.find(from, n);
if (result != string::npos)
str.replace(result, from.length(), to);
return result;
}
void strip_last(string& s) {
if (!s.empty()) s.erase(SIZE(s)-1);
}
2015-04-24 17:19:03 +00:00
:(scenario string_literal_nested)
def main [
2015-04-29 05:42:54 +00:00
1:address:array:character <- copy [abc [def]]
2015-03-31 17:17:19 +00:00
]
+parse: ingredient: {"abc [def]": "literal-string"}
:(scenario string_literal_escaped)
def main [
1:address:array:character <- copy [abc \[def]
]
+parse: ingredient: {"abc [def": "literal-string"}
:(scenario string_literal_escaped_comment_aware)
def main [
1:address:array:character <- copy [
abc \\\[def]
]
+parse: ingredient: {"\nabc \[def": "literal-string"}
:(scenario string_literal_and_comment)
def main [
1:address:array:character <- copy [abc] # comment
]
+parse: --- defining main
+parse: instruction: copy
2015-11-01 04:56:17 +00:00
+parse: number of ingredients: 1
+parse: ingredient: {"abc": "literal-string"}
+parse: product: {1: ("address" "array" "character")}
2015-06-14 17:07:00 +00:00
:(scenario string_literal_escapes_newlines_in_trace)
def main [
2015-06-14 17:07:00 +00:00
copy [abc
def]
]
+parse: ingredient: {"abc\ndef": "literal-string"}
:(scenario string_literal_can_skip_past_comments)
def main [
copy [
# ']' inside comment
bar
]
]
+parse: ingredient: {"\n # ']' inside comment\n bar\n ": "literal-string"}
:(scenario string_literal_empty)
def main [
copy []
]
+parse: ingredient: {"": "literal-string"}