GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: timers.cc Lines: 40 40 100.0 %
Date: 2022-08-12 04:19:25 Branches: 4 8 50.0 %

Line Branch Exec Source
1
#include "env-inl.h"
2
#include "node_external_reference.h"
3
#include "util-inl.h"
4
#include "v8.h"
5
6
#include <cstdint>
7
8
namespace node {
9
namespace {
10
11
using v8::Context;
12
using v8::Function;
13
using v8::FunctionCallbackInfo;
14
using v8::Local;
15
using v8::Object;
16
using v8::Value;
17
18
771
void SetupTimers(const FunctionCallbackInfo<Value>& args) {
19
771
  CHECK(args[0]->IsFunction());
20
771
  CHECK(args[1]->IsFunction());
21
771
  auto env = Environment::GetCurrent(args);
22
23
1542
  env->set_immediate_callback_function(args[0].As<Function>());
24
1542
  env->set_timers_callback_function(args[1].As<Function>());
25
771
}
26
27
36668
void GetLibuvNow(const FunctionCallbackInfo<Value>& args) {
28
36668
  Environment* env = Environment::GetCurrent(args);
29
36668
  args.GetReturnValue().Set(env->GetNow());
30
36668
}
31
32
2972
void ScheduleTimer(const FunctionCallbackInfo<Value>& args) {
33
2972
  auto env = Environment::GetCurrent(args);
34
5944
  env->ScheduleTimer(args[0]->IntegerValue(env->context()).FromJust());
35
2972
}
36
37
3668
void ToggleTimerRef(const FunctionCallbackInfo<Value>& args) {
38
7336
  Environment::GetCurrent(args)->ToggleTimerRef(args[0]->IsTrue());
39
3668
}
40
41
40539
void ToggleImmediateRef(const FunctionCallbackInfo<Value>& args) {
42
81078
  Environment::GetCurrent(args)->ToggleImmediateRef(args[0]->IsTrue());
43
40539
}
44
45
771
void Initialize(Local<Object> target,
46
                       Local<Value> unused,
47
                       Local<Context> context,
48
                       void* priv) {
49
771
  Environment* env = Environment::GetCurrent(context);
50
51
771
  SetMethod(context, target, "getLibuvNow", GetLibuvNow);
52
771
  SetMethod(context, target, "setupTimers", SetupTimers);
53
771
  SetMethod(context, target, "scheduleTimer", ScheduleTimer);
54
771
  SetMethod(context, target, "toggleTimerRef", ToggleTimerRef);
55
771
  SetMethod(context, target, "toggleImmediateRef", ToggleImmediateRef);
56
57
  target
58
771
      ->Set(context,
59
            FIXED_ONE_BYTE_STRING(env->isolate(), "immediateInfo"),
60
2313
            env->immediate_info()->fields().GetJSArray())
61
      .Check();
62
771
}
63
}  // anonymous namespace
64
5337
void RegisterTimerExternalReferences(ExternalReferenceRegistry* registry) {
65
5337
  registry->Register(GetLibuvNow);
66
5337
  registry->Register(SetupTimers);
67
5337
  registry->Register(ScheduleTimer);
68
5337
  registry->Register(ToggleTimerRef);
69
5337
  registry->Register(ToggleImmediateRef);
70
5337
}
71
72
}  // namespace node
73
74
5409
NODE_MODULE_CONTEXT_AWARE_INTERNAL(timers, node::Initialize)
75
5337
NODE_MODULE_EXTERNAL_REFERENCE(timers, node::RegisterTimerExternalReferences)