mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
f62e22a699
Workaround the circular references issue by using a initializer function to give tty stream class to `initStdin`. Fixes https://github.com/denoland/deno/issues/21024 Fixes https://github.com/denoland/deno/issues/20611 Fixes https://github.com/denoland/deno/issues/20890 Fixes https://github.com/denoland/deno/issues/20336 `create-svelte` works now: ``` divy@mini /t/a> ~/gh/deno/target/debug/deno run -A --unstable --reload npm:create-svelte@latest sveltekit-deno create-svelte version 5.1.1 ┌ Welcome to SvelteKit! │ ◇ Which Svelte app template? │ Skeleton project │ ◇ Add type checking with TypeScript? │ Yes, using JavaScript with JSDoc comments │ ◇ Select additional options (use arrow keys/space bar) │ none │ └ Your project is ready! ✔ Type-checked JavaScript https://www.typescriptlang.org/tsconfig#checkJs Install community-maintained integrations: https://github.com/svelte-add/svelte-add Next steps: 1: cd sveltekit-deno 2: npm install 3: git init && git add -A && git commit -m "Initial commit" (optional) 4: npm run dev -- --open To close the dev server, hit Ctrl-C Stuck? Visit us at https://svelte.dev/chat ``` --------- Signed-off-by: Divy Srivastava <dj.srivastava23@gmail.com>
201 lines
5.8 KiB
JavaScript
201 lines
5.8 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
import { Buffer } from "node:buffer";
|
|
import {
|
|
clearLine,
|
|
clearScreenDown,
|
|
cursorTo,
|
|
moveCursor,
|
|
} from "ext:deno_node/internal/readline/callbacks.mjs";
|
|
import { Duplex, Readable, Writable } from "node:stream";
|
|
import * as io from "ext:deno_io/12_io.js";
|
|
import { guessHandleType } from "ext:deno_node/internal_binding/util.ts";
|
|
|
|
// https://github.com/nodejs/node/blob/00738314828074243c9a52a228ab4c68b04259ef/lib/internal/bootstrap/switches/is_main_thread.js#L41
|
|
export function createWritableStdioStream(writer, name) {
|
|
const stream = new Writable({
|
|
emitClose: false,
|
|
write(buf, enc, cb) {
|
|
if (!writer) {
|
|
this.destroy(
|
|
new Error(`Deno.${name} is not available in this environment`),
|
|
);
|
|
return;
|
|
}
|
|
writer.writeSync(buf instanceof Uint8Array ? buf : Buffer.from(buf, enc));
|
|
cb();
|
|
},
|
|
destroy(err, cb) {
|
|
cb(err);
|
|
this._undestroy();
|
|
if (!this._writableState.emitClose) {
|
|
nextTick(() => this.emit("close"));
|
|
}
|
|
},
|
|
});
|
|
stream.fd = writer?.rid ?? -1;
|
|
stream.destroySoon = stream.destroy;
|
|
stream._isStdio = true;
|
|
stream.once("close", () => writer?.close());
|
|
Object.defineProperties(stream, {
|
|
columns: {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () =>
|
|
Deno.isatty?.(writer?.rid) ? Deno.consoleSize?.().columns : undefined,
|
|
},
|
|
rows: {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () =>
|
|
Deno.isatty?.(writer?.rid) ? Deno.consoleSize?.().rows : undefined,
|
|
},
|
|
isTTY: {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => Deno.isatty?.(writer?.rid),
|
|
},
|
|
getWindowSize: {
|
|
enumerable: true,
|
|
configurable: true,
|
|
value: () =>
|
|
Deno.isatty?.(writer?.rid)
|
|
? Object.values(Deno.consoleSize?.())
|
|
: undefined,
|
|
},
|
|
});
|
|
|
|
if (Deno.isatty?.(writer?.rid)) {
|
|
// These belong on tty.WriteStream(), but the TTY streams currently have
|
|
// following problems:
|
|
// 1. Using them here introduces a circular dependency.
|
|
// 2. Creating a net.Socket() from a fd is not currently supported.
|
|
stream.cursorTo = function (x, y, callback) {
|
|
return cursorTo(this, x, y, callback);
|
|
};
|
|
|
|
stream.moveCursor = function (dx, dy, callback) {
|
|
return moveCursor(this, dx, dy, callback);
|
|
};
|
|
|
|
stream.clearLine = function (dir, callback) {
|
|
return clearLine(this, dir, callback);
|
|
};
|
|
|
|
stream.clearScreenDown = function (callback) {
|
|
return clearScreenDown(this, callback);
|
|
};
|
|
}
|
|
|
|
return stream;
|
|
}
|
|
|
|
function _guessStdinType(fd) {
|
|
if (typeof fd !== "number" || fd < 0) return "UNKNOWN";
|
|
return guessHandleType(fd);
|
|
}
|
|
|
|
const _read = function (size) {
|
|
const p = Buffer.alloc(size || 16 * 1024);
|
|
io.stdin?.read(p).then(
|
|
(length) => {
|
|
this.push(length === null ? null : p.slice(0, length));
|
|
},
|
|
(error) => {
|
|
this.destroy(error);
|
|
},
|
|
);
|
|
};
|
|
|
|
let readStream;
|
|
export function setReadStream(s) {
|
|
readStream = s;
|
|
}
|
|
|
|
/** https://nodejs.org/api/process.html#process_process_stdin */
|
|
// https://github.com/nodejs/node/blob/v18.12.1/lib/internal/bootstrap/switches/is_main_thread.js#L189
|
|
/** Create process.stdin */
|
|
export const initStdin = () => {
|
|
const fd = io.stdin?.rid;
|
|
let stdin;
|
|
const stdinType = _guessStdinType(fd);
|
|
|
|
switch (stdinType) {
|
|
case "FILE": {
|
|
// Since `fs.ReadStream` cannot be imported before process initialization,
|
|
// use `Readable` instead.
|
|
// https://github.com/nodejs/node/blob/v18.12.1/lib/internal/bootstrap/switches/is_main_thread.js#L200
|
|
// https://github.com/nodejs/node/blob/v18.12.1/lib/internal/fs/streams.js#L148
|
|
stdin = new Readable({
|
|
highWaterMark: 64 * 1024,
|
|
autoDestroy: false,
|
|
read: _read,
|
|
});
|
|
break;
|
|
}
|
|
case "TTY": {
|
|
stdin = new readStream(fd);
|
|
break;
|
|
}
|
|
case "PIPE":
|
|
case "TCP": {
|
|
// For PIPE and TCP, `new Duplex()` should be replaced `new net.Socket()` if possible.
|
|
// There are two problems that need to be resolved.
|
|
// 1. Using them here introduces a circular dependency.
|
|
// 2. Creating a net.Socket() from a fd is not currently supported.
|
|
// https://github.com/nodejs/node/blob/v18.12.1/lib/internal/bootstrap/switches/is_main_thread.js#L206
|
|
// https://github.com/nodejs/node/blob/v18.12.1/lib/net.js#L329
|
|
stdin = new Duplex({
|
|
readable: stdinType === "TTY" ? undefined : true,
|
|
writable: stdinType === "TTY" ? undefined : false,
|
|
readableHighWaterMark: stdinType === "TTY" ? 0 : undefined,
|
|
allowHalfOpen: false,
|
|
emitClose: false,
|
|
autoDestroy: true,
|
|
decodeStrings: false,
|
|
read: _read,
|
|
});
|
|
|
|
if (stdinType !== "TTY") {
|
|
// Make sure the stdin can't be `.end()`-ed
|
|
stdin._writableState.ended = true;
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
// Provide a dummy contentless input for e.g. non-console
|
|
// Windows applications.
|
|
stdin = new Readable({ read() {} });
|
|
stdin.push(null);
|
|
}
|
|
}
|
|
|
|
stdin.on("close", () => io.stdin?.close());
|
|
stdin.fd = io.stdin?.rid ?? -1;
|
|
Object.defineProperty(stdin, "isTTY", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get() {
|
|
return Deno.isatty?.(io.stdin.rid);
|
|
},
|
|
});
|
|
stdin._isRawMode = false;
|
|
stdin.setRawMode = (enable) => {
|
|
io.stdin?.setRaw?.(enable);
|
|
stdin._isRawMode = enable;
|
|
return stdin;
|
|
};
|
|
Object.defineProperty(stdin, "isRaw", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get() {
|
|
return stdin._isRawMode;
|
|
},
|
|
});
|
|
|
|
return stdin;
|
|
};
|