-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepl.cpp
149 lines (122 loc) · 2.26 KB
/
Repl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include <stdio.h>
#include <string.h>
#include <QDebug>
#include "Repl.h"
#include "Parser.h"
#include "PPrint.h"
#include "StdLib.h"
// JANK! librl isn't namespaced!
namespace ReadLine
{
#include <readline/readline.h>
#include <readline/history.h>
}
Repl::Repl()
{
StdLib().load(_eval);
}
char *Repl::prompt()
{
static char p[] = "\033[36mREFAL >\033[0m ";
return p;
}
QString Repl::readLine()
{
char *line = ReadLine::readline(prompt());
if (!line)
{
_running = false;
return "";
}
QString string = QString::fromUtf8(line);
free(line);
return string;
}
void Repl::addHistory(QString line)
{
ReadLine::add_history(line.toUtf8());
}
void Repl::start()
{
while (_running)
{
QString line = readLine().trimmed();
QList<AstNode> expr;
if (!line.isEmpty())
addHistory(line);
ParseResult ret;
Parser parser{line};
if (trySpecialCase(line))
{}
else if ((ret = tryEvaluate(parser, &expr)))
{
bool okay = true;
QList<Token> out;
for (const AstNode &node : qAsConst(expr))
{
RuntimeResult res = _eval.evaluate(node, VarContext());
if (res.success())
{
out.append(res.result());
}
else
{
qDebug() << "Failed to evaluate" << node;
qDebug() << res.message();
okay = false;
break;
}
}
if (okay)
{
sout(pprint(out));
}
}
else if (ret.status() == ParseResult::INCOMPLETE)
{
qDebug() << "Parse error: incomplete input:";
sout(pprint(ret, parser));
ReadLine::rl_insert_text("Hello there!");
ReadLine::rl_redisplay();
}
else
{
qDebug() << "Parse error:" << ret.message();
}
}
}
ParseResult Repl::trySpecialCase(QString line)
{
if (line.startsWith("."))
{
if (line == ".q" || line == ".quit")
{
_running = false;
}
else
{
qDebug().noquote() << "Unknown special command, try .help";
}
return true;
}
return false;
}
ParseResult Repl::tryEvaluate(Parser &parser, QList<AstNode> *expr)
{
Function func;
ParseResult ret;
if ((ret = parser.parseFunctionDefinition(&func)))
{
_eval.addFunction(func);
*expr = {};
return true;
}
else if (ret.status() == ParseResult::INCOMPLETE)
{
return ret;
}
else
{
return parser.parseMany(expr);
}
}