Node.js  v8.x
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine
handle_wrap.h
Go to the documentation of this file.
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 #ifndef SRC_HANDLE_WRAP_H_
23 #define SRC_HANDLE_WRAP_H_
24 
25 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
26 
27 #include "async-wrap.h"
28 #include "util.h"
29 #include "uv.h"
30 #include "v8.h"
31 
32 namespace node {
33 
34 class Environment;
35 
36 // Rules:
37 //
38 // - Do not throw from handle methods. Set errno.
39 //
40 // - MakeCallback may only be made directly off the event loop.
41 // That is there can be no JavaScript stack frames underneath it.
42 // (Is there any way to assert that?)
43 //
44 // - No use of v8::WeakReferenceCallback. The close callback signifies that
45 // we're done with a handle - external resources can be freed.
46 //
47 // - Reusable?
48 //
49 // - The uv_close_cb is used to free the c++ object. The close callback
50 // is not made into javascript land.
51 //
52 // - uv_ref, uv_unref counts are managed at this layer to avoid needless
53 // js/c++ boundary crossing. At the javascript layer that should all be
54 // taken care of.
55 
56 class HandleWrap : public AsyncWrap {
57  public:
58  static void Close(const v8::FunctionCallbackInfo<v8::Value>& args);
59  static void Ref(const v8::FunctionCallbackInfo<v8::Value>& args);
60  static void Unref(const v8::FunctionCallbackInfo<v8::Value>& args);
61  static void HasRef(const v8::FunctionCallbackInfo<v8::Value>& args);
62 
63  static inline bool IsAlive(const HandleWrap* wrap) {
64  return wrap != nullptr && wrap->state_ != kClosed;
65  }
66 
67  static inline bool HasRef(const HandleWrap* wrap) {
68  return IsAlive(wrap) && uv_has_ref(wrap->GetHandle());
69  }
70 
71  inline uv_handle_t* GetHandle() const { return handle_; }
72 
73  protected:
74  HandleWrap(Environment* env,
75  v8::Local<v8::Object> object,
76  uv_handle_t* handle,
77  AsyncWrap::ProviderType provider);
78  ~HandleWrap() override;
79 
80  private:
81  friend class Environment;
82  friend void GetActiveHandles(const v8::FunctionCallbackInfo<v8::Value>&);
83  static void OnClose(uv_handle_t* handle);
84  ListNode<HandleWrap> handle_wrap_queue_;
85  enum { kInitialized, kClosing, kClosingWithCallback, kClosed } state_;
86  uv_handle_t* const handle_;
87 };
88 
89 
90 } // namespace node
91 
92 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
93 
94 #endif // SRC_HANDLE_WRAP_H_
void GetActiveHandles(const FunctionCallbackInfo< Value > &args)
Definition: node.cc:1869
QueryWrap * wrap
Definition: cares_wrap.cc:478