|
25 | 25 | #include "node_context_data.h"
|
26 | 26 | #include "node_errors.h"
|
27 | 27 | #include "node_internals.h"
|
| 28 | +#include "node_metadata.h" |
28 | 29 | #include "node_native_module.h"
|
29 | 30 | #include "node_perf.h"
|
30 | 31 | #include "node_platform.h"
|
|
48 | 49 | #include "node_dtrace.h"
|
49 | 50 | #endif
|
50 | 51 |
|
51 |
| -#include "ares.h" |
52 | 52 | #include "async_wrap-inl.h"
|
53 | 53 | #include "env-inl.h"
|
54 | 54 | #include "handle_wrap.h"
|
55 |
| -#ifdef NODE_EXPERIMENTAL_HTTP |
56 |
| -# include "llhttp.h" |
57 |
| -#else /* !NODE_EXPERIMENTAL_HTTP */ |
58 |
| -# include "http_parser.h" |
59 |
| -#endif /* NODE_EXPERIMENTAL_HTTP */ |
60 |
| -#include "nghttp2/nghttp2ver.h" |
61 | 55 | #include "req_wrap-inl.h"
|
62 | 56 | #include "string_bytes.h"
|
63 | 57 | #include "tracing/agent.h"
|
|
68 | 62 | #include "libplatform/libplatform.h"
|
69 | 63 | #endif // NODE_USE_V8_PLATFORM
|
70 | 64 | #include "v8-profiler.h"
|
71 |
| -#include "zlib.h" |
72 | 65 |
|
73 | 66 | #ifdef NODE_ENABLE_VTUNE_PROFILING
|
74 | 67 | #include "../deps/v8/src/third_party/vtune/v8-vtune.h"
|
@@ -156,22 +149,6 @@ using v8::Value;
|
156 | 149 |
|
157 | 150 | static bool v8_is_profiling = false;
|
158 | 151 |
|
159 |
| -#ifdef NODE_EXPERIMENTAL_HTTP |
160 |
| -static const char llhttp_version[] = |
161 |
| - NODE_STRINGIFY(LLHTTP_VERSION_MAJOR) |
162 |
| - "." |
163 |
| - NODE_STRINGIFY(LLHTTP_VERSION_MINOR) |
164 |
| - "." |
165 |
| - NODE_STRINGIFY(LLHTTP_VERSION_PATCH); |
166 |
| -#else /* !NODE_EXPERIMENTAL_HTTP */ |
167 |
| -static const char http_parser_version[] = |
168 |
| - NODE_STRINGIFY(HTTP_PARSER_VERSION_MAJOR) |
169 |
| - "." |
170 |
| - NODE_STRINGIFY(HTTP_PARSER_VERSION_MINOR) |
171 |
| - "." |
172 |
| - NODE_STRINGIFY(HTTP_PARSER_VERSION_PATCH); |
173 |
| -#endif /* NODE_EXPERIMENTAL_HTTP */ |
174 |
| - |
175 | 152 | // Bit flag used to track security reverts (see node_revert.h)
|
176 | 153 | unsigned int reverted = 0;
|
177 | 154 |
|
@@ -210,27 +187,12 @@ class NodeTraceStateObserver :
|
210 | 187 | auto trace_process = tracing::TracedValue::Create();
|
211 | 188 | trace_process->BeginDictionary("versions");
|
212 | 189 |
|
213 |
| -#ifdef NODE_EXPERIMENTAL_HTTP |
214 |
| - trace_process->SetString("llhttp", llhttp_version); |
215 |
| -#else /* !NODE_EXPERIMENTAL_HTTP */ |
216 |
| - trace_process->SetString("http_parser", http_parser_version); |
217 |
| -#endif /* NODE_EXPERIMENTAL_HTTP */ |
218 |
| - |
219 |
| - const char node_napi_version[] = NODE_STRINGIFY(NAPI_VERSION); |
220 |
| - const char node_modules_version[] = NODE_STRINGIFY(NODE_MODULE_VERSION); |
| 190 | +#define V(key) \ |
| 191 | + trace_process->SetString(#key, per_process::metadata.versions.key.c_str()); |
221 | 192 |
|
222 |
| - trace_process->SetString("node", NODE_VERSION_STRING); |
223 |
| - trace_process->SetString("v8", V8::GetVersion()); |
224 |
| - trace_process->SetString("uv", uv_version_string()); |
225 |
| - trace_process->SetString("zlib", ZLIB_VERSION); |
226 |
| - trace_process->SetString("ares", ARES_VERSION_STR); |
227 |
| - trace_process->SetString("modules", node_modules_version); |
228 |
| - trace_process->SetString("nghttp2", NGHTTP2_VERSION); |
229 |
| - trace_process->SetString("napi", node_napi_version); |
| 193 | + NODE_VERSIONS_KEYS(V) |
| 194 | +#undef V |
230 | 195 |
|
231 |
| -#if HAVE_OPENSSL |
232 |
| - trace_process->SetString("openssl", crypto::GetOpenSSLVersion()); |
233 |
| -#endif |
234 | 196 | trace_process->EndDictionary();
|
235 | 197 |
|
236 | 198 | trace_process->SetString("arch", NODE_ARCH);
|
@@ -943,53 +905,10 @@ void SetupProcessObject(Environment* env,
|
943 | 905 | Local<Object> versions = Object::New(env->isolate());
|
944 | 906 | READONLY_PROPERTY(process, "versions", versions);
|
945 | 907 |
|
946 |
| -#ifdef NODE_EXPERIMENTAL_HTTP |
947 |
| - READONLY_PROPERTY(versions, |
948 |
| - "llhttp", |
949 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), llhttp_version)); |
950 |
| -#else /* !NODE_EXPERIMENTAL_HTTP */ |
951 |
| - READONLY_PROPERTY(versions, |
952 |
| - "http_parser", |
953 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), http_parser_version)); |
954 |
| -#endif /* NODE_EXPERIMENTAL_HTTP */ |
955 |
| - |
956 |
| - // +1 to get rid of the leading 'v' |
957 |
| - READONLY_PROPERTY(versions, |
958 |
| - "node", |
959 |
| - OneByteString(env->isolate(), NODE_VERSION + 1)); |
960 |
| - READONLY_PROPERTY(versions, |
961 |
| - "v8", |
962 |
| - OneByteString(env->isolate(), V8::GetVersion())); |
963 |
| - READONLY_PROPERTY(versions, |
964 |
| - "uv", |
965 |
| - OneByteString(env->isolate(), uv_version_string())); |
966 |
| - READONLY_PROPERTY(versions, |
967 |
| - "zlib", |
968 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), ZLIB_VERSION)); |
969 |
| - READONLY_PROPERTY(versions, |
970 |
| - "ares", |
971 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), ARES_VERSION_STR)); |
972 |
| - |
973 |
| - const char node_modules_version[] = NODE_STRINGIFY(NODE_MODULE_VERSION); |
974 |
| - READONLY_PROPERTY( |
975 |
| - versions, |
976 |
| - "modules", |
977 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), node_modules_version)); |
978 |
| - READONLY_PROPERTY(versions, |
979 |
| - "nghttp2", |
980 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), NGHTTP2_VERSION)); |
981 |
| - const char node_napi_version[] = NODE_STRINGIFY(NAPI_VERSION); |
982 |
| - READONLY_PROPERTY( |
983 |
| - versions, |
984 |
| - "napi", |
985 |
| - FIXED_ONE_BYTE_STRING(env->isolate(), node_napi_version)); |
986 |
| - |
987 |
| -#if HAVE_OPENSSL |
988 |
| - READONLY_PROPERTY( |
989 |
| - versions, |
990 |
| - "openssl", |
991 |
| - OneByteString(env->isolate(), crypto::GetOpenSSLVersion().c_str())); |
992 |
| -#endif |
| 908 | +#define V(key) \ |
| 909 | + READONLY_STRING_PROPERTY(versions, #key, per_process::metadata.versions.key); |
| 910 | + NODE_VERSIONS_KEYS(V) |
| 911 | +#undef V |
993 | 912 |
|
994 | 913 | // process.arch
|
995 | 914 | READONLY_PROPERTY(process, "arch", OneByteString(env->isolate(), NODE_ARCH));
|
|
0 commit comments