2e08ef7380258ff995dc8885d98258fa9bfcc6f8
[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, v8::Handle<v8::Object> object)
41       : AsyncWrap(env, object) {
42     QUEUE_INSERT_TAIL(&req_wrap_queue, &req_wrap_queue_);
43   }
44
45
46   ~ReqWrap() {
47     QUEUE_REMOVE(&req_wrap_queue_);
48     // Assert that someone has called Dispatched()
49     assert(req_.data == this);
50     assert(!persistent().IsEmpty());
51     persistent().Dispose();
52   }
53
54   // Call this after the req has been dispatched.
55   void Dispatched() {
56     req_.data = this;
57   }
58
59   // TODO(bnoordhuis) Make these private.
60   QUEUE req_wrap_queue_;
61   T req_;  // *must* be last, GetActiveRequests() in node.cc depends on it
62 };
63
64
65 }  // namespace node
66
67
68 #endif  // SRC_REQ_WRAP_H_