2016-10-18 14:41:26 +00:00
|
|
|
{
|
|
|
|
'conditions': [
|
|
|
|
[ 'node_shared=="false"', {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCManifestTool': {
|
|
|
|
'EmbedManifest': 'true',
|
|
|
|
'AdditionalManifestFiles': 'src/res/node.exe.extra.manifest'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'defines': [
|
|
|
|
'NODE_SHARED_MODE',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_enable_d8=="true"', {
|
|
|
|
'dependencies': [ 'deps/v8/src/d8.gyp:d8' ],
|
|
|
|
}],
|
|
|
|
[ 'node_use_bundled_v8=="true"', {
|
|
|
|
'dependencies': [
|
|
|
|
'deps/v8/src/v8.gyp:v8',
|
|
|
|
'deps/v8/src/v8.gyp:v8_libplatform'
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_use_v8_platform=="true"', {
|
|
|
|
'defines': [
|
|
|
|
'NODE_USE_V8_PLATFORM=1',
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
'defines': [
|
|
|
|
'NODE_USE_V8_PLATFORM=0',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_tag!=""', {
|
|
|
|
'defines': [ 'NODE_TAG="<(node_tag)"' ],
|
|
|
|
}],
|
|
|
|
[ 'node_v8_options!=""', {
|
|
|
|
'defines': [ 'NODE_V8_OPTIONS="<(node_v8_options)"'],
|
|
|
|
}],
|
|
|
|
# No node_main.cc for anything except executable
|
|
|
|
[ 'node_target_type!="executable"', {
|
|
|
|
'sources!': [
|
|
|
|
'src/node_main.cc',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_release_urlbase!=""', {
|
|
|
|
'defines': [
|
|
|
|
'NODE_RELEASE_URLBASE="<(node_release_urlbase)"',
|
|
|
|
]
|
|
|
|
}],
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 17:17:16 +00:00
|
|
|
[
|
|
|
|
'debug_http2==1', {
|
|
|
|
'defines': [ 'NODE_DEBUG_HTTP2=1' ]
|
|
|
|
}],
|
2016-10-18 14:41:26 +00:00
|
|
|
[ 'v8_enable_i18n_support==1', {
|
|
|
|
'defines': [ 'NODE_HAVE_I18N_SUPPORT=1' ],
|
|
|
|
'dependencies': [
|
|
|
|
'<(icu_gyp_path):icui18n',
|
|
|
|
'<(icu_gyp_path):icuuc',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
[ 'icu_small=="true"', {
|
|
|
|
'defines': [ 'NODE_HAVE_SMALL_ICU=1' ],
|
|
|
|
}]],
|
|
|
|
}],
|
|
|
|
[ 'node_use_bundled_v8=="true" and \
|
|
|
|
node_enable_v8_vtunejit=="true" and (target_arch=="x64" or \
|
|
|
|
target_arch=="ia32" or target_arch=="x32")', {
|
|
|
|
'defines': [ 'NODE_ENABLE_VTUNE_PROFILING' ],
|
|
|
|
'dependencies': [
|
|
|
|
'deps/v8/src/third_party/vtune/v8vtune.gyp:v8_vtune'
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_use_lttng=="true"', {
|
|
|
|
'defines': [ 'HAVE_LTTNG=1' ],
|
|
|
|
'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
|
|
|
|
'libraries': [ '-llttng-ust' ],
|
|
|
|
'sources': [
|
|
|
|
'src/node_lttng.cc'
|
|
|
|
],
|
|
|
|
} ],
|
2017-08-23 07:52:59 +00:00
|
|
|
[ 'node_use_etw=="true" and node_target_type!="static_library"', {
|
2016-10-18 14:41:26 +00:00
|
|
|
'defines': [ 'HAVE_ETW=1' ],
|
|
|
|
'dependencies': [ 'node_etw' ],
|
|
|
|
'sources': [
|
|
|
|
'src/node_win32_etw_provider.h',
|
|
|
|
'src/node_win32_etw_provider-inl.h',
|
|
|
|
'src/node_win32_etw_provider.cc',
|
|
|
|
'src/node_dtrace.cc',
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.h',
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.rc',
|
|
|
|
]
|
|
|
|
} ],
|
2017-08-23 07:52:59 +00:00
|
|
|
[ 'node_use_perfctr=="true" and node_target_type!="static_library"', {
|
2016-10-18 14:41:26 +00:00
|
|
|
'defines': [ 'HAVE_PERFCTR=1' ],
|
|
|
|
'dependencies': [ 'node_perfctr' ],
|
|
|
|
'sources': [
|
|
|
|
'src/node_win32_perfctr_provider.h',
|
|
|
|
'src/node_win32_perfctr_provider.cc',
|
|
|
|
'src/node_counters.cc',
|
|
|
|
'src/node_counters.h',
|
|
|
|
'tools/msvs/genfiles/node_perfctr_provider.rc',
|
|
|
|
]
|
|
|
|
} ],
|
|
|
|
[ 'node_no_browser_globals=="true"', {
|
|
|
|
'defines': [ 'NODE_NO_BROWSER_GLOBALS' ],
|
|
|
|
} ],
|
|
|
|
[ 'node_use_bundled_v8=="true" and v8_postmortem_support=="true"', {
|
|
|
|
'dependencies': [ 'deps/v8/src/v8.gyp:postmortem-metadata' ],
|
|
|
|
'conditions': [
|
|
|
|
# -force_load is not applicable for the static library
|
|
|
|
[ 'node_target_type!="static_library"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'OTHER_LDFLAGS': [
|
|
|
|
'-Wl,-force_load,<(V8_BASE)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_shared_zlib=="false"', {
|
|
|
|
'dependencies': [ 'deps/zlib/zlib.gyp:zlib' ],
|
|
|
|
}],
|
|
|
|
|
|
|
|
[ 'node_shared_http_parser=="false"', {
|
|
|
|
'dependencies': [ 'deps/http_parser/http_parser.gyp:http_parser' ],
|
|
|
|
}],
|
|
|
|
|
|
|
|
[ 'node_shared_cares=="false"', {
|
|
|
|
'dependencies': [ 'deps/cares/cares.gyp:cares' ],
|
|
|
|
}],
|
|
|
|
|
|
|
|
[ 'node_shared_libuv=="false"', {
|
|
|
|
'dependencies': [ 'deps/uv/uv.gyp:libuv' ],
|
|
|
|
}],
|
|
|
|
|
|
|
|
[ 'OS=="mac"', {
|
|
|
|
# linking Corefoundation is needed since certain OSX debugging tools
|
|
|
|
# like Instruments require it for some features
|
|
|
|
'libraries': [ '-framework CoreFoundation' ],
|
|
|
|
'defines!': [
|
|
|
|
'NODE_PLATFORM="mac"',
|
|
|
|
],
|
|
|
|
'defines': [
|
|
|
|
# we need to use node's preferred "darwin" rather than gyp's preferred "mac"
|
|
|
|
'NODE_PLATFORM="darwin"',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'OS=="freebsd"', {
|
|
|
|
'libraries': [
|
|
|
|
'-lutil',
|
|
|
|
'-lkvm',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'OS=="aix"', {
|
|
|
|
'defines': [
|
|
|
|
'_LINUX_SOURCE_COMPAT',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'OS=="solaris"', {
|
|
|
|
'libraries': [
|
|
|
|
'-lkstat',
|
|
|
|
'-lumem',
|
|
|
|
],
|
|
|
|
'defines!': [
|
|
|
|
'NODE_PLATFORM="solaris"',
|
|
|
|
],
|
|
|
|
'defines': [
|
|
|
|
# we need to use node's preferred "sunos"
|
|
|
|
# rather than gyp's preferred "solaris"
|
|
|
|
'NODE_PLATFORM="sunos"',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ '(OS=="freebsd" or OS=="linux") and node_shared=="false" and coverage=="false"', {
|
|
|
|
'ldflags': [ '-Wl,-z,noexecstack',
|
|
|
|
'-Wl,--whole-archive <(V8_BASE)',
|
|
|
|
'-Wl,--no-whole-archive' ]
|
|
|
|
}],
|
|
|
|
[ '(OS=="freebsd" or OS=="linux") and node_shared=="false" and coverage=="true"', {
|
|
|
|
'ldflags': [ '-Wl,-z,noexecstack',
|
|
|
|
'-Wl,--whole-archive <(V8_BASE)',
|
|
|
|
'-Wl,--no-whole-archive',
|
|
|
|
'--coverage',
|
|
|
|
'-g',
|
|
|
|
'-O0' ],
|
|
|
|
'cflags': [ '--coverage',
|
|
|
|
'-g',
|
2017-04-13 20:31:44 +00:00
|
|
|
'-O0' ],
|
|
|
|
'cflags!': [ '-O3' ]
|
2016-10-18 14:41:26 +00:00
|
|
|
}],
|
2017-10-09 18:30:38 +00:00
|
|
|
[ 'OS=="mac" and node_shared=="false" and coverage=="true"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'OTHER_LDFLAGS': [
|
|
|
|
'--coverage',
|
|
|
|
],
|
|
|
|
'OTHER_CFLAGS+': [
|
|
|
|
'--coverage',
|
|
|
|
'-g',
|
|
|
|
'-O0'
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}],
|
2016-10-18 14:41:26 +00:00
|
|
|
[ 'OS=="sunos"', {
|
|
|
|
'ldflags': [ '-Wl,-M,/usr/lib/ld/map.noexstk' ],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}
|