v8
4.5.103 (node 4.8.7)
V8 is Google's open source JavaScript engine
|
#include <v8-util.h>
Data Structures | |
class | PersistentValueReference |
Public Member Functions | |
Isolate * | GetIsolate () |
size_t | Size () |
bool | IsWeak () |
Local< V > | Get (const K &key) |
bool | Contains (const K &key) |
bool | SetReturnValue (const K &key, ReturnValue< Value > returnValue) |
void | SetReference (const K &key, const Persistent< Object > &parent) |
Global< V > | Remove (const K &key) |
void | Clear () |
PersistentValueReference | GetReference (const K &key) |
Protected Member Functions | |
PersistentValueMapBase (Isolate *isolate) | |
~PersistentValueMapBase () | |
Isolate * | isolate () |
Traits::Impl * | impl () |
void | RemoveWeak (const K &key) |
Static Protected Member Functions | |
static V * | FromVal (PersistentContainerValue v) |
static PersistentContainerValue | ClearAndLeak (Global< V > *persistent) |
static PersistentContainerValue | Leak (Global< V > *persistent) |
static Global< V > | Release (PersistentContainerValue v) |
A map wrapper that allows using Global as a mapped value. C++11 embedders don't need this class, as they can use Global 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.
|
inlineexplicitprotected |
|
inlineprotected |
Definition at line 290 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::Clear().
|
inline |
Traverses the map repeatedly, in case side effects of disposal cause insertions.
Definition at line 217 of file v8-util.h.
References HandleScope::HandleScope(), and PersistentValueMapBase< K, V, Traits >::Release().
Referenced by PersistentValueMapBase< K, V, Traits >::~PersistentValueMapBase().
|
inlinestaticprotected |
|
inline |
|
inlinestaticprotected |
Definition at line 295 of file v8-util.h.
Referenced by PersistentValueMapBase< K, V, Traits >::Get(), PersistentValueMapBase< K, V, Traits >::PersistentValueReference::NewLocal(), PersistentValueMapBase< K, V, Traits >::Release(), PersistentValueMapBase< K, V, Traits >::RemoveWeak(), and PersistentValueMapBase< K, V, Traits >::SetReference().
|
inline |
Get value stored in map.
Definition at line 176 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::FromVal(), and Local< T >::Local.
|
inline |
Definition at line 161 of file v8-util.h.
Referenced by PersistentValueMapBase< K, V, Traits >::SetReference().
|
inline |
Get a reference to a map value. This enables fast, repeated access to a value stored in the map while the map remains unchanged.
Careful: This is potentially unsafe, so please use with care. The value will become invalid if the value for this key changes in the underlying map, as a result of Set or Remove for the same key; as a result of the weak callback for the same key; or as a result of calling Clear() or destruction of the map.
|
inline |
Return whether the map holds weak persistents.
Definition at line 171 of file v8-util.h.
References v8::kNotWeak.
|
inlinestaticprotected |
|
inlinestaticprotected |
Return a container value as Global and make sure the weak callback is properly disposed of. All remove functionality should go through this.
Definition at line 314 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::FromVal(), PersistentBase< T >::Global, and v8::kNotWeak.
Referenced by PersistentValueMapBase< K, V, Traits >::Clear(), and PersistentValueMapBase< K, V, Traits >::Remove().
|
inline |
Return value for key and remove it from the map.
Definition at line 209 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::Release().
|
inlineprotected |
Definition at line 324 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::FromVal(), and PersistentBase< T >::Global.
|
inline |
Call Isolate::SetReference with the given parent and the map value.
Definition at line 199 of file v8-util.h.
References PersistentValueMapBase< K, V, Traits >::FromVal(), and PersistentValueMapBase< K, V, Traits >::GetIsolate().
|
inline |