Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/JsEngine.cpp

Issue 10184021: Some refactoring of global JavaScript objects (Closed)
Patch Set: Unbitrotted patch Created April 16, 2013, 3:32 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/GlobalJsObject.cpp ('k') | src/JsValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/JsEngine.cpp
===================================================================
--- a/src/JsEngine.cpp
+++ b/src/JsEngine.cpp
@@ -3,25 +3,22 @@
#include "GlobalJsObject.h"
#include "Utils.h"
namespace
{
v8::Handle<v8::Context> CreateContext(
v8::Isolate* isolate,
- AdblockPlus::FileSystem& fileSystem,
- AdblockPlus::WebRequest& webRequest,
- AdblockPlus::ErrorCallback& errorCallback)
+ AdblockPlus::JsEngine& jsEngine)
{
const v8::Locker locker(isolate);
const v8::HandleScope handleScope;
const v8::Handle<v8::ObjectTemplate> global =
- AdblockPlus::GlobalJsObject::Create(fileSystem, webRequest,
- errorCallback);
+ AdblockPlus::GlobalJsObject::Create(jsEngine);
return v8::Context::New(0, global);
}
v8::Handle<v8::Script> CompileScript(const std::string& source, const std::string& filename)
{
const v8::Handle<v8::String> v8Source = v8::String::New(source.c_str());
if (filename.length())
{
@@ -58,18 +55,19 @@ AdblockPlus::JsError::JsError(const v8::
const v8::Handle<v8::Message> message)
: std::runtime_error(ExceptionToString(exception, message))
{
}
AdblockPlus::JsEngine::JsEngine(FileSystem* const fileSystem,
WebRequest* const webRequest,
ErrorCallback* const errorCallback)
- : fileSystem(fileSystem), isolate(v8::Isolate::GetCurrent()),
- context(CreateContext(isolate, *fileSystem, *webRequest, *errorCallback))
+ : fileSystem(*fileSystem), webRequest(*webRequest),
+ errorCallback(*errorCallback), isolate(v8::Isolate::GetCurrent()),
+ context(CreateContext(isolate, *this))
{
}
AdblockPlus::JsValuePtr AdblockPlus::JsEngine::Evaluate(const std::string& source,
const std::string& filename)
{
const Context context(*this);
const v8::TryCatch tryCatch;
@@ -77,17 +75,17 @@ AdblockPlus::JsValuePtr AdblockPlus::JsE
CheckTryCatch(tryCatch);
v8::Local<v8::Value> result = script->Run();
CheckTryCatch(tryCatch);
return JsValuePtr(new JsValue(*this, result));
}
void AdblockPlus::JsEngine::Load(const std::string& scriptPath)
{
- const std::tr1::shared_ptr<std::istream> file = fileSystem->Read(scriptPath);
+ const std::tr1::shared_ptr<std::istream> file = fileSystem.Read(scriptPath);
if (!file || !*file)
throw std::runtime_error("Unable to load script " + scriptPath);
Evaluate(Utils::Slurp(*file));
}
void AdblockPlus::JsEngine::Gc()
{
while (!v8::V8::IdleNotification());
@@ -106,13 +104,35 @@ AdblockPlus::JsValuePtr AdblockPlus::JsE
}
AdblockPlus::JsValuePtr AdblockPlus::JsEngine::NewValue(bool val)
{
const Context context(*this);
return JsValuePtr(new JsValue(*this, v8::Boolean::New(val)));
}
+AdblockPlus::JsValuePtr AdblockPlus::JsEngine::NewObject()
+{
+ const Context context(*this);
+ return JsValuePtr(new JsValue(*this, v8::Object::New()));
+}
+
+AdblockPlus::JsEngine& AdblockPlus::JsEngine::FromArguments(const v8::Arguments& arguments)
+{
+ const v8::Local<const v8::External> external =
+ v8::Local<const v8::External>::Cast(arguments.Data());
+ return *static_cast<JsEngine* const>(external->Value());
+}
+
+AdblockPlus::JsValueList AdblockPlus::JsEngine::ConvertArguments(const v8::Arguments& arguments)
+{
+ const Context context(*this);
+ JsValueList list;
+ for (int i = 0; i < arguments.Length(); i++)
+ list.push_back(JsValuePtr(new JsValue(*this, arguments[i])));
+ return list;
+}
+
AdblockPlus::JsEngine::Context::Context(const JsEngine& jsEngine)
: locker(jsEngine.isolate), handleScope(),
contextScope(jsEngine.context)
{
}
« no previous file with comments | « src/GlobalJsObject.cpp ('k') | src/JsValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld