mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00

Some checks are pending
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Also accepts `Buffer` typed path. Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-readlink-type-check.js test to pass. Towards #29972
104 lines
2.6 KiB
TypeScript
104 lines
2.6 KiB
TypeScript
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
import { TextEncoder } from "ext:deno_web/08_text_encoding.js";
|
|
import { MaybeEmpty, notImplemented } from "ext:deno_node/_utils.ts";
|
|
import { promisify } from "ext:deno_node/internal/util.mjs";
|
|
import { denoErrorToNodeError } from "ext:deno_node/internal/errors.ts";
|
|
import { Buffer } from "node:buffer";
|
|
import { getValidatedPathToString } from "ext:deno_node/internal/fs/utils.mjs";
|
|
import { makeCallback } from "ext:deno_node/_fs/_fs_common.ts";
|
|
|
|
type ReadlinkCallback = (
|
|
err: MaybeEmpty<Error>,
|
|
linkString: MaybeEmpty<string | Uint8Array>,
|
|
) => void;
|
|
|
|
interface ReadlinkOptions {
|
|
encoding?: string | null;
|
|
}
|
|
|
|
function maybeEncode(
|
|
data: string,
|
|
encoding: string | null,
|
|
): string | Uint8Array {
|
|
if (encoding === "buffer") {
|
|
return new TextEncoder().encode(data);
|
|
}
|
|
return data;
|
|
}
|
|
|
|
function getEncoding(
|
|
optOrCallback?: ReadlinkOptions | ReadlinkCallback,
|
|
): string | null {
|
|
if (!optOrCallback || typeof optOrCallback === "function") {
|
|
return null;
|
|
} else {
|
|
if (optOrCallback.encoding) {
|
|
if (
|
|
optOrCallback.encoding === "utf8" ||
|
|
optOrCallback.encoding === "utf-8"
|
|
) {
|
|
return "utf8";
|
|
} else if (optOrCallback.encoding === "buffer") {
|
|
return "buffer";
|
|
} else {
|
|
notImplemented(`fs.readlink encoding=${optOrCallback.encoding}`);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function readlink(
|
|
path: string | Buffer | URL,
|
|
optOrCallback: ReadlinkCallback | ReadlinkOptions,
|
|
callback?: ReadlinkCallback,
|
|
) {
|
|
path = getValidatedPathToString(path);
|
|
|
|
let cb: ReadlinkCallback | undefined;
|
|
if (typeof optOrCallback === "function") {
|
|
cb = optOrCallback;
|
|
} else {
|
|
cb = callback;
|
|
}
|
|
cb = makeCallback(cb);
|
|
|
|
const encoding = getEncoding(optOrCallback);
|
|
|
|
Deno.readLink(path).then((data: string) => {
|
|
const res = maybeEncode(data, encoding);
|
|
if (cb) cb(null, res);
|
|
}, (err: Error) => {
|
|
if (cb) {
|
|
(cb as (e: Error) => void)(denoErrorToNodeError(err, {
|
|
syscall: "readlink",
|
|
path,
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
|
|
export const readlinkPromise = promisify(readlink) as (
|
|
path: string | Buffer | URL,
|
|
opt?: ReadlinkOptions,
|
|
) => Promise<string | Uint8Array>;
|
|
|
|
export function readlinkSync(
|
|
path: string | Buffer | URL,
|
|
opt?: ReadlinkOptions,
|
|
): string | Uint8Array {
|
|
path = getValidatedPathToString(path);
|
|
|
|
try {
|
|
return maybeEncode(Deno.readLinkSync(path), getEncoding(opt));
|
|
} catch (error) {
|
|
throw denoErrorToNodeError(error, {
|
|
syscall: "readlink",
|
|
path,
|
|
});
|
|
}
|
|
}
|