2
2
#include " cpu_profile.h"
3
3
4
4
namespace nodex {
5
+ using v8::Array;
6
+ using v8::Boolean ;
7
+ using v8::Context;
5
8
using v8::CpuProfile;
9
+ using v8::External;
6
10
using v8::Local;
7
11
using v8::Object;
8
- using v8::Array;
9
12
using v8::String;
10
- using v8::Boolean ;
11
-
12
- #if (NODE_MODULE_VERSION > 0x0039)
13
- v8::CpuProfiler* current_cpu_profiler = v8::CpuProfiler::New(v8::Isolate::GetCurrent());
14
- #endif
15
13
16
14
CpuProfiler::CpuProfiler () {}
17
15
CpuProfiler::~CpuProfiler () {}
18
16
19
- void CpuProfiler::Initialize (Local<Object> target) {
17
+ void CpuProfiler::Initialize (Local<Object> target, Local<Context> context, ProfilerData* data ) {
20
18
Nan::HandleScope scope;
21
19
22
20
Local<Object> cpuProfiler = Nan::New<Object>();
23
21
Local<Array> profiles = Nan::New<Array>();
24
22
25
- Nan::SetMethod (cpuProfiler, " startProfiling" , CpuProfiler::StartProfiling);
26
- Nan::SetMethod (cpuProfiler, " stopProfiling" , CpuProfiler::StopProfiling);
27
- Nan::SetMethod (cpuProfiler, " setSamplingInterval" , CpuProfiler::SetSamplingInterval);
23
+ Local<External> externalData = Nan::New<External>(data);
24
+
25
+ v8::CpuProfiler* profiler = v8::CpuProfiler::New (context->GetIsolate ());
26
+
27
+ data->profiler = profiler;
28
+
29
+ Nan::SetMethod (cpuProfiler, " startProfiling" , CpuProfiler::StartProfiling, externalData);
30
+ Nan::SetMethod (cpuProfiler, " stopProfiling" , CpuProfiler::StopProfiling, externalData);
31
+ Nan::SetMethod (cpuProfiler, " setSamplingInterval" , CpuProfiler::SetSamplingInterval, externalData);
28
32
Nan::SetMethod (cpuProfiler, " collectSample" , CpuProfiler::CollectSample);
29
33
Nan::Set (cpuProfiler, Nan::New<String>(" profiles" ).ToLocalChecked (), profiles);
30
34
31
- Profile:: profiles.Reset (profiles);
35
+ data-> profiles .Reset (profiles);
32
36
Nan::Set (target, Nan::New<String>(" cpu" ).ToLocalChecked (), cpuProfiler);
33
37
}
34
38
35
39
NAN_METHOD (CpuProfiler::StartProfiling) {
36
40
Local<String> title = Nan::To<String>(info[0 ]).ToLocalChecked ();
37
41
38
- #if (NODE_MODULE_VERSION > 0x0039)
39
- bool recsamples = Nan::To<Boolean >(info[1 ]).ToLocalChecked ()->Value ();
40
- current_cpu_profiler->StartProfiling (title, recsamples);
41
- #elif (NODE_MODULE_VERSION > 0x000B)
42
+ ProfilerData* data =
43
+ reinterpret_cast <ProfilerData*>(info.Data ().As <External>()->Value ());
44
+ v8::CpuProfiler* profiler = data->profiler ;
45
+
46
+ #if (NODE_MODULE_VERSION > 0x000B)
42
47
bool recsamples = Nan::To<Boolean >(info[1 ]).ToLocalChecked ()->Value ();
43
- v8::Isolate::GetCurrent ()-> GetCpuProfiler () ->StartProfiling (title, recsamples);
48
+ profiler ->StartProfiling (title, recsamples);
44
49
#else
45
50
v8::CpuProfiler::StartProfiling (title);
46
51
#endif
@@ -49,6 +54,10 @@ namespace nodex {
49
54
NAN_METHOD (CpuProfiler::StopProfiling) {
50
55
const CpuProfile* profile;
51
56
57
+ ProfilerData* data =
58
+ reinterpret_cast <ProfilerData*>(info.Data ().As <External>()->Value ());
59
+ v8::CpuProfiler* profiler = data->profiler ;
60
+
52
61
Local<String> title = Nan::EmptyString ();
53
62
if (info.Length ()) {
54
63
if (info[0 ]->IsString ()) {
@@ -58,20 +67,23 @@ namespace nodex {
58
67
}
59
68
}
60
69
61
- #if (NODE_MODULE_VERSION > 0x0039)
62
- profile = current_cpu_profiler->StopProfiling (title);
63
- #elif (NODE_MODULE_VERSION > 0x000B)
64
- profile = v8::Isolate::GetCurrent ()->GetCpuProfiler ()->StopProfiling (title);
70
+ #if (NODE_MODULE_VERSION > 0x000B)
71
+ profile = profiler->StopProfiling (title);
65
72
#else
66
73
profile = v8::CpuProfiler::StopProfiling (title);
67
74
#endif
68
75
69
- info.GetReturnValue ().Set (Profile::New (profile));
76
+ info.GetReturnValue ().Set (Profile::New (data, profile));
70
77
}
71
78
72
79
NAN_METHOD (CpuProfiler::SetSamplingInterval) {
73
80
#if (NODE_MODULE_VERSION > 0x0039)
74
- current_cpu_profiler->SetSamplingInterval (Nan::To<uint32_t >(info[0 ]).ToChecked ());
81
+ ProfilerData* data =
82
+ reinterpret_cast <ProfilerData*>(info.Data ().As <External>()->Value ());
83
+
84
+ v8::CpuProfiler* profiler = data->profiler ;
85
+
86
+ profiler->SetSamplingInterval (Nan::To<uint32_t >(info[0 ]).ToChecked ());
75
87
#elif (NODE_MODULE_VERSION > 0x000B)
76
88
v8::Isolate::GetCurrent ()->GetCpuProfiler ()->SetSamplingInterval (Nan::To<uint32_t >(info[0 ]).ToChecked ());
77
89
#endif
0 commit comments