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

Delta Between Two Patch Sets: include/AdblockPlus/JsValue.h

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Left Patch Set: Created July 11, 2014, 2:24 p.m.
Right Patch Set: fix including of <memory> Created Aug. 7, 2015, 6:07 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « include/AdblockPlus/JsEngine.h ('k') | include/AdblockPlus/LogSystem.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH 3 * Copyright (C) 2006-2015 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 #ifndef ADBLOCK_PLUS_JS_VALUE_H 18 #ifndef ADBLOCK_PLUS_JS_VALUE_H
19 #define ADBLOCK_PLUS_JS_VALUE_H 19 #define ADBLOCK_PLUS_JS_VALUE_H
20 20
21 #include <memory>
22 #include <stdint.h> 21 #include <stdint.h>
23 #include <string> 22 #include <string>
24 #include <vector> 23 #include <vector>
24 #include <memory>
25 #include "V8ValueHolder.h" 25 #include "V8ValueHolder.h"
26 26
27 namespace v8 27 namespace v8
28 { 28 {
29 class Value; 29 class Value;
30 template<class T> class Handle; 30 template<class T> class Handle;
31 template<class T> class Local;
31 } 32 }
32 33
33 namespace AdblockPlus 34 namespace AdblockPlus
34 { 35 {
35 class JsValue; 36 class JsValue;
36 class JsEngine; 37 class JsEngine;
37 38
39 typedef std::shared_ptr<JsEngine> JsEnginePtr;
40
41 /**
42 * Shared smart pointer to a `JsValue` instance.
43 */
38 typedef std::shared_ptr<JsValue> JsValuePtr; 44 typedef std::shared_ptr<JsValue> JsValuePtr;
45
46 /**
47 * List of JavaScript values.
48 */
39 typedef std::vector<AdblockPlus::JsValuePtr> JsValueList; 49 typedef std::vector<AdblockPlus::JsValuePtr> JsValueList;
40 50
41 // Forward declaration to avoid including JsEngine.h 51 /**
42 typedef std::shared_ptr<JsEngine> JsEnginePtr; 52 * Wrapper for JavaScript values.
43 53 * See `JsEngine` for creating `JsValue` objects.
54 */
44 class JsValue 55 class JsValue
45 { 56 {
46 friend class JsEngine; 57 friend class JsEngine;
47 public: 58 public:
48 JsValue(JsValuePtr value);
49 virtual ~JsValue(); 59 virtual ~JsValue();
50 60
51 bool IsUndefined() const; 61 bool IsUndefined() const;
52 bool IsNull() const; 62 bool IsNull() const;
53 bool IsString() const; 63 bool IsString() const;
54 bool IsNumber() const; 64 bool IsNumber() const;
55 bool IsBool() const; 65 bool IsBool() const;
56 bool IsObject() const; 66 bool IsObject() const;
57 bool IsArray() const; 67 bool IsArray() const;
58 bool IsFunction() const; 68 bool IsFunction() const;
59 std::string AsString() const; 69 std::string AsString() const;
60 int64_t AsInt() const; 70 int64_t AsInt() const;
61 bool AsBool() const; 71 bool AsBool() const;
62 JsValueList AsList() const; 72 JsValueList AsList() const;
73
74 /**
75 * Returns a list of property names if this is an object (see `IsObject()`).
76 * @return List of property names.
77 */
63 std::vector<std::string> GetOwnPropertyNames() const; 78 std::vector<std::string> GetOwnPropertyNames() const;
79
80 /**
81 * Returns a property value if this is an object (see `IsObject()`).
82 * @param name Property name.
83 * @return Property value, undefined (see `IsUndefined()`) if the property
84 * does not exist.
85 */
64 JsValuePtr GetProperty(const std::string& name) const; 86 JsValuePtr GetProperty(const std::string& name) const;
87
88 //@{
89 /**
90 * Sets a property value if this is an object (see `IsObject()`).
91 * @param name Property name.
92 * @param val Property value.
93 */
65 void SetProperty(const std::string& name, const std::string& val); 94 void SetProperty(const std::string& name, const std::string& val);
66 void SetProperty(const std::string& name, int64_t val); 95 void SetProperty(const std::string& name, int64_t val);
67 void SetProperty(const std::string& name, bool val); 96 void SetProperty(const std::string& name, bool val);
68 void SetProperty(const std::string& name, JsValuePtr value); 97 void SetProperty(const std::string& name, const JsValuePtr& value);
69 inline void SetProperty(const std::string& name, const char* val) 98 inline void SetProperty(const std::string& name, const char* val)
70 { 99 {
71 SetProperty(name, std::string(val)); 100 SetProperty(name, std::string(val));
72 } 101 }
73 inline void SetProperty(const std::string& name, int val) 102 inline void SetProperty(const std::string& name, int val)
74 { 103 {
75 SetProperty(name, static_cast<int64_t>(val)); 104 SetProperty(name, static_cast<int64_t>(val));
76 } 105 }
106 //@}
107
108 /**
109 * Returns the value's class name, e.g.\ _Array_ for arrays
110 * (see `IsArray()`).
111 * Technically, this is the name of the function that was used as a
112 * constructor.
113 * @return Class name of the value.
114 */
77 std::string GetClass() const; 115 std::string GetClass() const;
116
117 /**
118 * Invokes the value as a function (see `IsFunction()`).
119 * @param params Optional list of parameters.
120 * @param thisPtr Optional `this` value.
121 * @return Value returned by the function.
122 */
78 JsValuePtr Call(const JsValueList& params = JsValueList(), 123 JsValuePtr Call(const JsValueList& params = JsValueList(),
79 AdblockPlus::JsValuePtr thisPtr = AdblockPlus::JsValuePtr()) const; 124 AdblockPlus::JsValuePtr thisPtr = AdblockPlus::JsValuePtr()) const;
125
126 v8::Local<v8::Value> UnwrapValue() const;
80 protected: 127 protected:
128 JsValue(JsValuePtr value);
129 JsEnginePtr jsEngine;
130 private:
81 JsValue(JsEnginePtr jsEngine, v8::Handle<v8::Value> value); 131 JsValue(JsEnginePtr jsEngine, v8::Handle<v8::Value> value);
82 void SetProperty(const std::string& name, v8::Handle<v8::Value> val); 132 void SetProperty(const std::string& name, v8::Handle<v8::Value> val);
83
84 JsEnginePtr jsEngine;
85 V8ValueHolder<v8::Value> value; 133 V8ValueHolder<v8::Value> value;
86 }; 134 };
87 } 135 }
88 136
89 #endif 137 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld