src: deduplicate CHECK_EQ/CHECK_NE macros
[platform/upstream/nodejs.git] / src / req_wrap.h
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_REQ_WRAP_H_
23 #define SRC_REQ_WRAP_H_
24
25 #include "async-wrap.h"
26 #include "async-wrap-inl.h"
27 #include "env.h"
28 #include "env-inl.h"
29 #include "queue.h"
30 #include "util.h"
31
32 namespace node {
33
34 // defined in node.cc
35 extern QUEUE req_wrap_queue;
36
37 template <typename T>
38 class ReqWrap : public AsyncWrap {
39  public:
40   ReqWrap(Environment* env,
41           v8::Handle<v8::Object> object,
42           AsyncWrap::ProviderType provider = AsyncWrap::PROVIDER_REQWRAP)
43       : AsyncWrap(env, object, AsyncWrap::PROVIDER_REQWRAP) {
44     if (env->in_domain())
45       object->Set(env->domain_string(), env->domain_array()->Get(0));
46
47     QUEUE_INSERT_TAIL(&req_wrap_queue, &req_wrap_queue_);
48   }
49
50
51   ~ReqWrap() {
52     QUEUE_REMOVE(&req_wrap_queue_);
53     // Assert that someone has called Dispatched()
54     assert(req_.data == this);
55     assert(!persistent().IsEmpty());
56     persistent().Reset();
57   }
58
59   // Call this after the req has been dispatched.
60   void Dispatched() {
61     req_.data = this;
62   }
63
64   // TODO(bnoordhuis) Make these private.
65   QUEUE req_wrap_queue_;
66   T req_;  // *must* be last, GetActiveRequests() in node.cc depends on it
67 };
68
69
70 }  // namespace node
71
72
73 #endif  // SRC_REQ_WRAP_H_