2015-08-17 23:33:13 +02:00
|
|
|
'use strict';
|
|
|
|
|
2017-01-13 11:16:46 +01:00
|
|
|
// Invoke with makeRequireFunction(module) where |module| is the Module object
|
|
|
|
// to use as the context for the require() function.
|
|
|
|
function makeRequireFunction(mod) {
|
|
|
|
const Module = mod.constructor;
|
2015-11-25 22:27:29 +01:00
|
|
|
|
|
|
|
function require(path) {
|
2016-01-07 22:36:30 +01:00
|
|
|
try {
|
|
|
|
exports.requireDepth += 1;
|
2017-01-13 11:16:46 +01:00
|
|
|
return mod.require(path);
|
2016-01-07 22:36:30 +01:00
|
|
|
} finally {
|
|
|
|
exports.requireDepth -= 1;
|
|
|
|
}
|
2015-11-25 22:27:29 +01:00
|
|
|
}
|
|
|
|
|
2016-04-07 16:04:47 +02:00
|
|
|
function resolve(request) {
|
2017-01-13 11:16:46 +01:00
|
|
|
return Module._resolveFilename(request, mod);
|
2016-04-07 16:04:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
require.resolve = resolve;
|
2015-11-25 22:27:29 +01:00
|
|
|
|
|
|
|
require.main = process.mainModule;
|
|
|
|
|
|
|
|
// Enable support to add extra extension types.
|
|
|
|
require.extensions = Module._extensions;
|
|
|
|
|
|
|
|
require.cache = Module._cache;
|
|
|
|
|
|
|
|
return require;
|
|
|
|
}
|
2015-08-17 23:33:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
|
|
|
* because the buffer-to-string conversion in `fs.readFileSync()`
|
|
|
|
* translates it to FEFF, the UTF-16 BOM.
|
|
|
|
*/
|
|
|
|
function stripBOM(content) {
|
|
|
|
if (content.charCodeAt(0) === 0xFEFF) {
|
|
|
|
content = content.slice(1);
|
|
|
|
}
|
|
|
|
return content;
|
|
|
|
}
|
2016-04-15 02:03:12 +02:00
|
|
|
|
2017-04-04 11:58:15 +02:00
|
|
|
/**
|
|
|
|
* Find end of shebang line and slice it off
|
|
|
|
*/
|
|
|
|
function stripShebang(content) {
|
|
|
|
// Remove shebang
|
|
|
|
var contLen = content.length;
|
|
|
|
if (contLen >= 2) {
|
|
|
|
if (content.charCodeAt(0) === 35/*#*/ &&
|
|
|
|
content.charCodeAt(1) === 33/*!*/) {
|
|
|
|
if (contLen === 2) {
|
|
|
|
// Exact match
|
|
|
|
content = '';
|
|
|
|
} else {
|
|
|
|
// Find end of shebang line and slice it off
|
|
|
|
var i = 2;
|
|
|
|
for (; i < contLen; ++i) {
|
|
|
|
var code = content.charCodeAt(i);
|
|
|
|
if (code === 10/*\n*/ || code === 13/*\r*/)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i === contLen)
|
|
|
|
content = '';
|
|
|
|
else {
|
|
|
|
// Note that this actually includes the newline character(s) in the
|
|
|
|
// new output. This duplicates the behavior of the regular expression
|
|
|
|
// that was previously used to replace the shebang line
|
|
|
|
content = content.slice(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
2017-04-25 00:45:52 +02:00
|
|
|
const builtinLibs = [
|
2017-03-10 00:13:34 +01:00
|
|
|
'assert', 'async_hooks', 'buffer', 'child_process', 'cluster', 'crypto',
|
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 19:17:16 +02:00
|
|
|
'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'https', 'net',
|
|
|
|
'os', 'path', 'punycode', 'querystring', 'readline', 'repl', 'stream',
|
2017-03-10 00:13:34 +01:00
|
|
|
'string_decoder', 'tls', 'tty', 'url', 'util', 'v8', 'vm', 'zlib'
|
2017-01-01 06:39:57 +01:00
|
|
|
];
|
2016-04-15 02:03:12 +02:00
|
|
|
|
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 19:17:16 +02:00
|
|
|
const { exposeHTTP2 } = process.binding('config');
|
|
|
|
if (exposeHTTP2)
|
|
|
|
builtinLibs.push('http2');
|
|
|
|
|
2016-04-15 02:03:12 +02:00
|
|
|
function addBuiltinLibsToObject(object) {
|
|
|
|
// Make built-in modules available directly (loaded lazily).
|
2017-04-25 00:45:52 +02:00
|
|
|
builtinLibs.forEach((name) => {
|
2016-04-18 13:19:12 +02:00
|
|
|
// Goals of this mechanism are:
|
|
|
|
// - Lazy loading of built-in modules
|
|
|
|
// - Having all built-in modules available as non-enumerable properties
|
|
|
|
// - Allowing the user to re-assign these variables as if there were no
|
|
|
|
// pre-existing globals with the same name.
|
|
|
|
|
|
|
|
const setReal = (val) => {
|
|
|
|
// Deleting the property before re-assigning it disables the
|
|
|
|
// getter/setter mechanism.
|
|
|
|
delete object[name];
|
|
|
|
object[name] = val;
|
|
|
|
};
|
|
|
|
|
2016-04-15 02:03:12 +02:00
|
|
|
Object.defineProperty(object, name, {
|
|
|
|
get: () => {
|
|
|
|
const lib = require(name);
|
2016-04-18 13:19:12 +02:00
|
|
|
|
|
|
|
// Disable the current getter/setter and set up a new
|
|
|
|
// non-enumerable property.
|
2016-04-15 02:03:12 +02:00
|
|
|
delete object[name];
|
2016-04-18 13:19:12 +02:00
|
|
|
Object.defineProperty(object, name, {
|
|
|
|
get: () => lib,
|
|
|
|
set: setReal,
|
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
|
|
|
|
return lib;
|
2016-04-15 02:03:12 +02:00
|
|
|
},
|
2016-04-18 13:19:12 +02:00
|
|
|
set: setReal,
|
2016-04-15 02:03:12 +02:00
|
|
|
configurable: true,
|
|
|
|
enumerable: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2017-04-25 00:45:52 +02:00
|
|
|
|
|
|
|
module.exports = exports = {
|
|
|
|
addBuiltinLibsToObject,
|
|
|
|
builtinLibs,
|
|
|
|
makeRequireFunction,
|
|
|
|
requireDepth: 0,
|
|
|
|
stripBOM,
|
|
|
|
stripShebang
|
|
|
|
};
|