GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: handle_wrap.cc Lines: 79 83 95.2 %
Date: 2022-05-22 04:15:48 Branches: 38 50 76.0 %

Line Branch Exec Source
1
// Copyright Joyent, Inc. and other Node contributors.
2
//
3
// Permission is hereby granted, free of charge, to any person obtaining a
4
// copy of this software and associated documentation files (the
5
// "Software"), to deal in the Software without restriction, including
6
// without limitation the rights to use, copy, modify, merge, publish,
7
// distribute, sublicense, and/or sell copies of the Software, and to permit
8
// persons to whom the Software is furnished to do so, subject to the
9
// following conditions:
10
//
11
// The above copyright notice and this permission notice shall be included
12
// in all copies or substantial portions of the Software.
13
//
14
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22
#include "handle_wrap.h"
23
#include "async_wrap-inl.h"
24
#include "env-inl.h"
25
#include "node_external_reference.h"
26
#include "util-inl.h"
27
28
namespace node {
29
30
using v8::Context;
31
using v8::FunctionCallbackInfo;
32
using v8::FunctionTemplate;
33
using v8::HandleScope;
34
using v8::Local;
35
using v8::Object;
36
using v8::Value;
37
38
39
24978
void HandleWrap::Ref(const FunctionCallbackInfo<Value>& args) {
40
  HandleWrap* wrap;
41
24978
  ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
42
43
24977
  if (IsAlive(wrap))
44
24976
    uv_ref(wrap->GetHandle());
45
}
46
47
48
63141
void HandleWrap::Unref(const FunctionCallbackInfo<Value>& args) {
49
  HandleWrap* wrap;
50
63141
  ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
51
52
61028
  if (IsAlive(wrap))
53
61026
    uv_unref(wrap->GetHandle());
54
}
55
56
57
58
void HandleWrap::HasRef(const FunctionCallbackInfo<Value>& args) {
58
  HandleWrap* wrap;
59
58
  ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
60
110
  args.GetReturnValue().Set(HasRef(wrap));
61
}
62
63
64
29566
void HandleWrap::Close(const FunctionCallbackInfo<Value>& args) {
65
  HandleWrap* wrap;
66
29566
  ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
67
68
59130
  wrap->Close(args[0]);
69
}
70
71
56216
void HandleWrap::Close(Local<Value> close_callback) {
72
56216
  if (state_ != kInitialized)
73
508
    return;
74
75
55708
  uv_close(handle_, OnClose);
76
55708
  state_ = kClosing;
77
78

99002
  if (!close_callback.IsEmpty() && close_callback->IsFunction() &&
79
14228
      !persistent().IsEmpty()) {
80
14228
    object()->Set(env()->context(),
81
                  env()->handle_onclose_symbol(),
82
42684
                  close_callback).Check();
83
  }
84
}
85
86
87
55502
void HandleWrap::OnGCCollect() {
88
  // When all references to a HandleWrap are lost and the object is supposed to
89
  // be destroyed, we first call Close() to clean up the underlying libuv
90
  // handle. The OnClose callback then acquires and destroys another reference
91
  // to that object, and when that reference is lost, we perform the default
92
  // action (i.e. destroying `this`).
93
55502
  if (state_ != kClosed) {
94
4
    Close();
95
  } else {
96
55500
    BaseObject::OnGCCollect();
97
  }
98
55502
}
99
100
101
bool HandleWrap::IsNotIndicativeOfMemoryLeakAtExit() const {
102
  return IsWeakOrDetached() ||
103
         !HandleWrap::HasRef(this) ||
104
         !uv_is_active(GetHandle());
105
}
106
107
108
1880
void HandleWrap::MarkAsInitialized() {
109
1880
  env()->handle_wrap_queue()->PushBack(this);
110
1880
  state_ = kInitialized;
111
1880
}
112
113
114
1902
void HandleWrap::MarkAsUninitialized() {
115
1902
  handle_wrap_queue_.Remove();
116
1902
  state_ = kClosed;
117
1902
}
118
119
120
56290
HandleWrap::HandleWrap(Environment* env,
121
                       Local<Object> object,
122
                       uv_handle_t* handle,
123
56290
                       AsyncWrap::ProviderType provider)
124
    : AsyncWrap(env, object, provider),
125
      state_(kInitialized),
126
56290
      handle_(handle) {
127
56290
  handle_->data = this;
128
112580
  HandleScope scope(env->isolate());
129
56290
  CHECK(env->has_run_bootstrapping_code());
130
56290
  env->handle_wrap_queue()->PushBack(this);
131
56290
}
132
133
134
55503
void HandleWrap::OnClose(uv_handle_t* handle) {
135
55503
  CHECK_NOT_NULL(handle->data);
136
111003
  BaseObjectPtr<HandleWrap> wrap { static_cast<HandleWrap*>(handle->data) };
137
55503
  wrap->Detach();
138
139
55503
  Environment* env = wrap->env();
140
111003
  HandleScope scope(env->isolate());
141
55503
  Context::Scope context_scope(env->context());
142
143
55503
  CHECK_EQ(wrap->state_, kClosing);
144
145
55503
  wrap->state_ = kClosed;
146
147
55503
  wrap->OnClose();
148
55503
  wrap->handle_wrap_queue_.Remove();
149
150
111004
  if (!wrap->persistent().IsEmpty() &&
151
166503
      wrap->object()->Has(env->context(), env->handle_onclose_symbol())
152

166505
      .FromMaybe(false)) {
153
49165
    wrap->MakeCallback(env->handle_onclose_symbol(), 0, nullptr);
154
  }
155
55500
}
156
157
18104
Local<FunctionTemplate> HandleWrap::GetConstructorTemplate(Environment* env) {
158
18104
  Local<FunctionTemplate> tmpl = env->handle_wrap_ctor_template();
159
18104
  if (tmpl.IsEmpty()) {
160
848
    tmpl = env->NewFunctionTemplate(nullptr);
161
848
    tmpl->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "HandleWrap"));
162
848
    tmpl->Inherit(AsyncWrap::GetConstructorTemplate(env));
163
848
    env->SetProtoMethod(tmpl, "close", HandleWrap::Close);
164
848
    env->SetProtoMethodNoSideEffect(tmpl, "hasRef", HandleWrap::HasRef);
165
848
    env->SetProtoMethod(tmpl, "ref", HandleWrap::Ref);
166
848
    env->SetProtoMethod(tmpl, "unref", HandleWrap::Unref);
167
848
    env->set_handle_wrap_ctor_template(tmpl);
168
  }
169
18104
  return tmpl;
170
}
171
172
5184
void HandleWrap::RegisterExternalReferences(
173
    ExternalReferenceRegistry* registry) {
174
5184
  registry->Register(HandleWrap::Close);
175
5184
  registry->Register(HandleWrap::HasRef);
176
5184
  registry->Register(HandleWrap::Ref);
177
5184
  registry->Register(HandleWrap::Unref);
178
5184
}
179
180
}  // namespace node
181
182
5184
NODE_MODULE_EXTERNAL_REFERENCE(handle_wrap,
183
                               node::HandleWrap::RegisterExternalReferences)