Node.js  v8.x
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine
node_stat_watcher.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_NODE_STAT_WATCHER_H_
23 #define SRC_NODE_STAT_WATCHER_H_
24 
25 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
26 
27 #include "node.h"
28 #include "async-wrap.h"
29 #include "env.h"
30 #include "uv.h"
31 #include "v8.h"
32 
33 namespace node {
34 
35 class StatWatcher : public AsyncWrap {
36  public:
37  ~StatWatcher() override;
38 
39  static void Initialize(Environment* env, v8::Local<v8::Object> target);
40 
41  protected:
42  StatWatcher(Environment* env, v8::Local<v8::Object> wrap);
43 
44  static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
45  static void Start(const v8::FunctionCallbackInfo<v8::Value>& args);
46  static void Stop(const v8::FunctionCallbackInfo<v8::Value>& args);
47 
48  size_t self_size() const override { return sizeof(*this); }
49 
50  private:
51  static void Callback(uv_fs_poll_t* handle,
52  int status,
53  const uv_stat_t* prev,
54  const uv_stat_t* curr);
55  void Stop();
56 
57  uv_fs_poll_t* watcher_;
58 };
59 
60 } // namespace node
61 
62 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
63 
64 #endif // SRC_NODE_STAT_WATCHER_H_
QueryWrap * wrap
Definition: cares_wrap.cc:478
int status
Definition: cares_wrap.cc:479
void Initialize(Local< Object > target, Local< Value > unused, Local< Context > context, void *priv)
Definition: node_http2.cc:1172
MaybeLocal< Object > New(Isolate *isolate, Local< String > string, enum encoding enc)
Definition: node_buffer.cc:241
int Start(Isolate *isolate, IsolateData *isolate_data, int argc, const char *const *argv, int exec_argc, const char *const *exec_argv)
Definition: node.cc:4536