:(scenario run_interactive_code)
recipe main [
2:address:array:character <- new [1:number/raw <- copy 34]
run-interactive 2:address:array:character
]
+mem: storing 34 in location 1
:(scenario run_interactive_empty)
recipe main [
1:address:array:character <- run-interactive 0
]
+mem: storing 0 in location 1
:(before "End Primitive Recipe Declarations")
RUN_INTERACTIVE,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["run-interactive"] = RUN_INTERACTIVE;
:(before "End Primitive Recipe Implementations")
case RUN_INTERACTIVE: {
if (SIZE(ingredients) != 1) {
raise << current_recipe_name() << ": 'run-interactive' requires exactly one ingredient, but got " << current_instruction().to_string() << '\n' << end();
break;
}
if (!scalar(ingredients.at(0))) {
raise << current_recipe_name() << ": first ingredient of 'run-interactive' should be a string, but got " << current_instruction().ingredients.at(0).to_string() << '\n' << end();
break;
}
bool new_code_pushed_to_stack = run_interactive(ingredients.at(0).at(0));
if (!new_code_pushed_to_stack) {
products.resize(5);
products.at(0).push_back(0);
products.at(1).push_back(trace_contents("warn"));
products.at(2).push_back(0);
products.at(3).push_back(trace_contents("app"));
products.at(4).push_back(1);
cleanup_run_interactive();
break;
}
else {
continue;
}
}
:(before "End Globals")
bool Track_most_recent_products = false;
:(before "End Setup")
Track_most_recent_products = false;
:(code)
bool run_interactive(long long int address) {
assert(Recipe_ordinal.find("interactive") != Recipe_ordinal.end() && Recipe_ordinal["interactive"] != 0);
if (!Current_scenario) {
for (long long int i = 1; i < Reserved_for_tests; ++i)
Memory.erase(i);
}
string command = trim(strip_comments(read_mu_string(address)));
if (command.empty()) return false;
Recipe.erase(Recipe_ordinal["interactive"]);
Name[Recipe_ordinal["interactive"]].clear();
Hide_warnings = true;
if (!Trace_stream) {
Trace_file = "";
Trace_stream = new trace_stream;
Trace_stream->collect_layers.insert("warn");
Trace_stream->collect_layers.insert("app");
}
load(string("recipe interactive [\n") +
"local-scope\n" +
"screen:address <- next-ingredient\n" +
"$start-tracking-products\n" +
command + "\n" +
"$stop-tracking-products\n" +
"reply screen\n" +
"]\n");
transform_all();
if (trace_count("warn") > 0) return false;
Current_routine->calls.push_front(call(Recipe_ordinal["sandbox"]));
return true;
}
:(before "End Load Recipes")
load(string(
"recipe interactive [\n") +
"]\n" +
"recipe sandbox [\n" +
"local-scope\n" +
"screen:address/shared <- new-fake-screen 30, 5\n" +
"r:number/routine_id <- start-running interactive:recipe, screen:address\n" +
"limit-time r, 100000/instructions\n" +
"wait-for-routine r\n" +
"sandbox-state:number <- routine-state r/routine_id\n" +
"completed?:boolean <- equal sandbox-state, 1/completed\n" +
"output:address:array:character <- $most-recent-products\n" +
"warnings:address:array:character <- save-trace [warn]\n" +
"stashes:address:array:character <- save-trace [app]\n" +
"$cleanup-run-interactive\n" +
"reply output, warnings, screen, stashes, completed?\n" +
"]\n");
transform_all();
recently_added_recipes.clear();
:(scenario run_interactive_comments)
recipe main [
1:address:array:character <- new [
add 2, 2]
2:address:array:character <- run-interactive 1:address:array:character
3:array:character <- copy *2:address:array:character
]
+mem: storing 52 in location 4
:(scenario run_interactive_just_comments_without_trace)
recipe main [
$close-trace
1:address:array:character <- new [
]
2:address:array:character <- run-interactive 1:address:array:character
3:array:character <- copy *2:address:array:character
]
:(before "End Primitive Recipe Declarations")
_START_TRACKING_PRODUCTS,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["$start-tracking-products"] = _START_TRACKING_PRODUCTS;
:(before "End Primitive Recipe Implementations")
case _START_TRACKING_PRODUCTS: {
Track_most_recent_products = true;
break;
}
:(before "End Primitive Recipe Declarations")
_STOP_TRACKING_PRODUCTS,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["$stop-tracking-products"] = _STOP_TRACKING_PRODUCTS;
:(before "End Primitive Recipe Implementations")
case _STOP_TRACKING_PRODUCTS: {
Track_most_recent_products = false;
break;
}
:(before "End Primitive Recipe Declarations")
_MOST_RECENT_PRODUCTS,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["$most-recent-products"] = _MOST_RECENT_PRODUCTS;
:(before "End Primitive Recipe Implementations")
case _MOST_RECENT_PRODUCTS: {
products.resize(1);
products.at(0).push_back(new_mu_string(Most_recent_products));
break;
}
:(before "End Primitive Recipe Declarations")
SAVE_TRACE,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["save-trace"] = SAVE_TRACE;
:(before "End Primitive Recipe Implementations")
case SAVE_TRACE: {
products.resize(1);
products.at(0).push_back(trace_contents(current_instruction().ingredients.at(0).name));
break;
}
:(before "End Primitive Recipe Declarations")
_CLEANUP_RUN_INTERACTIVE,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["$cleanup-run-interactive"] = _CLEANUP_RUN_INTERACTIVE;
:(before "End Primitive Recipe Implementations")
case _CLEANUP_RUN_INTERACTIVE: {
cleanup_run_interactive();
break;
}
:(code)
void cleanup_run_interactive() {
Hide_warnings = false;
if (Trace_stream && Trace_stream->is_narrowly_collecting("warn")) {
delete Trace_stream;
Trace_stream = NULL;
}
}
:(scenario "run_interactive_returns_stringified_result")
recipe main [
1:address:array:character <- new [add 2, 2]
2:address:array:character <- run-interactive 1:address:array:character
10:array:character <- copy 2:address:array:character/lookup
]
+mem: storing 52 in location 11
:(scenario "run_interactive_returns_string")
recipe main [
1:address:array:character <- new [
100:address:array:character <- new [a]
101:address:array:character <- new [b]
102:address:array:character <- string-append 100:address:array:character, 101:address:array:character
]
2:address:array:character <- run-interactive 1:address:array:character
10:array:character <- copy 2:address:array:character/lookup
]
+mem: storing 97 in location 11
+mem: storing 98 in location 12
:(scenario "run_interactive_returns_warnings")
recipe main [
1:address:array:character <- new [get 1234:number, foo:offset]
2:address:array:character, 3:address:array:character <- run-interactive 1:address:array:character
10:array:character <- copy 3:address:array:character/lookup
]
+mem: storing 117 in location 11
+mem: storing 110 in location 12
+mem: storing 107 in location 13
+mem: storing 110 in location 14
:(before "End Globals")
string Most_recent_products;
:(before "End Setup")
Most_recent_products = "";
:(before "End of Instruction")
if (Track_most_recent_products) {
track_most_recent_products(current_instruction(), products);
}
:(code)
void track_most_recent_products(const instruction& instruction, const vector<vector<double> >& products) {
ostringstream out;
for (long long int i = 0; i < SIZE(products); ++i) {
if (i < SIZE(instruction.products)) {
if (is_mu_string(instruction.products.at(i))) {
if (!scalar(products.at(i))) {
tb_shutdown();
cerr << read_mu_string(trace_contents("warn")) << '\n';
cerr << SIZE(products.at(i)) << ": ";
for (long long int j = 0; j < SIZE(products.at(i)); ++j)
cerr << products.at(i).at(j) << ' ';
cerr << '\n';
}
assert(scalar(products.at(i)));
out << read_mu_string(products.at(i).at(0)) << '\n';
continue;
}
}
for (long long int j = 0; j < SIZE(products.at(i)); ++j)
out << products.at(i).at(j) << ' ';
out << '\n';
}
Most_recent_products = out.str();
}
:(code)
string strip_comments(string in) {
ostringstream result;
for (long long int i = 0; i < SIZE(in); ++i) {
if (in.at(i) != '#') {
result << in.at(i);
}
else {
while (i < SIZE(in) && in.at(i) != '\n')
++i;
}
}
return result.str();
}
long long int stringified_value_of_location(long long int address) {
ostringstream out;
out << Memory[address];
return new_mu_string(out.str());
}
long long int trace_contents(const string& layer) {
if (!Trace_stream) return 0;
if (trace_count(layer) <= 0) return 0;
ostringstream out;
for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) {
if (p->label != layer) continue;
out << p->contents;
if (*--p->contents.end() != '\n') out << '\n';
}
string result = out.str();
assert(!result.empty());
truncate(result);
return new_mu_string(result);
}
void truncate(string& x) {
if (SIZE(x) > 512) {
x.erase(512);
*x.rbegin() = '\n';
*++x.rbegin() = '.';
*++++x.rbegin() = '.';
}
}
:(before "End Primitive Recipe Declarations")
RELOAD,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["reload"] = RELOAD;
:(before "End Primitive Recipe Implementations")
case RELOAD: {
if (SIZE(ingredients) != 1) {
raise << current_recipe_name() << ": 'reload' requires exactly one ingredient, but got " << current_instruction().to_string() << '\n' << end();
break;
}
if (!scalar(ingredients.at(0))) {
raise << current_recipe_name() << ": first ingredient of 'reload' should be a literal string, but got " << current_instruction().ingredients.at(0).original_string << '\n' << end();
break;
}
if (!Trace_stream) {
Trace_file = "";
Trace_stream = new trace_stream;
Trace_stream->collect_layers.insert("warn");
}
Hide_warnings = true;
Disable_redefine_warnings = true;
for (long long int i = 0; i < SIZE(recently_added_types); ++i) {
Type_ordinal.erase(Type[recently_added_types.at(i)].name);
Type.erase(recently_added_types.at(i));
}
string code = read_mu_string(ingredients.at(0).at(0));
vector<recipe_ordinal> recipes_reloaded = load(code);
for (long long int i = 0; i < SIZE(recipes_reloaded); ++i) {
Name.erase(recipes_reloaded.at(i));
}
transform_all();
Trace_stream->newline();
Disable_redefine_warnings = false;
Hide_warnings = false;
products.resize(1);
products.at(0).push_back(trace_contents("warn"));
if (Trace_stream->is_narrowly_collecting("warn")) {
delete Trace_stream;
Trace_stream = NULL;
}
break;
}