PorygonLang/src/Script.cpp

158 lines
5.5 KiB
C++
Raw Normal View History

#include <utility>
#include <vector>
#include <locale>
#include <codecvt>
2019-05-21 10:59:15 +00:00
#include "Script.hpp"
2019-05-21 11:56:08 +00:00
#include "Parser/Lexer.hpp"
#include "Parser/Parser.hpp"
#include "Binder/Binder.hpp"
#include "EvaluateResult.hpp"
2019-05-21 10:59:15 +00:00
Porygon::Script* Porygon::Script::Create(const u16string& script) {
2019-06-18 15:14:18 +00:00
return new Script(script);
2019-05-21 10:59:15 +00:00
}
std::u16string To_UTF16(const string &s)
{
std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t> conv;
return conv.from_bytes(s);
}
Porygon::Script *Porygon::Script::Create(const string &script) {
return Script::Create(To_UTF16(script));
}
2019-07-04 16:24:49 +00:00
Porygon::Script::Script(const u16string& s)
: Diagnostics(make_shared<Diagnostics::DiagnosticsHolder>(s)),
_boundScript(nullptr),
_scriptVariables(new map<Utilities::HashedString, EvalValuePointer>()),
_scriptTypes(new unordered_map<Utilities::HashedString, shared_ptr<ScriptType>>{}),
_scriptOptions(nullptr)
2019-07-04 16:24:49 +00:00
{
_evaluator = new Evaluator(this -> _scriptVariables, this -> GetScriptOptions());
2019-06-18 15:14:18 +00:00
this -> Parse(s);
2019-05-23 16:50:09 +00:00
}
EvalValuePointer Porygon::Script::Evaluate() {
return _evaluator->Evaluate(_boundScript.get());
2019-05-23 16:50:09 +00:00
}
Porygon::Script::~Script() {
delete this -> _evaluator;
this->_scriptVariables->clear();
delete this->_scriptVariables;
this->_scriptTypes->clear();
delete this->_scriptTypes;
2019-05-21 12:15:39 +00:00
}
void Porygon::Script::Parse(const u16string& script) {
auto lexer = Lexer(script, this);
2019-05-21 10:59:15 +00:00
auto lexResult = lexer.Lex();
auto parser = Parser::Parser(lexResult, this);
2019-05-21 10:59:15 +00:00
auto parseResult = parser.Parse();
for (auto token : lexResult){
delete token;
}
lexResult.clear();
if (!Diagnostics->HasErrors()){
map<Utilities::HashedString, BoundVariable*> scriptScope;
unordered_map<Utilities::HashedString, shared_ptr<const ScriptType>> variableTypes;
auto bindScope = new BoundScope(&scriptScope, &variableTypes);
this->_boundScript = shared_ptr<BoundScriptStatement>(Binder::Binder::Bind(this, parseResult, bindScope));
2019-05-28 15:49:03 +00:00
for (const auto& v : scriptScope){
this->_scriptVariables -> insert({v.first, nullptr});
2019-05-28 15:49:03 +00:00
delete v.second;
}
for (const auto& v : variableTypes){
this->_scriptTypes -> insert({v.first, nullptr});
}
2019-05-28 15:49:03 +00:00
scriptScope.clear();
variableTypes.clear();
}
delete parseResult;
2019-05-21 10:59:15 +00:00
}
2019-05-21 12:15:39 +00:00
const EvalValue* Porygon::Script::GetVariable(const u16string &key) {
return _scriptVariables -> at(HashedString::CreateLookup(key)).Clone();
}
bool Porygon::Script::HasVariable(const u16string &key) {
auto f = _scriptVariables->find(HashedString::CreateLookup(key));
return f != _scriptVariables->end();
}
bool Porygon::Script::HasFunction(const u16string &key) {
auto f = _scriptVariables->find(HashedString::CreateLookup(key));
2019-06-13 14:26:10 +00:00
return f != _scriptVariables->end() && f.operator->()->second->GetTypeClass() == TypeClass ::Function;
}
const EvalValue* Porygon::Script::CallFunction(const u16string &key, const vector<EvalValue *>& variables) {
auto var = (GenericFunctionEvalValue*)GetVariable(key);
return this->_evaluator->EvaluateFunction(var, variables);
}
Porygon::Script *Porygon::Script::Clone(const Porygon::Script *script) {
auto s = new Script(script->_boundScript, script->Diagnostics);
for (const auto& v: *script->_scriptVariables){
s->_scriptVariables->insert({v.first, nullptr});
}
for (const auto& v: *script->_scriptTypes){
s->_scriptTypes->insert({v.first, v.second});
}
s->_returnType = script->_returnType;
return s;
}
Porygon::Script::Script(shared_ptr<BoundScriptStatement> boundScript,
2019-07-04 16:24:49 +00:00
shared_ptr<Porygon::Diagnostics::DiagnosticsHolder> diagnostics)
: _boundScript(std::move(boundScript)),
Diagnostics(std::move(diagnostics)),
_scriptVariables(new map<Utilities::HashedString, EvalValuePointer>()),
_scriptTypes(new unordered_map<Utilities::HashedString, shared_ptr<ScriptType>>{}),
_scriptOptions(nullptr)
2019-07-04 16:24:49 +00:00
{
_evaluator = new Evaluator(_scriptVariables, this -> GetScriptOptions());
}
extern "C" {
Porygon::Script* CreateScript(char16_t * s){
return Porygon::Script::Create(s);
}
Porygon::EvaluateResult* EvaluateScript(Porygon::Script* script){
try{
auto result = script -> Evaluate();
return new Porygon::EvaluateResult(result.Take());
}
catch (const EvaluationException& e){
return new Porygon::EvaluateResult(e.what());
}
}
bool HasVariable(Porygon::Script* script, const char16_t* key){
return script->HasVariable(key);
}
2019-07-25 15:23:54 +00:00
const EvalValue* GetVariable(Porygon::Script* script, const char16_t* key){
return script->GetVariable(key);
}
bool HasFunction(Porygon::Script* script, const char16_t* key){
return script->HasFunction(key);
}
Porygon::EvaluateResult* CallFunction(Porygon::Script* script, const char16_t* key, EvalValue* parameters[], int parameterCount){
try{
std::vector<EvalValue*> v(parameters, parameters + parameterCount);
auto result = script->CallFunction(key, v);
return new Porygon::EvaluateResult(result);
}
catch (const EvaluationException& e){
return new Porygon::EvaluateResult(e.what());
}
}
const char * GetResultError(Porygon::EvaluateResult * result){
return result->GetError();
}
}