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

Unified Diff: src/JsValue.cpp

Issue 29417605: Issue 5034 - Part 3: Create plain JsValue instead of JsValuePtr (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Pass JsEngine by ref Created April 20, 2017, 1:01 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/JsEngine.cpp ('k') | src/Notification.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/JsValue.cpp
===================================================================
--- a/src/JsValue.cpp
+++ b/src/JsValue.cpp
@@ -32,25 +32,43 @@
}
AdblockPlus::JsValue::JsValue(AdblockPlus::JsValue&& src)
: jsEngine(src.jsEngine),
value(std::move(src.value))
{
}
+AdblockPlus::JsValue::JsValue(const JsValue& src)
+ : jsEngine(src.jsEngine)
+{
+ const JsContext context(src.jsEngine);
+ value.reset(new v8::Persistent<v8::Value>(src.jsEngine->GetIsolate(), *src.value));
+}
+
AdblockPlus::JsValue::~JsValue()
{
if (value)
{
value->Dispose();
value.reset();
}
}
+JsValue& AdblockPlus::JsValue::operator=(const JsValue& src)
+{
+ const JsContext context(src.jsEngine);
+ if (value)
+ value->Dispose();
+ jsEngine = src.jsEngine;
+ value.reset(new v8::Persistent<v8::Value>(src.jsEngine->GetIsolate(), *src.value));
+
+ return *this;
+}
+
bool AdblockPlus::JsValue::IsUndefined() const
{
const JsContext context(jsEngine);
return UnwrapValue()->IsUndefined();
}
bool AdblockPlus::JsValue::IsNull() const
{
@@ -122,32 +140,32 @@
const JsContext context(jsEngine);
JsValueList result;
v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(UnwrapValue());
uint32_t length = array->Length();
for (uint32_t i = 0; i < length; i++)
{
v8::Local<v8::Value> item = array->Get(i);
- result.push_back(JsValuePtr(new JsValue(jsEngine, item)));
+ result.push_back(JsValue(jsEngine, item));
}
return result;
}
std::vector<std::string> AdblockPlus::JsValue::GetOwnPropertyNames() const
{
if (!IsObject())
throw new std::runtime_error("Attempting to get propert list for a non-object");
const JsContext context(jsEngine);
v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(UnwrapValue());
- JsValueList properties = JsValuePtr(new JsValue(jsEngine, object->GetOwnPropertyNames()))->AsList();
+ JsValueList properties = JsValue(jsEngine, object->GetOwnPropertyNames()).AsList();
std::vector<std::string> result;
for (const auto& property : properties)
- result.push_back(property->AsString());
+ result.push_back(property.AsString());
return result;
}
AdblockPlus::JsValue AdblockPlus::JsValue::GetProperty(const std::string& name) const
{
if (!IsObject())
throw new std::runtime_error("Attempting to get property of a non-object");
@@ -168,21 +186,16 @@
obj->Set(property, val);
}
v8::Local<v8::Value> AdblockPlus::JsValue::UnwrapValue() const
{
return v8::Local<v8::Value>::New(jsEngine->GetIsolate(), *value);
}
-JsValue AdblockPlus::JsValue::Clone() const
-{
- return JsValue(jsEngine, UnwrapValue());
-}
-
void AdblockPlus::JsValue::SetProperty(const std::string& name, const std::string& val)
{
const JsContext context(jsEngine);
SetProperty(name, Utils::ToV8String(jsEngine->GetIsolate(), val));
}
void AdblockPlus::JsValue::SetProperty(const std::string& name, int64_t val)
{
@@ -207,26 +220,26 @@
if (!IsObject())
throw new std::runtime_error("Cannot get constructor of a non-object");
const JsContext context(jsEngine);
v8::Local<v8::Object> obj = v8::Local<v8::Object>::Cast(UnwrapValue());
return Utils::FromV8String(obj->GetConstructorName());
}
-JsValue JsValue::Call(const JsConstValueList& params, const JsValuePtr& thisPtr) const
+JsValue JsValue::Call(const JsValueList& params, const JsValuePtr& thisPtr) const
{
const JsContext context(jsEngine);
v8::Local<v8::Object> thisObj = thisPtr ?
v8::Local<v8::Object>::Cast(thisPtr->UnwrapValue()) :
context.GetV8Context()->Global();
std::vector<v8::Handle<v8::Value>> argv;
for (const auto& param : params)
- argv.push_back(param->UnwrapValue());
+ argv.push_back(param.UnwrapValue());
return Call(argv, thisObj);
}
JsValue JsValue::Call(const JsValue& arg) const
{
const JsContext context(jsEngine);
« no previous file with comments | « src/JsEngine.cpp ('k') | src/Notification.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld