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

Side by Side Diff: src/JsValue.cpp

Issue 5598762307158016: Issue 1550 - Get rid of V8ValueHolder.h (Closed)
Patch Set: rebase Created May 20, 2016, 3:20 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/JsEngine.cpp ('k') | src/Notification.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2016 Eyeo GmbH 3 * Copyright (C) 2006-2016 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 #include <vector> 18 #include <vector>
19 #include <AdblockPlus.h> 19 #include <AdblockPlus.h>
20 20
21 #include "JsContext.h" 21 #include "JsContext.h"
22 #include "JsError.h" 22 #include "JsError.h"
23 #include "Utils.h" 23 #include "Utils.h"
24 24
25 AdblockPlus::JsValue::JsValue(AdblockPlus::JsEnginePtr jsEngine, 25 AdblockPlus::JsValue::JsValue(AdblockPlus::JsEnginePtr jsEngine,
26 v8::Handle<v8::Value> value) 26 v8::Handle<v8::Value> value)
27 : jsEngine(jsEngine), 27 : jsEngine(jsEngine),
28 value(jsEngine->isolate, value) 28 value(new v8::Persistent<v8::Value>(jsEngine->isolate, value))
29 { 29 {
30 } 30 }
31 31
32 AdblockPlus::JsValue::JsValue(AdblockPlus::JsValuePtr value) 32 AdblockPlus::JsValue::JsValue(AdblockPlus::JsValue&& src)
33 : jsEngine(value->jsEngine), 33 : jsEngine(src.jsEngine),
34 value(value->value) 34 value(std::move(src.value))
35 { 35 {
36 } 36 }
37 37
38 AdblockPlus::JsValue::~JsValue() 38 AdblockPlus::JsValue::~JsValue()
39 { 39 {
40 if (value)
41 {
42 value->Dispose();
43 value.reset();
44 }
40 } 45 }
41 46
42 bool AdblockPlus::JsValue::IsUndefined() const 47 bool AdblockPlus::JsValue::IsUndefined() const
43 { 48 {
44 const JsContext context(jsEngine); 49 const JsContext context(jsEngine);
45 return UnwrapValue()->IsUndefined(); 50 return UnwrapValue()->IsUndefined();
46 } 51 }
47 52
48 bool AdblockPlus::JsValue::IsNull() const 53 bool AdblockPlus::JsValue::IsNull() const
49 { 54 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 if (!IsObject()) 161 if (!IsObject())
157 throw new std::runtime_error("Attempting to set property on a non-object"); 162 throw new std::runtime_error("Attempting to set property on a non-object");
158 163
159 v8::Local<v8::String> property = Utils::ToV8String(jsEngine->isolate, name); 164 v8::Local<v8::String> property = Utils::ToV8String(jsEngine->isolate, name);
160 v8::Local<v8::Object> obj = v8::Local<v8::Object>::Cast(UnwrapValue()); 165 v8::Local<v8::Object> obj = v8::Local<v8::Object>::Cast(UnwrapValue());
161 obj->Set(property, val); 166 obj->Set(property, val);
162 } 167 }
163 168
164 v8::Local<v8::Value> AdblockPlus::JsValue::UnwrapValue() const 169 v8::Local<v8::Value> AdblockPlus::JsValue::UnwrapValue() const
165 { 170 {
166 return v8::Local<v8::Value>::New(jsEngine->isolate, value); 171 return v8::Local<v8::Value>::New(jsEngine->isolate, *value);
167 } 172 }
168 173
169 void AdblockPlus::JsValue::SetProperty(const std::string& name, const std::strin g& val) 174 void AdblockPlus::JsValue::SetProperty(const std::string& name, const std::strin g& val)
170 { 175 {
171 const JsContext context(jsEngine); 176 const JsContext context(jsEngine);
172 SetProperty(name, Utils::ToV8String(jsEngine->isolate, val)); 177 SetProperty(name, Utils::ToV8String(jsEngine->isolate, val));
173 } 178 }
174 179
175 void AdblockPlus::JsValue::SetProperty(const std::string& name, int64_t val) 180 void AdblockPlus::JsValue::SetProperty(const std::string& name, int64_t val)
176 { 181 {
(...skipping 24 matching lines...) Expand all
201 } 206 }
202 207
203 AdblockPlus::JsValuePtr AdblockPlus::JsValue::Call(const JsValueList& params, Js ValuePtr thisPtr) const 208 AdblockPlus::JsValuePtr AdblockPlus::JsValue::Call(const JsValueList& params, Js ValuePtr thisPtr) const
204 { 209 {
205 if (!IsFunction()) 210 if (!IsFunction())
206 throw new std::runtime_error("Attempting to call a non-function"); 211 throw new std::runtime_error("Attempting to call a non-function");
207 212
208 const JsContext context(jsEngine); 213 const JsContext context(jsEngine);
209 if (!thisPtr) 214 if (!thisPtr)
210 { 215 {
211 v8::Local<v8::Context> localContext = v8::Local<v8::Context>::New(jsEngine-> isolate, jsEngine->context); 216 v8::Local<v8::Context> localContext = v8::Local<v8::Context>::New(
217 jsEngine->isolate, *jsEngine->context);
212 thisPtr = JsValuePtr(new JsValue(jsEngine, localContext->Global())); 218 thisPtr = JsValuePtr(new JsValue(jsEngine, localContext->Global()));
213 } 219 }
214 if (!thisPtr->IsObject()) 220 if (!thisPtr->IsObject())
215 throw new std::runtime_error("`this` pointer has to be an object"); 221 throw new std::runtime_error("`this` pointer has to be an object");
216 v8::Local<v8::Object> thisObj = v8::Local<v8::Object>::Cast(thisPtr->UnwrapVal ue()); 222 v8::Local<v8::Object> thisObj = v8::Local<v8::Object>::Cast(thisPtr->UnwrapVal ue());
217 223
218 std::vector<v8::Handle<v8::Value>> argv; 224 std::vector<v8::Handle<v8::Value>> argv;
219 for (JsValueList::const_iterator it = params.begin(); it != params.end(); ++it ) 225 for (JsValueList::const_iterator it = params.begin(); it != params.end(); ++it )
220 argv.push_back((*it)->UnwrapValue()); 226 argv.push_back((*it)->UnwrapValue());
221 227
222 const v8::TryCatch tryCatch; 228 const v8::TryCatch tryCatch;
223 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(UnwrapValue()); 229 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(UnwrapValue());
224 v8::Local<v8::Value> result = func->Call(thisObj, argv.size(), 230 v8::Local<v8::Value> result = func->Call(thisObj, argv.size(),
225 argv.size() ? &argv.front() : 0); 231 argv.size() ? &argv.front() : 0);
226 232
227 if (tryCatch.HasCaught()) 233 if (tryCatch.HasCaught())
228 throw JsError(tryCatch.Exception(), tryCatch.Message()); 234 throw JsError(tryCatch.Exception(), tryCatch.Message());
229 235
230 return JsValuePtr(new JsValue(jsEngine, result)); 236 return JsValuePtr(new JsValue(jsEngine, result));
231 } 237 }
232 238
233 AdblockPlus::JsValuePtr AdblockPlus::JsValue::Call(const JsValue& arg) const 239 AdblockPlus::JsValuePtr AdblockPlus::JsValue::Call(const JsValue& arg) const
234 { 240 {
235 const JsContext context(jsEngine); 241 const JsContext context(jsEngine);
236 JsValueList params; 242 JsValueList params;
237 params.push_back(JsValuePtr(new JsValue(arg.jsEngine, arg.UnwrapValue()))); 243 params.push_back(JsValuePtr(new JsValue(arg.jsEngine, arg.UnwrapValue())));
238 return Call(params); 244 return Call(params);
239 } 245 }
OLDNEW
« 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