| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- //
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include <Duktape/duktape.h>
- #include <Atomic/Core/Profiler.h>
- #include <Atomic/Core/CoreEvents.h>
- #include <Atomic/IO/File.h>
- #include <Atomic/IO/Log.h>
- #include <Atomic/IO/FileSystem.h>
- #include <Atomic/IO/PackageFile.h>
- #include <Atomic/Resource/ResourceCache.h>
- #include "JSRequire.h"
- #include "JSPlugin.h"
- #include "JSEvents.h"
- #include "JSVM.h"
- #include "JSAtomic.h"
- #include "JSUI.h"
- #include "JSMetrics.h"
- #include "JSEventHelper.h"
- namespace Atomic
- {
- JSVM* JSVM::instance_ = NULL;
- JSVM::JSVM(Context* context) :
- Object(context),
- ctx_(0),
- gcTime_(0.0f)
- {
- assert(!instance_);
- instance_ = this;
- metrics_ = new JSMetrics(context, this);
- SharedPtr<JSEventDispatcher> dispatcher(new JSEventDispatcher(context_));
- context_->RegisterSubsystem(dispatcher);
- context_->AddGlobalEventListener(dispatcher);
- }
- JSVM::~JSVM()
- {
- context_->RemoveGlobalEventListener(context_->GetSubsystem<JSEventDispatcher>());
- context_->RemoveSubsystem(JSEventDispatcher::GetTypeStatic());
- duk_destroy_heap(ctx_);
- instance_ = NULL;
- }
- void JSVM::InitJSContext()
- {
- ctx_ = duk_create_heap_default();
- jsapi_init_atomic(this);
- // register whether we are in the editor
- duk_get_global_string(ctx_, "Atomic");
- duk_push_boolean(ctx_, context_->GetEditorContext() ? 1 : 0);
- duk_put_prop_string(ctx_, -2, "editor");
- duk_pop(ctx_);
- duk_push_global_stash(ctx_);
- duk_push_object(ctx_);
- duk_put_prop_index(ctx_, -2, JS_GLOBALSTASH_INDEX_COMPONENTS);
- duk_pop(ctx_);
- js_init_require(this);
- js_init_jsplugin(this);
- ui_ = new JSUI(context_);
- // handle this elsewhere?
- SubscribeToEvents();
- }
- void JSVM::SubscribeToEvents()
- {
- SubscribeToEvent(E_UPDATE, HANDLER(JSVM, HandleUpdate));
- }
- void JSVM::HandleUpdate(StringHash eventType, VariantMap& eventData)
- {
- PROFILE(JSVM_HandleUpdate);
- using namespace Update;
- // Take the frame time step, which is stored as a float
- float timeStep = eventData[P_TIMESTEP].GetFloat();
- gcTime_ += timeStep;
- if (gcTime_ > 5.0f)
- {
- PROFILE(JSVM_GC);
- // run twice to call finalizers
- // see duktape docs
- // also ensure #define DUK_OPT_NO_VOLUNTARY_GC
- // is enabled in duktape.h
- duk_gc(ctx_, 0);
- duk_gc(ctx_, 0);
- gcTime_ = 0;
- }
- duk_get_global_string(ctx_, "__js_atomic_main_update");
- if (duk_is_function(ctx_, -1))
- {
- duk_push_number(ctx_, timeStep);
- duk_pcall(ctx_, 1);
- duk_pop(ctx_);
- }
- else
- {
- duk_pop(ctx_);
- }
- }
- bool JSVM::ExecuteFunction(const String& functionName)
- {
- duk_get_global_string(ctx_, functionName.CString());
- if (duk_is_function(ctx_, -1))
- {
- bool ok = true;
- if (duk_pcall(ctx_, 0) != 0)
- {
- ok = false;
- if (duk_is_object(ctx_, -1))
- {
- SendJSErrorEvent();
- }
- else
- {
- assert(0);
- }
- }
- duk_pop(ctx_);
- return ok;
- }
- else
- {
- duk_pop(ctx_);
- }
- return false;
- }
- void JSVM::SendJSErrorEvent(const String& filename)
- {
- duk_context* ctx = GetJSContext();
- using namespace JSError;
- VariantMap eventData;
- if (duk_is_string(ctx, -1))
- {
- eventData[P_ERRORNAME] = "(Unknown Error Name)";
- eventData[P_ERRORFILENAME] = "(Unknown Filename)";
- eventData[P_ERRORLINENUMBER] = -1;
- eventData[P_ERRORMESSAGE] = duk_to_string(ctx, -1);
- eventData[P_ERRORSTACK] = "";
- SendEvent(E_JSERROR, eventData);
- return;
- }
- assert(duk_is_object(ctx, -1));
- duk_get_prop_string(ctx, -1, "fileName");
- if (duk_is_string(ctx, -1))
- {
- eventData[P_ERRORFILENAME] = duk_to_string(ctx, -1);
- }
- else
- {
- eventData[P_ERRORFILENAME] = filename;
- }
- // Component script are wrapped within a closure, the line number
- // needs to be offset by this header
- duk_get_prop_string(ctx, -2, "lineNumber");
- int lineNumber = (int) (duk_to_number(ctx, -1));
- eventData[P_ERRORLINENUMBER] = lineNumber;
- duk_get_prop_string(ctx, -3, "name");
- String name = duk_to_string(ctx, -1);
- eventData[P_ERRORNAME] = name;
- duk_get_prop_string(ctx, -4, "message");
- String message = duk_to_string(ctx, -1);
- eventData[P_ERRORMESSAGE] = message;
- // we're not getting good file/line from duktape on parser errors
- if (name == "SyntaxError")
- {
- lineNumber = -1;
- // parse line if we have it
- if (message.Contains("(line "))
- {
- if (!filename.Length())
- eventData[P_ERRORFILENAME] = lastModuleSearchFilename_;
- unsigned pos = message.Find("(line ");
- const char* parse = message.CString() + pos + 6;
- String number;
- while (*parse >= '0' && *parse<='9')
- {
- number += *parse;
- parse++;
- }
- lineNumber = ToInt(number);
- }
- eventData[P_ERRORLINENUMBER] = lineNumber;
- }
- duk_get_prop_string(ctx, -5, "stack");
- String stack = duk_to_string(ctx, -1);
- eventData[P_ERRORSTACK] = stack;
- duk_pop_n(ctx, 5);
- LOGERRORF("JSErrorEvent: %s : Line %i\n Name: %s\n Message: %s\n Stack:%s",
- filename.CString(), lineNumber, name.CString(), message.CString(), stack.CString());
- SendEvent(E_JSERROR, eventData);
- }
- int JSVM::GetRealLineNumber(const String& fileName, const int lineNumber) {
- int realLineNumber = lineNumber;
- String mapPath = fileName;
- if (!mapPath.EndsWith(".js.map"))
- mapPath += ".js.map";
- if (mapPath.EndsWith(".js")) {
- return realLineNumber;
- }
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- String path;
- const Vector<String>& searchPaths = GetModuleSearchPaths();
- for (unsigned i = 0; i < searchPaths.Size(); i++)
- {
- String checkPath = searchPaths[i] + mapPath;
- if (cache->Exists(checkPath))
- {
- path = checkPath;
- break;
- }
- }
- if (!path.Length())
- return realLineNumber;
- SharedPtr<File> mapFile(GetSubsystem<ResourceCache>()->GetFile(path));
- //if there's no source map file, maybe you use a pure js, so give an error, or maybe forgot to generate source-maps :(
- if (mapFile.Null())
- {
- return realLineNumber;
- }
- String map;
- mapFile->ReadText(map);
- int top = duk_get_top(ctx_);
- duk_get_global_string(ctx_, "require");
- duk_push_string(ctx_, "AtomicEditor/EditorScripts/Lib/jsutils");
- if (duk_pcall(ctx_, 1))
- {
- printf("Error: %s\n", duk_safe_to_string(ctx_, -1));
- duk_set_top(ctx_, top);
- return false;
- }
- duk_get_prop_string(ctx_, -1, "getRealLineNumber");
- duk_push_string(ctx_, map.CString());
- duk_push_int(ctx_, lineNumber);
- bool ok = true;
- if (duk_pcall(ctx_, 2))
- {
- ok = false;
- printf("Error: %s\n", duk_safe_to_string(ctx_, -1));
- }
- else
- {
- realLineNumber = duk_to_int(ctx_, -1);
- }
- duk_set_top(ctx_, top);
- return realLineNumber;
- }
- bool JSVM::ExecuteScript(const String& scriptPath)
- {
- String path = scriptPath;
- if (!path.StartsWith("Scripts/"))
- path = "Scripts/" + path;
- if (!path.EndsWith(".js"))
- path += ".js";
- SharedPtr<File> file (GetSubsystem<ResourceCache>()->GetFile(path));
- if (file.Null())
- {
- return false;
- }
- String source;
- file->ReadText(source);
- source.Append('\n');
- duk_push_string(ctx_, file->GetFullPath().CString());
- if (duk_eval_raw(ctx_, source.CString(), 0,
- DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN) != 0)
- {
- if (duk_is_object(ctx_, -1))
- SendJSErrorEvent(path);
- duk_pop(ctx_);
- return false;
- }
- duk_pop(ctx_);
- return true;
- }
- bool JSVM::ExecuteFile(File *file)
- {
- if (!file)
- return false;
- String source;
- file->ReadText(source);
- source.Append('\n');
- duk_push_string(ctx_, file->GetFullPath().CString());
- if (duk_eval_raw(ctx_, source.CString(), 0,
- DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN) != 0)
- {
- SendJSErrorEvent(file->GetFullPath());
- duk_pop(ctx_);
- return false;
- }
- duk_pop(ctx_);
- return true;
- }
- void JSVM::GC()
- {
- // run twice to ensure finalizers are run
- duk_gc(ctx_, 0);
- duk_gc(ctx_, 0);
- }
- bool JSVM::ExecuteMain()
- {
- if (!GetSubsystem<ResourceCache>()->Exists("Scripts/main.js"))
- return true;
- duk_get_global_string(ctx_, "require");
- duk_push_string(ctx_, "Scripts/main");
- if (duk_pcall(ctx_, 1) != 0)
- {
- SendJSErrorEvent();
- return false;
- }
- if (duk_is_object(ctx_, -1))
- {
- duk_get_prop_string(ctx_, -1, "update");
- if (duk_is_function(ctx_, -1))
- {
- // store function for main loop
- duk_put_global_string(ctx_, "__js_atomic_main_update");
- }
- else
- {
- duk_pop(ctx_);
- }
- }
- // pop main module
- duk_pop(ctx_);
- return true;
- }
- }
|