|
19 | 19 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
20 | 20 | // USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21 | 21 |
|
22 |
| -#ifndef SRC_WEAK_OBJECT_INL_H_ |
23 |
| -#define SRC_WEAK_OBJECT_INL_H_ |
| 22 | +#ifndef SRC_BASE_OBJECT_INL_H_ |
| 23 | +#define SRC_BASE_OBJECT_INL_H_ |
24 | 24 |
|
25 |
| -#include "weak-object.h" |
26 |
| -#include "async-wrap.h" |
27 |
| -#include "async-wrap-inl.h" |
| 25 | +#include "base-object.h" |
28 | 26 | #include "util.h"
|
29 | 27 | #include "util-inl.h"
|
| 28 | +#include "v8.h" |
| 29 | + |
| 30 | +#include <assert.h> |
30 | 31 |
|
31 | 32 | namespace node {
|
32 | 33 |
|
33 |
| -WeakObject::WeakObject(Environment* env, v8::Local<v8::Object> object) |
34 |
| - : AsyncWrap(env, object) { |
35 |
| - persistent().MarkIndependent(); |
| 34 | +inline BaseObject::BaseObject(Environment* env, v8::Local<v8::Object> handle) |
| 35 | + : handle_(env->isolate(), handle), |
| 36 | + env_(env) { |
| 37 | + assert(!handle.IsEmpty()); |
| 38 | +} |
| 39 | + |
36 | 40 |
|
37 |
| - // The pointer is resolved as void*. |
38 |
| - Wrap<WeakObject>(object, this); |
39 |
| - MakeWeak(); |
| 41 | +inline BaseObject::~BaseObject() { |
| 42 | + assert(handle_.IsEmpty()); |
40 | 43 | }
|
41 | 44 |
|
42 |
| -WeakObject::~WeakObject() { |
| 45 | + |
| 46 | +inline v8::Persistent<v8::Object>& BaseObject::persistent() { |
| 47 | + return handle_; |
43 | 48 | }
|
44 | 49 |
|
45 |
| -void WeakObject::MakeWeak() { |
46 |
| - persistent().MakeWeak(this, WeakCallback); |
| 50 | + |
| 51 | +inline v8::Local<v8::Object> BaseObject::object() { |
| 52 | + return PersistentToLocal(env_->isolate(), handle_); |
47 | 53 | }
|
48 | 54 |
|
49 |
| -void WeakObject::ClearWeak() { |
50 |
| - persistent().ClearWeak(); |
| 55 | + |
| 56 | +inline Environment* BaseObject::env() const { |
| 57 | + return env_; |
51 | 58 | }
|
52 | 59 |
|
53 |
| -void WeakObject::WeakCallback(v8::Isolate* isolate, |
54 |
| - v8::Persistent<v8::Object>* persistent, |
55 |
| - WeakObject* self) { |
56 |
| - // Dispose now instead of in the destructor to avoid child classes that call |
57 |
| - // `delete this` in their destructor from blowing up. |
58 |
| - // Dispose the class member instead of the argument or else the IsEmpty() |
59 |
| - // check in ~AsyncWrap will fail. |
60 |
| - self->persistent().Dispose(); |
| 60 | + |
| 61 | +template <typename Type> |
| 62 | +inline void BaseObject::WeakCallback( |
| 63 | + const v8::WeakCallbackData<v8::Object, Type>& data) { |
| 64 | + Type* self = data.GetParameter(); |
| 65 | + self->persistent().Reset(); |
61 | 66 | delete self;
|
62 | 67 | }
|
63 | 68 |
|
| 69 | + |
| 70 | +template <typename Type> |
| 71 | +inline void BaseObject::MakeWeak(Type* ptr) { |
| 72 | + v8::HandleScope scope(env_->isolate()); |
| 73 | + v8::Local<v8::Object> handle = object(); |
| 74 | + assert(handle->InternalFieldCount() > 0); |
| 75 | + Wrap<Type>(handle, ptr); |
| 76 | + handle_.MarkIndependent(); |
| 77 | + handle_.SetWeak<Type>(ptr, WeakCallback<Type>); |
| 78 | +} |
| 79 | + |
| 80 | + |
| 81 | +inline void BaseObject::ClearWeak() { |
| 82 | + handle_.ClearWeak(); |
| 83 | +} |
| 84 | + |
64 | 85 | } // namespace node
|
65 | 86 |
|
66 |
| -#endif // SRC_WEAK_OBJECT_INL_H_ |
| 87 | +#endif // SRC_BASE_OBJECT_INL_H_ |
0 commit comments