Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 9bda3dc9faa7bfa79190c1483345d93057120349..0494a5d0ccf1a44d5e9e0549a38866258feda816 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -127,6 +127,7 @@ template<class T> class PersistentBase; |
template<class T, |
class M = NonCopyablePersistentTraits<T> > class Persistent; |
template<class T> class UniquePersistent; |
+template<class K, class V, class DT, class MT> class PersistentValueMap; |
template<class T, class P> class WeakCallbackObject; |
class FunctionTemplate; |
class ObjectTemplate; |
@@ -413,7 +414,8 @@ template <class T> class Local : public Handle<T> { |
template<class F> friend class internal::CustomArguments; |
friend class HandleScope; |
friend class EscapableHandleScope; |
- template<class F1, class F2, class F3> friend class PersistentValueMap; |
+ template<class F1, class F2, class F3, class F4> |
+ friend class PersistentValueMap; |
V8_INLINE static Local<T> New(Isolate* isolate, T* that); |
}; |
@@ -582,7 +584,8 @@ template <class T> class PersistentBase { |
template<class F> friend class UniquePersistent; |
template<class F> friend class PersistentBase; |
template<class F> friend class ReturnValue; |
- template<class F1, class F2, class F3> friend class PersistentValueMap; |
+ template<class F1, class F2, class F3, class F4> |
+ friend class PersistentValueMap; |
friend class Object; |
explicit V8_INLINE PersistentBase(T* val) : val_(val) {} |
@@ -809,145 +812,6 @@ class UniquePersistent : public PersistentBase<T> { |
}; |
-typedef uintptr_t PersistentContainerValue; |
-static const uintptr_t kPersistentContainerNotFound = 0; |
- |
-/** |
- * A map wrapper that allows using UniquePersistent as a mapped value. |
- * C++11 embedders don't need this class, as they can use UniquePersistent |
- * directly in std containers. |
- * |
- * The map relies on a backing map, whose type and accessors are described |
- * by the Traits class. The backing map will handle values of type |
- * PersistentContainerValue, with all conversion into and out of V8 |
- * handles being transparently handled by this class. |
- */ |
-template<class K, class V, class Traits> |
-class PersistentValueMap { |
- public: |
- V8_INLINE explicit PersistentValueMap(Isolate* isolate) : isolate_(isolate) {} |
- |
- V8_INLINE ~PersistentValueMap() { Clear(); } |
- |
- V8_INLINE Isolate* GetIsolate() { return isolate_; } |
- |
- /** |
- * Return size of the map. |
- */ |
- V8_INLINE size_t Size() { return Traits::Size(&impl_); } |
- |
- /** |
- * Get value stored in map. |
- */ |
- V8_INLINE Local<V> Get(const K& key) { |
- return Local<V>::New(isolate_, FromVal(Traits::Get(&impl_, key))); |
- } |
- |
- /** |
- * Check whether a value is contained in the map. |
- */ |
- V8_INLINE bool Contains(const K& key) { |
- return Traits::Get(&impl_, key) != 0; |
- } |
- |
- /** |
- * Get value stored in map and set it in returnValue. |
- * Return true if a value was found. |
- */ |
- V8_INLINE bool SetReturnValue(const K& key, |
- ReturnValue<Value>& returnValue); |
- |
- /** |
- * Call Isolate::SetReference with the given parent and the map value. |
- */ |
- V8_INLINE void SetReference(const K& key, |
- const v8::Persistent<v8::Object>& parent) { |
- GetIsolate()->SetReference( |
- reinterpret_cast<internal::Object**>(parent.val_), |
- reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key)))); |
- } |
- |
- /** |
- * Put value into map. Depending on Traits::kIsWeak, the value will be held |
- * by the map strongly or weakly. |
- * Returns old value as UniquePersistent. |
- */ |
- UniquePersistent<V> Set(const K& key, Local<V> value) { |
- UniquePersistent<V> persistent(isolate_, value); |
- return SetUnique(key, &persistent); |
- } |
- |
- /** |
- * Put value into map, like Set(const K&, Local<V>). |
- */ |
- UniquePersistent<V> Set(const K& key, UniquePersistent<V> value) { |
- return SetUnique(key, &value); |
- } |
- |
- /** |
- * Return value for key and remove it from the map. |
- */ |
- V8_INLINE UniquePersistent<V> Remove(const K& key) { |
- return Release(Traits::Remove(&impl_, key)).Pass(); |
- } |
- |
- /** |
- * Traverses the map repeatedly, |
- * in case side effects of disposal cause insertions. |
- **/ |
- void Clear(); |
- |
- private: |
- PersistentValueMap(PersistentValueMap&); |
- void operator=(PersistentValueMap&); |
- |
- /** |
- * Put the value into the map, and set the 'weak' callback when demanded |
- * by the Traits class. |
- */ |
- UniquePersistent<V> SetUnique(const K& key, UniquePersistent<V>* persistent) { |
- if (Traits::kIsWeak) { |
- Local<V> value(Local<V>::New(isolate_, *persistent)); |
- persistent->template SetWeak<typename Traits::WeakCallbackDataType>( |
- Traits::WeakCallbackParameter(&impl_, key, value), WeakCallback); |
- } |
- PersistentContainerValue old_value = |
- Traits::Set(&impl_, key, ClearAndLeak(persistent)); |
- return Release(old_value).Pass(); |
- } |
- |
- static void WeakCallback( |
- const WeakCallbackData<V, typename Traits::WeakCallbackDataType>& data); |
- V8_INLINE static V* FromVal(PersistentContainerValue v) { |
- return reinterpret_cast<V*>(v); |
- } |
- V8_INLINE static PersistentContainerValue ClearAndLeak( |
- UniquePersistent<V>* persistent) { |
- V* v = persistent->val_; |
- persistent->val_ = 0; |
- return reinterpret_cast<PersistentContainerValue>(v); |
- } |
- |
- /** |
- * Return a container value as UniquePersistent and make sure the weak |
- * callback is properly disposed of. All remove functionality should go |
- * through this. |
- */ |
- V8_INLINE static UniquePersistent<V> Release(PersistentContainerValue v) { |
- UniquePersistent<V> p; |
- p.val_ = FromVal(v); |
- if (Traits::kIsWeak && !p.IsEmpty()) { |
- Traits::DisposeCallbackData( |
- p.template ClearWeak<typename Traits::WeakCallbackDataType>()); |
- } |
- return p.Pass(); |
- } |
- |
- Isolate* isolate_; |
- typename Traits::Impl impl_; |
-}; |
- |
- |
/** |
* A stack-allocated class that governs a number of local handles. |
* After a handle scope has been created, all local handles will be |
@@ -2535,7 +2399,7 @@ class ReturnValue { |
template<class F> friend class ReturnValue; |
template<class F> friend class FunctionCallbackInfo; |
template<class F> friend class PropertyCallbackInfo; |
- template<class F, class G, class H> friend class PersistentValueMap; |
+ template<class F, class G, class H, class I> friend class PersistentValueMap; |
V8_INLINE void SetInternal(internal::Object* value) { *value_ = value; } |
V8_INLINE internal::Object* GetDefaultValue(); |
V8_INLINE explicit ReturnValue(internal::Object** slot); |
@@ -4384,7 +4248,8 @@ class V8_EXPORT Isolate { |
void SetEventLogger(LogEventCallback that); |
private: |
- template<class K, class V, class Traits> friend class PersistentValueMap; |
+ template<class K, class V, class DT, class MT> |
+ friend class PersistentValueMap; |
Isolate(); |
Isolate(const Isolate&); |
@@ -5949,44 +5814,6 @@ uint16_t PersistentBase<T>::WrapperClassId() const { |
} |
-template <class K, class V, class Traits> |
-bool PersistentValueMap<K, V, Traits>::SetReturnValue(const K& key, |
- ReturnValue<Value>& returnValue) { |
- PersistentContainerValue value = Traits::Get(&impl_, key); |
- bool hasValue = value != 0; |
- if (hasValue) { |
- returnValue.SetInternal( |
- *reinterpret_cast<internal::Object**>(FromVal(value))); |
- } |
- return hasValue; |
-} |
- |
-template <class K, class V, class Traits> |
-void PersistentValueMap<K, V, Traits>::Clear() { |
- typedef typename Traits::Iterator It; |
- HandleScope handle_scope(isolate_); |
- // TODO(dcarney): figure out if this swap and loop is necessary. |
- while (!Traits::Empty(&impl_)) { |
- typename Traits::Impl impl; |
- Traits::Swap(impl_, impl); |
- for (It i = Traits::Begin(&impl); i != Traits::End(&impl); ++i) { |
- Traits::Dispose(isolate_, Release(Traits::Value(i)).Pass(), &impl, |
- Traits::Key(i)); |
- } |
- } |
-} |
- |
- |
-template <class K, class V, class Traits> |
-void PersistentValueMap<K, V, Traits>::WeakCallback( |
- const WeakCallbackData<V, typename Traits::WeakCallbackDataType>& data) { |
- typename Traits::Impl* impl = Traits::ImplFromWeakCallbackData(data); |
- K key = Traits::KeyFromWeakCallbackData(data); |
- PersistentContainerValue value = Traits::Remove(impl, key); |
- Traits::Dispose(data.GetIsolate(), Release(value).Pass(), impl, key); |
-} |
- |
- |
template<typename T> |
ReturnValue<T>::ReturnValue(internal::Object** slot) : value_(slot) {} |