mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(ext/node): stub HTTPParser internal binding (#26401)
Fixes https://github.com/denoland/deno/issues/26394.
This commit is contained in:
parent
0e60bb9cf7
commit
d48434e91f
3 changed files with 162 additions and 1 deletions
|
@ -469,6 +469,7 @@ deno_core::extension!(deno_node,
|
||||||
"internal_binding/constants.ts",
|
"internal_binding/constants.ts",
|
||||||
"internal_binding/crypto.ts",
|
"internal_binding/crypto.ts",
|
||||||
"internal_binding/handle_wrap.ts",
|
"internal_binding/handle_wrap.ts",
|
||||||
|
"internal_binding/http_parser.ts",
|
||||||
"internal_binding/mod.ts",
|
"internal_binding/mod.ts",
|
||||||
"internal_binding/node_file.ts",
|
"internal_binding/node_file.ts",
|
||||||
"internal_binding/node_options.ts",
|
"internal_binding/node_options.ts",
|
||||||
|
|
159
ext/node/polyfills/internal_binding/http_parser.ts
Normal file
159
ext/node/polyfills/internal_binding/http_parser.ts
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
||||||
|
// Copyright Joyent, Inc. and other Node contributors.
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
// copy of this software and associated documentation files (the
|
||||||
|
// "Software"), to deal in the Software without restriction, including
|
||||||
|
// without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||||
|
// persons to whom the Software is furnished to do so, subject to the
|
||||||
|
// following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included
|
||||||
|
// in all copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||||
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||||
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||||
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||||
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
import { primordials } from "ext:core/mod.js";
|
||||||
|
import { AsyncWrap } from "ext:deno_node/internal_binding/async_wrap.ts";
|
||||||
|
|
||||||
|
const {
|
||||||
|
ObjectDefineProperty,
|
||||||
|
ObjectEntries,
|
||||||
|
ObjectSetPrototypeOf,
|
||||||
|
SafeArrayIterator,
|
||||||
|
} = primordials;
|
||||||
|
|
||||||
|
export const methods = [
|
||||||
|
"DELETE",
|
||||||
|
"GET",
|
||||||
|
"HEAD",
|
||||||
|
"POST",
|
||||||
|
"PUT",
|
||||||
|
"CONNECT",
|
||||||
|
"OPTIONS",
|
||||||
|
"TRACE",
|
||||||
|
"COPY",
|
||||||
|
"LOCK",
|
||||||
|
"MKCOL",
|
||||||
|
"MOVE",
|
||||||
|
"PROPFIND",
|
||||||
|
"PROPPATCH",
|
||||||
|
"SEARCH",
|
||||||
|
"UNLOCK",
|
||||||
|
"BIND",
|
||||||
|
"REBIND",
|
||||||
|
"UNBIND",
|
||||||
|
"ACL",
|
||||||
|
"REPORT",
|
||||||
|
"MKACTIVITY",
|
||||||
|
"CHECKOUT",
|
||||||
|
"MERGE",
|
||||||
|
"M-SEARCH",
|
||||||
|
"NOTIFY",
|
||||||
|
"SUBSCRIBE",
|
||||||
|
"UNSUBSCRIBE",
|
||||||
|
"PATCH",
|
||||||
|
"PURGE",
|
||||||
|
"MKCALENDAR",
|
||||||
|
"LINK",
|
||||||
|
"UNLINK",
|
||||||
|
"SOURCE",
|
||||||
|
"QUERY",
|
||||||
|
];
|
||||||
|
|
||||||
|
export const allMethods = [
|
||||||
|
"DELETE",
|
||||||
|
"GET",
|
||||||
|
"HEAD",
|
||||||
|
"POST",
|
||||||
|
"PUT",
|
||||||
|
"CONNECT",
|
||||||
|
"OPTIONS",
|
||||||
|
"TRACE",
|
||||||
|
"COPY",
|
||||||
|
"LOCK",
|
||||||
|
"MKCOL",
|
||||||
|
"MOVE",
|
||||||
|
"PROPFIND",
|
||||||
|
"PROPPATCH",
|
||||||
|
"SEARCH",
|
||||||
|
"UNLOCK",
|
||||||
|
"BIND",
|
||||||
|
"REBIND",
|
||||||
|
"UNBIND",
|
||||||
|
"ACL",
|
||||||
|
"REPORT",
|
||||||
|
"MKACTIVITY",
|
||||||
|
"CHECKOUT",
|
||||||
|
"MERGE",
|
||||||
|
"M-SEARCH",
|
||||||
|
"NOTIFY",
|
||||||
|
"SUBSCRIBE",
|
||||||
|
"UNSUBSCRIBE",
|
||||||
|
"PATCH",
|
||||||
|
"PURGE",
|
||||||
|
"MKCALENDAR",
|
||||||
|
"LINK",
|
||||||
|
"UNLINK",
|
||||||
|
"SOURCE",
|
||||||
|
"PRI",
|
||||||
|
"DESCRIBE",
|
||||||
|
"ANNOUNCE",
|
||||||
|
"SETUP",
|
||||||
|
"PLAY",
|
||||||
|
"PAUSE",
|
||||||
|
"TEARDOWN",
|
||||||
|
"GET_PARAMETER",
|
||||||
|
"SET_PARAMETER",
|
||||||
|
"REDIRECT",
|
||||||
|
"RECORD",
|
||||||
|
"FLUSH",
|
||||||
|
"QUERY",
|
||||||
|
];
|
||||||
|
|
||||||
|
export function HTTPParser() {
|
||||||
|
}
|
||||||
|
|
||||||
|
ObjectSetPrototypeOf(HTTPParser.prototype, AsyncWrap.prototype);
|
||||||
|
|
||||||
|
function defineProps(obj: object, props: Record<string, unknown>) {
|
||||||
|
for (const entry of new SafeArrayIterator(ObjectEntries(props))) {
|
||||||
|
ObjectDefineProperty(obj, entry[0], {
|
||||||
|
value: entry[1],
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
defineProps(HTTPParser, {
|
||||||
|
REQUEST: 1,
|
||||||
|
RESPONSE: 2,
|
||||||
|
kOnMessageBegin: 0,
|
||||||
|
kOnHeaders: 1,
|
||||||
|
kOnHeadersComplete: 2,
|
||||||
|
kOnBody: 3,
|
||||||
|
kOnMessageComplete: 4,
|
||||||
|
kOnExecute: 5,
|
||||||
|
kOnTimeout: 6,
|
||||||
|
kLenientNone: 0,
|
||||||
|
kLenientHeaders: 1,
|
||||||
|
kLenientChunkedLength: 2,
|
||||||
|
kLenientKeepAlive: 4,
|
||||||
|
kLenientTransferEncoding: 8,
|
||||||
|
kLenientVersion: 16,
|
||||||
|
kLenientDataAfterClose: 32,
|
||||||
|
kLenientOptionalLFAfterCR: 64,
|
||||||
|
kLenientOptionalCRLFAfterChunk: 128,
|
||||||
|
kLenientOptionalCRBeforeLF: 256,
|
||||||
|
kLenientSpacesAfterChunkSize: 512,
|
||||||
|
kLenientAll: 1023,
|
||||||
|
});
|
|
@ -17,6 +17,7 @@ import * as types from "ext:deno_node/internal_binding/types.ts";
|
||||||
import * as udpWrap from "ext:deno_node/internal_binding/udp_wrap.ts";
|
import * as udpWrap from "ext:deno_node/internal_binding/udp_wrap.ts";
|
||||||
import * as util from "ext:deno_node/internal_binding/util.ts";
|
import * as util from "ext:deno_node/internal_binding/util.ts";
|
||||||
import * as uv from "ext:deno_node/internal_binding/uv.ts";
|
import * as uv from "ext:deno_node/internal_binding/uv.ts";
|
||||||
|
import * as httpParser from "ext:deno_node/internal_binding/http_parser.ts";
|
||||||
|
|
||||||
const modules = {
|
const modules = {
|
||||||
"async_wrap": asyncWrap,
|
"async_wrap": asyncWrap,
|
||||||
|
@ -32,7 +33,7 @@ const modules = {
|
||||||
"fs_dir": {},
|
"fs_dir": {},
|
||||||
"fs_event_wrap": {},
|
"fs_event_wrap": {},
|
||||||
"heap_utils": {},
|
"heap_utils": {},
|
||||||
"http_parser": {},
|
"http_parser": httpParser,
|
||||||
icu: {},
|
icu: {},
|
||||||
inspector: {},
|
inspector: {},
|
||||||
"js_stream": {},
|
"js_stream": {},
|
||||||
|
|
Loading…
Reference in a new issue