2023-11-02 13:06:48 -04:00
|
|
|
import { getTermios } from './termios.ts';
|
2023-11-24 08:31:51 -05:00
|
|
|
import { ctrlKey, noop } from './utils.ts';
|
2023-11-16 16:00:03 -05:00
|
|
|
import { ITestBase } from './types.ts';
|
2023-11-24 08:31:51 -05:00
|
|
|
import { KeyCommand } from './ansi.ts';
|
2023-11-29 14:55:57 -05:00
|
|
|
import { IRuntime } from './runtime_types.ts';
|
|
|
|
export type * from './runtime_types.ts';
|
2023-11-16 11:10:33 -05:00
|
|
|
|
2023-11-29 14:55:57 -05:00
|
|
|
/**
|
|
|
|
* Which Typescript runtime is currently being used
|
|
|
|
*/
|
2023-11-16 11:10:33 -05:00
|
|
|
export enum RunTimeType {
|
|
|
|
Bun = 'bun',
|
|
|
|
Deno = 'deno',
|
|
|
|
Unknown = 'common',
|
|
|
|
}
|
|
|
|
|
2023-11-29 14:55:57 -05:00
|
|
|
const decoder = new TextDecoder();
|
|
|
|
let scrollRuntime: IRuntime | null = null;
|
2023-11-16 11:10:33 -05:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Misc runtime functions
|
|
|
|
// ----------------------------------------------------------------------------
|
2023-11-01 15:05:31 -04:00
|
|
|
|
2023-11-24 08:31:51 -05:00
|
|
|
/**
|
|
|
|
* Convert input from ANSI escape sequences into a form
|
|
|
|
* that can be more easily mapped to editor commands
|
|
|
|
*
|
|
|
|
* @param raw - the raw chunk of input
|
|
|
|
*/
|
|
|
|
export function readKey(raw: Uint8Array): string {
|
2023-11-27 15:05:48 -05:00
|
|
|
if (raw.length === 0) {
|
|
|
|
return '';
|
|
|
|
}
|
2023-11-24 08:31:51 -05:00
|
|
|
const parsed = decoder.decode(raw);
|
|
|
|
|
|
|
|
// Return the input if it's unambiguous
|
|
|
|
if (parsed in KeyCommand) {
|
|
|
|
return parsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some keycodes have multiple potential inputs
|
|
|
|
switch (parsed) {
|
|
|
|
case '\x1b[1~':
|
|
|
|
case '\x1b[7~':
|
|
|
|
case '\x1bOH':
|
|
|
|
case '\x1b[H':
|
|
|
|
return KeyCommand.Home;
|
|
|
|
|
|
|
|
case '\x1b[4~':
|
|
|
|
case '\x1b[8~':
|
|
|
|
case '\x1bOF':
|
|
|
|
case '\x1b[F':
|
|
|
|
return KeyCommand.End;
|
|
|
|
|
|
|
|
case '\n':
|
|
|
|
case '\v':
|
|
|
|
return KeyCommand.Enter;
|
|
|
|
|
|
|
|
case ctrlKey('l'):
|
|
|
|
return KeyCommand.Escape;
|
|
|
|
|
|
|
|
case ctrlKey('h'):
|
|
|
|
return KeyCommand.Backspace;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return parsed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-29 14:55:57 -05:00
|
|
|
/**
|
|
|
|
* Append information to the scroll.log logfile
|
|
|
|
*/
|
2023-11-16 16:00:03 -05:00
|
|
|
export function logToFile(s: unknown) {
|
|
|
|
importForRuntime('file_io').then((f) => {
|
2023-11-29 14:55:57 -05:00
|
|
|
const raw = typeof s === 'string' ? s : JSON.stringify(s, null, 2);
|
2023-11-16 16:00:03 -05:00
|
|
|
const output = raw + '\n';
|
|
|
|
|
|
|
|
f.appendFile('./scroll.log', output).then(noop);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-11-10 18:22:09 -05:00
|
|
|
/**
|
|
|
|
* Kill program, displaying an error message
|
|
|
|
* @param s
|
|
|
|
*/
|
2023-11-16 13:00:02 -05:00
|
|
|
export function die(s: string | Error): void {
|
|
|
|
getTermios().then((t) => {
|
|
|
|
t.disableRawMode();
|
2023-11-29 14:55:57 -05:00
|
|
|
t.cleanup();
|
2023-11-16 13:00:02 -05:00
|
|
|
console.error(s);
|
|
|
|
|
|
|
|
getRuntime().then((r) => r.exit());
|
|
|
|
});
|
2023-11-02 13:06:48 -04:00
|
|
|
}
|
|
|
|
|
2023-11-01 15:05:31 -04:00
|
|
|
/**
|
|
|
|
* Determine which Typescript runtime we are operating under
|
|
|
|
*/
|
2023-11-16 16:00:03 -05:00
|
|
|
export function runtimeType(): RunTimeType {
|
2023-11-10 18:22:09 -05:00
|
|
|
let runtime = RunTimeType.Unknown;
|
2023-11-01 15:05:31 -04:00
|
|
|
|
|
|
|
if ('Deno' in globalThis) {
|
2023-11-10 18:22:09 -05:00
|
|
|
runtime = RunTimeType.Deno;
|
2023-11-01 15:05:31 -04:00
|
|
|
}
|
|
|
|
if ('Bun' in globalThis) {
|
2023-11-10 18:22:09 -05:00
|
|
|
runtime = RunTimeType.Bun;
|
2023-11-01 15:05:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return runtime;
|
2023-11-10 18:22:09 -05:00
|
|
|
}
|
|
|
|
|
2023-11-16 13:00:02 -05:00
|
|
|
/**
|
|
|
|
* Get the adapter object for the current Runtime
|
|
|
|
*/
|
2023-11-10 18:22:09 -05:00
|
|
|
export async function getRuntime(): Promise<IRuntime> {
|
|
|
|
if (scrollRuntime === null) {
|
2023-11-16 16:00:03 -05:00
|
|
|
const runtime = runtimeType();
|
2023-11-10 18:22:09 -05:00
|
|
|
const path = `../${runtime}/mod.ts`;
|
|
|
|
|
|
|
|
const pkg = await import(path);
|
|
|
|
if ('default' in pkg) {
|
|
|
|
scrollRuntime = pkg.default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(scrollRuntime!);
|
|
|
|
}
|
2023-11-01 15:05:31 -04:00
|
|
|
|
2023-11-16 16:00:03 -05:00
|
|
|
/**
|
|
|
|
* Get the common test interface object
|
|
|
|
*/
|
|
|
|
export async function getTestRunner(): Promise<ITestBase> {
|
|
|
|
const runtime = runtimeType();
|
|
|
|
const path = `../${runtime}/test_base.ts`;
|
|
|
|
const pkg = await import(path);
|
|
|
|
if ('default' in pkg) {
|
|
|
|
return pkg.default;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pkg;
|
|
|
|
}
|
|
|
|
|
2023-11-01 15:05:31 -04:00
|
|
|
/**
|
|
|
|
* Import a runtime-specific module
|
|
|
|
*
|
2023-11-16 16:00:03 -05:00
|
|
|
* e.g. to load "src/bun/mod.ts", if the runtime is bun,
|
2023-11-01 15:05:31 -04:00
|
|
|
* you can use like so `await importForRuntime('index')`;
|
|
|
|
*
|
|
|
|
* @param path - the path within the runtime module
|
|
|
|
*/
|
|
|
|
export const importForRuntime = async (path: string) => {
|
2023-11-16 16:00:03 -05:00
|
|
|
const runtime = runtimeType();
|
2023-11-01 15:25:52 -04:00
|
|
|
const suffix = '.ts';
|
2023-11-01 15:05:31 -04:00
|
|
|
const base = `../${runtime}/`;
|
|
|
|
|
2023-11-29 14:55:57 -05:00
|
|
|
const pathParts = path
|
|
|
|
.split('/')
|
2023-11-01 15:05:31 -04:00
|
|
|
.filter((part) => part !== '' && part !== '.' && part !== suffix)
|
|
|
|
.map((part) => part.replace(suffix, ''));
|
|
|
|
|
|
|
|
const cleanedPath = pathParts.join('/');
|
|
|
|
const importPath = base + cleanedPath + suffix;
|
|
|
|
|
2023-11-16 16:00:03 -05:00
|
|
|
const pkg = await import(importPath);
|
2023-11-03 11:59:58 -04:00
|
|
|
if ('default' in pkg) {
|
|
|
|
return pkg.default;
|
|
|
|
}
|
|
|
|
|
2023-11-16 16:00:03 -05:00
|
|
|
return pkg;
|
2023-11-03 11:59:58 -04:00
|
|
|
};
|