Compare commits
12 Commits
0649843821
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
16c81e5d07 | ||
|
|
085cec8dc0 | ||
|
|
071d4e3aa4 | ||
|
|
d76119918d | ||
|
|
3798a53395 | ||
|
|
4777552106 | ||
|
|
62038c2814 | ||
|
|
646a9f6b7a | ||
|
|
255cc6a858 | ||
|
|
e0269c9b6a | ||
|
|
0577ee49cf | ||
|
|
729c8a5fd1 |
@@ -34,7 +34,8 @@ Aplikace je zdarma hostovaná přes Vercel a je veřejně dostupná na adrese ht
|
|||||||
## testování
|
## testování
|
||||||
|
|
||||||
Aplikace je testována v následujících prohlížečích:
|
Aplikace je testována v následujících prohlížečích:
|
||||||
- `Helium 0.12.1.1 (Chromium 148.0.7778.96) (64-bit)`
|
- `Helium 0.12.3.1 (Chromium 148.0.7778.167) (64-bit)`
|
||||||
|
- `Firefox 151.0 (64-bit)`
|
||||||
|
|
||||||
## licence
|
## licence
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "webshell",
|
"name": "webshell",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.2.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import { Wush } from './shell/wush/Wush'
|
|||||||
import { Terminal } from './terminal/Terminal'
|
import { Terminal } from './terminal/Terminal'
|
||||||
import { EventBroadcaster } from './utils/EventBroadcaster'
|
import { EventBroadcaster } from './utils/EventBroadcaster'
|
||||||
|
|
||||||
export const WEBSHELL_VERSION = "0.2.0"
|
export const WEBSHELL_VERSION = "0.2.1"
|
||||||
export const VERSION_COMMENT: string | null = "hi"
|
export const INFO_COMMENT: string | null = null
|
||||||
|
|
||||||
// initialize object store for webfs
|
// initialize object store for webfs
|
||||||
let WebfsDatabase: IDBDatabase | null = null
|
let WebfsDatabase: IDBDatabase | null = null
|
||||||
|
|||||||
@@ -172,7 +172,7 @@ export class Item {
|
|||||||
return this.path === '/' ? '/' : this.path.substring(this.path.lastIndexOf('/') + 1)
|
return this.path === '/' ? '/' : this.path.substring(this.path.lastIndexOf('/') + 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
ReadData(): string | null {
|
GetData(): string | null {
|
||||||
return this.data
|
return this.data
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -193,6 +193,49 @@ export class Item {
|
|||||||
return items.filter((item): item is Item => item !== null)
|
return items.filter((item): item is Item => item !== null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies this item to the destination, replacing any existing destination.
|
||||||
|
*/
|
||||||
|
async Copy(destination: Item): Promise<void> {
|
||||||
|
if (destination.path === this.path) {
|
||||||
|
throw new Error(`Cannot copy item onto itself: ${this.path}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(await this.Exists())) {
|
||||||
|
throw new Error(`Cannot copy item that has not been created: ${this.path}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.load()
|
||||||
|
|
||||||
|
if (await destination.Exists()) {
|
||||||
|
await destination.Delete()
|
||||||
|
}
|
||||||
|
|
||||||
|
const childrenToCopy = this.isDirectory ? await this.List() : []
|
||||||
|
|
||||||
|
destination.isDirectory = this.isDirectory
|
||||||
|
destination.executable = this.executable
|
||||||
|
destination.data = this.isDirectory ? null : this.data
|
||||||
|
destination.children = []
|
||||||
|
|
||||||
|
await destination.Create()
|
||||||
|
|
||||||
|
if (this.isDirectory) {
|
||||||
|
await Promise.all(childrenToCopy.map(async child => {
|
||||||
|
const childDestinationPath = Item.NormalizePath(
|
||||||
|
`${destination.GetPath()}/${child.GetName()}`
|
||||||
|
)
|
||||||
|
const destChild = child.IsDirectory()
|
||||||
|
? await Item.openDir(childDestinationPath)
|
||||||
|
: await Item.open(childDestinationPath)
|
||||||
|
|
||||||
|
await child.Copy(destChild)
|
||||||
|
}))
|
||||||
|
|
||||||
|
await destination.load()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async Delete(): Promise<void> {
|
async Delete(): Promise<void> {
|
||||||
if (!(await this.Exists())) return
|
if (!(await this.Exists())) return
|
||||||
|
|
||||||
|
|||||||
@@ -9,20 +9,23 @@ export class Cat extends Program {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
const item = await Item.open(Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`))
|
const path = Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`)
|
||||||
|
let item: Item
|
||||||
|
|
||||||
if (!(await item.Exists())) {
|
try {
|
||||||
stdout.emit(`cat: error: item ${item.GetPath()} doesn't exist.\n`)
|
item = await Item.open(path)
|
||||||
|
} catch (err) {
|
||||||
|
stdout.emit(`cat: error: item ${path} is a directory\n`)
|
||||||
return 2
|
return 2
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.IsDirectory()) {
|
if (!(await item.Exists())) {
|
||||||
stdout.emit(`cat: error: can't read data from a directory; item ${item.GetPath()} is a directory.\n`)
|
stdout.emit(`cat: error: item ${item.GetPath()} doesn't exist.\n`)
|
||||||
return 3
|
return 3
|
||||||
}
|
}
|
||||||
|
|
||||||
stdout.emit(`${item.ReadData()}`)
|
stdout.emit(`${item.GetData()}`)
|
||||||
stdout.emit('<- EOF\n')
|
stdout.emit('\x1B[0;30m\x1B[47m EOF \x1B[0m\n')
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|||||||
59
src/program/Cp.ts
Normal file
59
src/program/Cp.ts
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
import { Item } from '../fs/Item'
|
||||||
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
|
import { Program } from './Program'
|
||||||
|
|
||||||
|
export class Cp extends Program {
|
||||||
|
constructor() {
|
||||||
|
super()
|
||||||
|
}
|
||||||
|
|
||||||
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
|
if (args.length < 3) {
|
||||||
|
stdout.emit("cp: error: missing the first and/or second path arguments\n")
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
let item1: Item
|
||||||
|
let item2: Item
|
||||||
|
|
||||||
|
let destIsDir = false
|
||||||
|
|
||||||
|
// figure out if the items are files or directories
|
||||||
|
try {
|
||||||
|
item1 = await Item.openDir(Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`))
|
||||||
|
} catch {
|
||||||
|
item1 = await Item.open(Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`))
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
item2 = await Item.open(Item.NormalizePath(args[2].startsWith('/') ? args[2] : `${workdir.GetPath()}/${args[2]}`))
|
||||||
|
} catch {
|
||||||
|
item2 = await Item.openDir(Item.NormalizePath(args[2].startsWith('/') ? args[2] : `${workdir.GetPath()}/${args[2]}`))
|
||||||
|
destIsDir = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!await item1.Exists()) {
|
||||||
|
stdout.emit(`cp: error: source item ${item1.GetPath()} does not exist.\n`)
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await item2.Exists() && !destIsDir) {
|
||||||
|
stdout.emit(`cp: error: destination item ${item2.GetPath()} already exists.\n`)
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
|
||||||
|
// either copy the item into a destination directory or create a new copy
|
||||||
|
if (destIsDir) {
|
||||||
|
const destChild = await Item.open(Item.NormalizePath(`${item2.GetPath()}/${item1.GetName()}`))
|
||||||
|
await item1.Copy(destChild)
|
||||||
|
stdout.emit(`-> copied ${item1.GetPath()} -> ${destChild.GetPath()}\n`)
|
||||||
|
} else {
|
||||||
|
await item2.Create()
|
||||||
|
await item1.Copy(item2)
|
||||||
|
|
||||||
|
stdout.emit(`-> copied ${item1.GetPath()} -> ${item2.GetPath()}\n`)
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
}
|
||||||
390
src/program/Edit.ts
Normal file
390
src/program/Edit.ts
Normal file
@@ -0,0 +1,390 @@
|
|||||||
|
import { GetCurrentTerminal } from '../app'
|
||||||
|
import { Item } from '../fs/Item'
|
||||||
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
|
import { Program } from './Program'
|
||||||
|
|
||||||
|
type Viewport = {
|
||||||
|
cols: number
|
||||||
|
rows: number
|
||||||
|
headerRows: number
|
||||||
|
footerRows: number
|
||||||
|
contentHeight: number
|
||||||
|
}
|
||||||
|
|
||||||
|
type PromptState =
|
||||||
|
| { active: false }
|
||||||
|
| { active: true; label: string; value: string; handler: (value: string) => Promise<void> }
|
||||||
|
|
||||||
|
export class Edit extends Program {
|
||||||
|
constructor() {
|
||||||
|
super()
|
||||||
|
}
|
||||||
|
|
||||||
|
async Exec(stdin: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
|
if (args.length < 2) {
|
||||||
|
stdout.emit('edit: error: missing path argument\n')
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
const terminal = GetCurrentTerminal()
|
||||||
|
const resolvePath = (path: string) => Item.NormalizePath(path.startsWith('/') ? path : `${workdir.GetPath()}/${path}`)
|
||||||
|
|
||||||
|
let filePath = resolvePath(args[1])
|
||||||
|
let file = await Item.open(filePath, '')
|
||||||
|
let fileExists = await file.Exists()
|
||||||
|
let lines = this.normalizeLines(file.GetData())
|
||||||
|
let dirty = false
|
||||||
|
|
||||||
|
let cursorLine = 0
|
||||||
|
let cursorCol = 0
|
||||||
|
let preferredCol = 0
|
||||||
|
let scrollLine = 0
|
||||||
|
let scrollCol = 0
|
||||||
|
|
||||||
|
let statusMessage = ''
|
||||||
|
let exitArmed = false
|
||||||
|
|
||||||
|
let promptState: PromptState = { active: false }
|
||||||
|
|
||||||
|
const getViewport = (): Viewport => {
|
||||||
|
const cols = Math.max(1, Math.floor(terminal.GetWidthCells()))
|
||||||
|
const rows = Math.max(1, Math.floor(terminal.GetHeightCells()))
|
||||||
|
const headerRows = rows >= 3 ? 1 : 0
|
||||||
|
const footerRows = rows >= 2 ? 1 : 0
|
||||||
|
const contentHeight = Math.max(1, rows - headerRows - footerRows)
|
||||||
|
return { cols, rows, headerRows, footerRows, contentHeight }
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatLine = (text: string, width: number) => {
|
||||||
|
if (text.length > width)
|
||||||
|
return text.slice(0, width)
|
||||||
|
return text.padEnd(width, ' ')
|
||||||
|
}
|
||||||
|
|
||||||
|
const clampCursor = () => {
|
||||||
|
cursorLine = Math.max(0, Math.min(cursorLine, lines.length - 1))
|
||||||
|
const lineLength = lines[cursorLine].length
|
||||||
|
cursorCol = Math.max(0, Math.min(cursorCol, lineLength))
|
||||||
|
preferredCol = cursorCol
|
||||||
|
}
|
||||||
|
|
||||||
|
const ensureCursorVisible = (viewport: Viewport) => {
|
||||||
|
if (cursorLine < scrollLine)
|
||||||
|
scrollLine = cursorLine
|
||||||
|
if (cursorLine >= scrollLine + viewport.contentHeight)
|
||||||
|
scrollLine = cursorLine - viewport.contentHeight + 1
|
||||||
|
|
||||||
|
if (cursorCol < scrollCol)
|
||||||
|
scrollCol = cursorCol
|
||||||
|
if (cursorCol >= scrollCol + viewport.cols)
|
||||||
|
scrollCol = cursorCol - viewport.cols + 1
|
||||||
|
|
||||||
|
const maxScrollLine = Math.max(0, lines.length - viewport.contentHeight)
|
||||||
|
scrollLine = Math.min(scrollLine, maxScrollLine)
|
||||||
|
scrollCol = Math.max(0, scrollCol)
|
||||||
|
}
|
||||||
|
|
||||||
|
const setStatus = (message: string) => {
|
||||||
|
statusMessage = message
|
||||||
|
}
|
||||||
|
|
||||||
|
const openFile = async (path: string) => {
|
||||||
|
try {
|
||||||
|
const resolved = resolvePath(path)
|
||||||
|
const nextFile = await Item.open(resolved, '')
|
||||||
|
const exists = await nextFile.Exists()
|
||||||
|
const content = nextFile.GetData()
|
||||||
|
|
||||||
|
filePath = resolved
|
||||||
|
file = nextFile
|
||||||
|
fileExists = exists
|
||||||
|
lines = this.normalizeLines(content)
|
||||||
|
dirty = false
|
||||||
|
|
||||||
|
cursorLine = 0
|
||||||
|
cursorCol = 0
|
||||||
|
preferredCol = 0
|
||||||
|
scrollLine = 0
|
||||||
|
scrollCol = 0
|
||||||
|
|
||||||
|
setStatus(exists ? `Opened ${filePath}` : `New file ${filePath}`)
|
||||||
|
} catch (e) {
|
||||||
|
setStatus(`Open failed: ${e instanceof Error ? e.message : String(e)}`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const saveFile = async () => {
|
||||||
|
const data = lines.join('\n')
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (fileExists) {
|
||||||
|
await file.Write(data)
|
||||||
|
} else {
|
||||||
|
const created = await Item.open(filePath, data)
|
||||||
|
await created.Create()
|
||||||
|
file = created
|
||||||
|
fileExists = true
|
||||||
|
}
|
||||||
|
|
||||||
|
dirty = false
|
||||||
|
exitArmed = false
|
||||||
|
setStatus(`Saved ${filePath}`)
|
||||||
|
} catch (e) {
|
||||||
|
setStatus(`Save failed: ${e instanceof Error ? e.message : String(e)}`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const startPrompt = (label: string, handler: (value: string) => Promise<void>) => {
|
||||||
|
promptState = { active: true, label, value: '', handler }
|
||||||
|
}
|
||||||
|
|
||||||
|
const render = () => {
|
||||||
|
const viewport = getViewport()
|
||||||
|
const footerRow = viewport.headerRows + viewport.contentHeight + (viewport.footerRows ? 1 : 0)
|
||||||
|
ensureCursorVisible(viewport)
|
||||||
|
|
||||||
|
let output = '\x1b[2J'
|
||||||
|
|
||||||
|
if (viewport.headerRows) {
|
||||||
|
const headerText = `EDIT - ${filePath}${dirty ? ' *' : ''}`
|
||||||
|
output += `\x1b[1;1H${formatLine(headerText, viewport.cols)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const contentStartRow = viewport.headerRows + 1
|
||||||
|
for (let i = 0; i < viewport.contentHeight; i++) {
|
||||||
|
const lineIndex = scrollLine + i
|
||||||
|
const lineText = lines[lineIndex] ?? ''
|
||||||
|
const visible = lineText.slice(scrollCol, scrollCol + viewport.cols)
|
||||||
|
output += `\x1b[${contentStartRow + i};1H${formatLine(visible, viewport.cols)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
if (viewport.footerRows) {
|
||||||
|
const positionText = `Ln ${cursorLine + 1}, Col ${cursorCol + 1}`
|
||||||
|
const shortcuts = 'F2 Save F3 Open F10 Exit'
|
||||||
|
const footerText = promptState.active
|
||||||
|
? `${promptState.label}${promptState.value}`
|
||||||
|
: `${shortcuts} ${positionText}${statusMessage ? ` ${statusMessage}` : ''}`
|
||||||
|
output += `\x1b[${footerRow};1H${formatLine(footerText, viewport.cols)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
if (promptState.active) {
|
||||||
|
const cursorRow = footerRow
|
||||||
|
const cursorColPos = Math.min(viewport.cols, promptState.label.length + promptState.value.length + 1)
|
||||||
|
output += `\x1b[${cursorRow};${cursorColPos}H`
|
||||||
|
} else {
|
||||||
|
const cursorRow = contentStartRow + (cursorLine - scrollLine)
|
||||||
|
const cursorColPos = 1 + (cursorCol - scrollCol)
|
||||||
|
output += `\x1b[${cursorRow};${cursorColPos}H`
|
||||||
|
}
|
||||||
|
|
||||||
|
stdout.emit(output)
|
||||||
|
}
|
||||||
|
|
||||||
|
render()
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
const key = await stdin.wait()
|
||||||
|
|
||||||
|
if (promptState.active) {
|
||||||
|
if (key === 'Escape') {
|
||||||
|
promptState = { active: false }
|
||||||
|
setStatus('Canceled')
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key === 'Enter') {
|
||||||
|
const { handler } = promptState
|
||||||
|
const value = promptState.value.trim()
|
||||||
|
promptState = { active: false }
|
||||||
|
|
||||||
|
if (value.length > 0) {
|
||||||
|
await handler(value)
|
||||||
|
} else {
|
||||||
|
setStatus('Canceled')
|
||||||
|
}
|
||||||
|
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key === 'Backspace') {
|
||||||
|
const nextValue: string = promptState.value.slice(0, -1)
|
||||||
|
promptState = {
|
||||||
|
active: true,
|
||||||
|
label: promptState.label,
|
||||||
|
value: nextValue,
|
||||||
|
handler: promptState.handler,
|
||||||
|
}
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key.length === 1) {
|
||||||
|
const nextValue: string = promptState.value + key
|
||||||
|
promptState = {
|
||||||
|
active: true,
|
||||||
|
label: promptState.label,
|
||||||
|
value: nextValue,
|
||||||
|
handler: promptState.handler,
|
||||||
|
}
|
||||||
|
render()
|
||||||
|
}
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (exitArmed && key !== 'F10')
|
||||||
|
exitArmed = false
|
||||||
|
|
||||||
|
switch (key) {
|
||||||
|
case 'F2':
|
||||||
|
await saveFile()
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'F3':
|
||||||
|
startPrompt('Open: ', openFile)
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'F10':
|
||||||
|
if (dirty && !exitArmed) {
|
||||||
|
exitArmed = true
|
||||||
|
setStatus('Unsaved changes. Press F10 again to exit.')
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
stdout.emit('\x1b[2J\x1b[H')
|
||||||
|
return 0
|
||||||
|
case 'ArrowLeft':
|
||||||
|
if (cursorCol > 0) {
|
||||||
|
cursorCol -= 1
|
||||||
|
} else if (cursorLine > 0) {
|
||||||
|
cursorLine -= 1
|
||||||
|
cursorCol = lines[cursorLine].length
|
||||||
|
}
|
||||||
|
preferredCol = cursorCol
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'ArrowRight': {
|
||||||
|
const lineLength = lines[cursorLine].length
|
||||||
|
if (cursorCol < lineLength) {
|
||||||
|
cursorCol += 1
|
||||||
|
} else if (cursorLine < lines.length - 1) {
|
||||||
|
cursorLine += 1
|
||||||
|
cursorCol = 0
|
||||||
|
}
|
||||||
|
preferredCol = cursorCol
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case 'ArrowUp':
|
||||||
|
cursorLine = Math.max(0, cursorLine - 1)
|
||||||
|
cursorCol = Math.min(preferredCol, lines[cursorLine].length)
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'ArrowDown':
|
||||||
|
cursorLine = Math.min(lines.length - 1, cursorLine + 1)
|
||||||
|
cursorCol = Math.min(preferredCol, lines[cursorLine].length)
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'Home':
|
||||||
|
cursorCol = 0
|
||||||
|
preferredCol = cursorCol
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'End':
|
||||||
|
cursorCol = lines[cursorLine].length
|
||||||
|
preferredCol = cursorCol
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'PageUp': {
|
||||||
|
const viewport = getViewport()
|
||||||
|
cursorLine = Math.max(0, cursorLine - viewport.contentHeight)
|
||||||
|
cursorCol = Math.min(preferredCol, lines[cursorLine].length)
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case 'PageDown': {
|
||||||
|
const viewport = getViewport()
|
||||||
|
cursorLine = Math.min(lines.length - 1, cursorLine + viewport.contentHeight)
|
||||||
|
cursorCol = Math.min(preferredCol, lines[cursorLine].length)
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case 'Backspace':
|
||||||
|
if (cursorCol > 0) {
|
||||||
|
const line = lines[cursorLine]
|
||||||
|
lines[cursorLine] = line.slice(0, cursorCol - 1) + line.slice(cursorCol)
|
||||||
|
cursorCol -= 1
|
||||||
|
preferredCol = cursorCol
|
||||||
|
dirty = true
|
||||||
|
} else if (cursorLine > 0) {
|
||||||
|
const current = lines[cursorLine]
|
||||||
|
cursorLine -= 1
|
||||||
|
cursorCol = lines[cursorLine].length
|
||||||
|
lines[cursorLine] += current
|
||||||
|
lines.splice(cursorLine + 1, 1)
|
||||||
|
preferredCol = cursorCol
|
||||||
|
dirty = true
|
||||||
|
}
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
case 'Delete': {
|
||||||
|
const line = lines[cursorLine]
|
||||||
|
if (cursorCol < line.length) {
|
||||||
|
lines[cursorLine] = line.slice(0, cursorCol) + line.slice(cursorCol + 1)
|
||||||
|
dirty = true
|
||||||
|
} else if (cursorLine < lines.length - 1) {
|
||||||
|
lines[cursorLine] = line + lines[cursorLine + 1]
|
||||||
|
lines.splice(cursorLine + 1, 1)
|
||||||
|
dirty = true
|
||||||
|
}
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case 'Enter': {
|
||||||
|
const line = lines[cursorLine]
|
||||||
|
const before = line.slice(0, cursorCol)
|
||||||
|
const after = line.slice(cursorCol)
|
||||||
|
lines[cursorLine] = before
|
||||||
|
lines.splice(cursorLine + 1, 0, after)
|
||||||
|
cursorLine += 1
|
||||||
|
cursorCol = 0
|
||||||
|
preferredCol = 0
|
||||||
|
dirty = true
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case 'Tab':
|
||||||
|
lines[cursorLine] = this.insertText(lines[cursorLine], cursorCol, ' ')
|
||||||
|
cursorCol += 4
|
||||||
|
preferredCol = cursorCol
|
||||||
|
dirty = true
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key.length === 1) {
|
||||||
|
lines[cursorLine] = this.insertText(lines[cursorLine], cursorCol, key)
|
||||||
|
cursorCol += 1
|
||||||
|
preferredCol = cursorCol
|
||||||
|
dirty = true
|
||||||
|
render()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
clampCursor()
|
||||||
|
render()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private normalizeLines(content: string | null): string[] {
|
||||||
|
const normalized = (content ?? '').replace(/\r\n/g, '\n').replace(/\r/g, '\n')
|
||||||
|
const lines = normalized.split('\n')
|
||||||
|
return lines.length === 0 ? [''] : lines
|
||||||
|
}
|
||||||
|
|
||||||
|
private insertText(line: string, index: number, text: string): string {
|
||||||
|
return line.slice(0, index) + text + line.slice(index)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,17 +3,33 @@ import type { SimpleStream } from '../utils/SimpleStream'
|
|||||||
import { Program } from './Program'
|
import { Program } from './Program'
|
||||||
|
|
||||||
export class Eval extends Program {
|
export class Eval extends Program {
|
||||||
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, _workdir: Item, args: string[]): Promise<number> {
|
async Exec(stdin: SimpleStream<string>, stdout: SimpleStream<string>, _workdir: Item, args: string[]): Promise<number> {
|
||||||
const javascript = args.slice(1).join(' ')
|
const inlineArgs = args.slice(1)
|
||||||
|
const source = inlineArgs.length > 0
|
||||||
|
? inlineArgs.join(' ')
|
||||||
|
: await stdin.wait()
|
||||||
|
|
||||||
|
if (source.trim().length === 0) {
|
||||||
|
stdout.emit('eval: error: missing javascript input\n')
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// todo: pass workdir to the program
|
this.RunJs(source, stdout)
|
||||||
eval(javascript)
|
} catch {
|
||||||
} catch (e) {
|
|
||||||
stdout.emit(`${String(e)}\n`)
|
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private RunJs(javascript: string, stdout: SimpleStream<string>) {
|
||||||
|
try {
|
||||||
|
// todo: pass workdir to the program
|
||||||
|
eval(javascript)
|
||||||
|
} catch (e) {
|
||||||
|
stdout.emit(`${String(e)}\n`)
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { GetCurrentTerminal, WEBSHELL_VERSION, VERSION_COMMENT } from '../app'
|
import { GetCurrentTerminal, WEBSHELL_VERSION, INFO_COMMENT } from '../app'
|
||||||
import type { Item } from '../fs/Item'
|
import type { Item } from '../fs/Item'
|
||||||
import { Terminal } from '../terminal/Terminal'
|
import { Terminal } from '../terminal/Terminal'
|
||||||
import type { SimpleStream } from '../utils/SimpleStream'
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
@@ -6,13 +6,24 @@ import { Program } from './Program'
|
|||||||
|
|
||||||
export class Info extends Program {
|
export class Info extends Program {
|
||||||
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, __: Item, ___: string[]): Promise<number> {
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, __: Item, ___: string[]): Promise<number> {
|
||||||
stdout.emit(`Webshell v${WEBSHELL_VERSION}\n`)
|
stdout.emit('\n')
|
||||||
stdout.emit(`Terminal v${Terminal.Version}\n`)
|
stdout.emit(" --> binekrasik's Webshell / ->\n\n")
|
||||||
stdout.emit(`Running ${GetCurrentTerminal().GetShell()?.Name} v${GetCurrentTerminal().GetShell()?.Version}\n`)
|
|
||||||
|
|
||||||
// print a comment for the current release if any
|
stdout.emit(" Webshell and its components are licensed under the Apache 2.0 license unless stated otherwise.\n")
|
||||||
if (VERSION_COMMENT)
|
stdout.emit(" Source available at https://git.martinpetr.dev/binekrasik/webshell.\n\n\n")
|
||||||
stdout.emit(`-> ${VERSION_COMMENT}\n`)
|
|
||||||
|
stdout.emit(" --> Versions / ->\n\n")
|
||||||
|
stdout.emit(` Webshell ${WEBSHELL_VERSION}\n`)
|
||||||
|
stdout.emit(` Terminal ${Terminal.Version}\n`)
|
||||||
|
stdout.emit(` Shell '${GetCurrentTerminal().GetShell()?.Name}' version ${GetCurrentTerminal().GetShell()?.Version}\n\n\n`)
|
||||||
|
|
||||||
|
// print a comment for the current release (if any)
|
||||||
|
if (INFO_COMMENT) {
|
||||||
|
stdout.emit(" --> Version comment / ->\n\n")
|
||||||
|
stdout.emit(` ${INFO_COMMENT}\n\n\n`)
|
||||||
|
}
|
||||||
|
|
||||||
|
stdout.emit(" - Copyright (C) 2026 binekrasik -\n\n")
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Item } from '../fs/Item'
|
import { Item } from '../fs/Item'
|
||||||
import type { Shell } from '../shell/Shell'
|
import type { Shell } from '../shell/Shell'
|
||||||
import type { SimpleStream } from '../utils/SimpleStream'
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
import { Program } from './Program'
|
import { Program } from './Program'
|
||||||
@@ -11,19 +11,59 @@ export class Loadprg extends Program {
|
|||||||
this.shell = shell
|
this.shell = shell
|
||||||
}
|
}
|
||||||
|
|
||||||
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, __: Item, args: string[]): Promise<number> {
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
const javascript = args.slice(2).join(' ')
|
const path = Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`)
|
||||||
|
let file: Item
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const program = eval(javascript)
|
file = await Item.open(path)
|
||||||
|
} catch (err) {
|
||||||
this.shell.LoadProgram(new program(), args[1])
|
stdout.emit(`loadprg: error: item ${path} is a directory\n`)
|
||||||
} catch (e) {
|
return 2
|
||||||
stdout.emit(`${String(e)}\n`)
|
|
||||||
stdout.emit(`${String((e as Error).stack)}\n`)
|
|
||||||
return 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(await file.Exists())) {
|
||||||
|
stdout.emit(`loadprg: error: item ${file.GetPath()} doesn't exist.\n`)
|
||||||
|
return 3
|
||||||
|
}
|
||||||
|
|
||||||
|
let programName: string | null = null
|
||||||
|
|
||||||
|
// check if we have a name argument
|
||||||
|
// use the file name if the program name wasn't explicitly specified
|
||||||
|
const nameArgIndex = args.findIndex(value => value === "--name")
|
||||||
|
if (nameArgIndex !== -1 && args[nameArgIndex + 1]) {
|
||||||
|
programName = args[nameArgIndex + 1]
|
||||||
|
} else programName = file.GetName()
|
||||||
|
|
||||||
|
// read the file
|
||||||
|
const javascript = file.GetData()
|
||||||
|
if (!javascript) {
|
||||||
|
stdout.emit(`loadprg: error: could not read the program data\n`)
|
||||||
|
return 3
|
||||||
|
}
|
||||||
|
|
||||||
|
// load the program
|
||||||
|
type EntrypointFunction = InstanceType<typeof Program>['Exec']
|
||||||
|
let programEntrypoint: EntrypointFunction
|
||||||
|
|
||||||
|
try {
|
||||||
|
// due to some inconveniences and limitations,
|
||||||
|
// we only allow for loading the program main method
|
||||||
|
// instead of an entire program class.
|
||||||
|
programEntrypoint = new Function("stdin", "stdout", "workdir", "args", javascript) as EntrypointFunction
|
||||||
|
} catch (err) {
|
||||||
|
stdout.emit(`loadprg: error: could not load the program: ${err}\n`)
|
||||||
|
stdout.emit(`-> Stacktrace: ${(err as Error).stack}\n`)
|
||||||
|
return 4
|
||||||
|
}
|
||||||
|
|
||||||
|
// create a wrapper class for the program
|
||||||
|
const wrapper: Program = new (class ProgramWrapper extends Program { Exec = programEntrypoint })
|
||||||
|
|
||||||
|
this.shell.LoadProgram(wrapper, programName)
|
||||||
|
stdout.emit(`-> Loaded program from ${file.GetPath()} as ${programName}\n`)
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ export class Ls extends Program {
|
|||||||
|
|
||||||
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
// open the target directory, default to workdir
|
// open the target directory, default to workdir
|
||||||
|
|
||||||
const item = args[1]
|
const item = args[1]
|
||||||
? await Item.openDir(Item.NormalizePath(
|
? await Item.openDir(Item.NormalizePath(
|
||||||
args[1].startsWith('/')
|
args[1].startsWith('/')
|
||||||
@@ -32,7 +31,7 @@ export class Ls extends Program {
|
|||||||
stdout.emit(` [ drwx name ]\n`)
|
stdout.emit(` [ drwx name ]\n`)
|
||||||
const items = await item.List()
|
const items = await item.List()
|
||||||
items.forEach(entry => {
|
items.forEach(entry => {
|
||||||
stdout.emit(` | ${`${(entry.IsDirectory() ? 'd' : '-')}${(entry.IsReadable() ? 'r' : '-')}${(entry.IsWritable() ? 'w' : '-')}${(entry.IsExecutable() ? 'x' : '-')}`.padEnd(8, ' ')} ${entry.GetName()}\n`)
|
stdout.emit(` | ${`${(entry.IsDirectory() ? 'd' : '-')}${(entry.IsReadable() ? 'r' : '-')}${(entry.IsWritable() ? 'w' : '-')}${(entry.IsExecutable() ? 'x' : '-')}`.padEnd(8, ' ')} ${entry.IsDirectory() ? '\x1B[0;30m\x1B[47m' : ''}${entry.GetName()}\x1B[0m\n`)
|
||||||
})
|
})
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
61
src/program/Mv.ts
Normal file
61
src/program/Mv.ts
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
import { Item } from '../fs/Item'
|
||||||
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
|
import { Program } from './Program'
|
||||||
|
|
||||||
|
export class Mv extends Program {
|
||||||
|
constructor() {
|
||||||
|
super()
|
||||||
|
}
|
||||||
|
|
||||||
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
|
if (args.length < 3) {
|
||||||
|
stdout.emit("mv: error: missing the first and/or second path arguments\n")
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
let item1: Item
|
||||||
|
let item2: Item
|
||||||
|
|
||||||
|
let destIsDir = false
|
||||||
|
|
||||||
|
// figure out if the items are files or directories
|
||||||
|
try {
|
||||||
|
item1 = await Item.openDir(Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`))
|
||||||
|
} catch {
|
||||||
|
item1 = await Item.open(Item.NormalizePath(args[1].startsWith('/') ? args[1] : `${workdir.GetPath()}/${args[1]}`))
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
item2 = await Item.open(Item.NormalizePath(args[2].startsWith('/') ? args[2] : `${workdir.GetPath()}/${args[2]}`))
|
||||||
|
} catch {
|
||||||
|
item2 = await Item.openDir(Item.NormalizePath(args[2].startsWith('/') ? args[2] : `${workdir.GetPath()}/${args[2]}`))
|
||||||
|
destIsDir = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!await item1.Exists()) {
|
||||||
|
stdout.emit(`mv: error: source item ${item1.GetPath()} does not exist.\n`)
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await item2.Exists() && !destIsDir) {
|
||||||
|
stdout.emit(`mv: error: destination item ${item2.GetPath()} already exists.\n`)
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
|
||||||
|
// either move the file into a destination directory or move it to a new path
|
||||||
|
if (destIsDir) {
|
||||||
|
const destChild = await Item.open(Item.NormalizePath(`${item2.GetPath()}/${item1.GetName()}`))
|
||||||
|
await item1.Copy(destChild)
|
||||||
|
stdout.emit(`-> moved ${item1.GetPath()} -> ${destChild.GetPath()}\n`)
|
||||||
|
} else {
|
||||||
|
await item2.Create()
|
||||||
|
await item1.Copy(item2)
|
||||||
|
|
||||||
|
stdout.emit(`-> moved ${item1.GetPath()} -> ${item2.GetPath()}\n`)
|
||||||
|
}
|
||||||
|
|
||||||
|
await item1.Delete()
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
}
|
||||||
45
src/program/Tree.ts
Normal file
45
src/program/Tree.ts
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
import { Item } from '../fs/Item'
|
||||||
|
import type { SimpleStream } from '../utils/SimpleStream'
|
||||||
|
import { Program } from './Program'
|
||||||
|
|
||||||
|
export class Tree extends Program {
|
||||||
|
constructor() {
|
||||||
|
super()
|
||||||
|
}
|
||||||
|
|
||||||
|
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Item, args: string[]): Promise<number> {
|
||||||
|
// open the target directory, default to workdir
|
||||||
|
const item = args[1]
|
||||||
|
? await Item.openDir(Item.NormalizePath(
|
||||||
|
args[1].startsWith('/')
|
||||||
|
? args[1]
|
||||||
|
: `${workdir.GetPath()}/${args[1]}`
|
||||||
|
))
|
||||||
|
: workdir
|
||||||
|
|
||||||
|
if (args[1] && !item.IsDirectory()) {
|
||||||
|
stdout.emit("tree: error: the provided path is not a directory\n")
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(await item.Exists())) {
|
||||||
|
stdout.emit(`tree: error: path ${item.GetPath()} doesn't exist\n`)
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
|
||||||
|
stdout.emit(`-> Tree of item: '${item.GetPath()}'\n`)
|
||||||
|
await this.printTree(stdout, item, 1)
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
private async printTree(stdout: SimpleStream<string>, item: Item, depth: number): Promise<void> {
|
||||||
|
const items = await item.List()
|
||||||
|
for (const item of items) {
|
||||||
|
stdout.emit(` ${' |'.repeat(depth)}--+ ${item.IsDirectory() ? '\x1B[0;30m\x1B[47m' : ''}${item.GetName()}\x1B[0m\n`)
|
||||||
|
|
||||||
|
if (item.IsDirectory())
|
||||||
|
await this.printTree(stdout, item, depth + 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,11 +6,11 @@ export class Environment {
|
|||||||
private variables: Record<string, string> = {}
|
private variables: Record<string, string> = {}
|
||||||
private aliases: Record<string, string> = {}
|
private aliases: Record<string, string> = {}
|
||||||
|
|
||||||
SetVariable(name: string, value: string | null): void {
|
SetVariable(name: string, value: any | null): void {
|
||||||
if (value === null) {
|
if (value === null) {
|
||||||
// remove the variable if value is null
|
// remove the variable if value is null
|
||||||
delete this.variables[name]
|
delete this.variables[name]
|
||||||
} else this.variables[name] = value
|
} else this.variables[name] = String(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
GetVariable(name: string): string | null {
|
GetVariable(name: string): string | null {
|
||||||
|
|||||||
@@ -140,6 +140,14 @@ export class InputManager {
|
|||||||
HandleKeyInput(key: string, isCharacter: boolean) {
|
HandleKeyInput(key: string, isCharacter: boolean) {
|
||||||
// handle special input
|
// handle special input
|
||||||
switch (key.toUpperCase()) {
|
switch (key.toUpperCase()) {
|
||||||
|
case 'C':
|
||||||
|
if (InputManager.HasModifierCombo(this.modifierKeys, ['ctrl'])) {
|
||||||
|
document.execCommand('copy')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
break
|
||||||
|
|
||||||
case 'R':
|
case 'R':
|
||||||
if (InputManager.HasModifierCombo(this.modifierKeys, ['ctrl'])) {
|
if (InputManager.HasModifierCombo(this.modifierKeys, ['ctrl'])) {
|
||||||
location.reload()
|
location.reload()
|
||||||
@@ -149,8 +157,12 @@ export class InputManager {
|
|||||||
break
|
break
|
||||||
|
|
||||||
case 'F5':
|
case 'F5':
|
||||||
location.reload()
|
if (InputManager.HasModifierCombo(this.modifierKeys, ['alt'])) {
|
||||||
return
|
location.reload()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
// redirect input to a running program instead
|
// redirect input to a running program instead
|
||||||
|
|||||||
13
src/shell/wush/InputParser.ts
Normal file
13
src/shell/wush/InputParser.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Wush input parser
|
||||||
|
* Provides necessary parsing functions
|
||||||
|
*/
|
||||||
|
export class InputParser {
|
||||||
|
// static Tokenize(input: string) {
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
// static Parse(tokens: string[]) {
|
||||||
|
|
||||||
|
// }
|
||||||
|
}
|
||||||
@@ -27,9 +27,13 @@ import { Printf } from '../../program/Printf'
|
|||||||
import { Pwd } from '../../program/Pwd'
|
import { Pwd } from '../../program/Pwd'
|
||||||
import { Environment } from './Environment'
|
import { Environment } from './Environment'
|
||||||
import { InputManager } from './InputManager'
|
import { InputManager } from './InputManager'
|
||||||
|
import { Edit } from '../../program/Edit'
|
||||||
|
import { Mv } from '../../program/Mv'
|
||||||
|
import { Tree } from '../../program/Tree'
|
||||||
|
import { Cp } from '../../program/Cp'
|
||||||
|
|
||||||
export class Wush extends Shell {
|
export class Wush extends Shell {
|
||||||
public readonly Version = "0.3.1"
|
public readonly Version = "0.3.2"
|
||||||
public readonly Name = "wush"
|
public readonly Name = "wush"
|
||||||
|
|
||||||
// buffer
|
// buffer
|
||||||
@@ -38,7 +42,6 @@ export class Wush extends Shell {
|
|||||||
_promptStart: CursorPosition = { col: 0, row: 0 }
|
_promptStart: CursorPosition = { col: 0, row: 0 }
|
||||||
|
|
||||||
private inputManager: InputManager
|
private inputManager: InputManager
|
||||||
// @ts-ignore unused for now
|
|
||||||
private environment: Environment
|
private environment: Environment
|
||||||
|
|
||||||
// exec stuff
|
// exec stuff
|
||||||
@@ -93,11 +96,23 @@ export class Wush extends Shell {
|
|||||||
this.programs['pwd'] = new Pwd()
|
this.programs['pwd'] = new Pwd()
|
||||||
this.programs['cd'] = new Cd(this)
|
this.programs['cd'] = new Cd(this)
|
||||||
this.programs['printf'] = new Printf()
|
this.programs['printf'] = new Printf()
|
||||||
|
this.programs['edit'] = new Edit()
|
||||||
|
this.programs['mv'] = new Mv()
|
||||||
|
this.programs['cp'] = new Cp()
|
||||||
|
this.programs['tree'] = new Tree()
|
||||||
|
|
||||||
|
// reset exit code
|
||||||
|
this.SetExitCode(0)
|
||||||
|
|
||||||
// initial prompt
|
// initial prompt
|
||||||
this.Prompt()
|
this.Prompt()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SetExitCode(code: number): void {
|
||||||
|
this.execExitCode = code
|
||||||
|
this.environment.SetVariable("status", code)
|
||||||
|
}
|
||||||
|
|
||||||
HasRunningProgram(): boolean {
|
HasRunningProgram(): boolean {
|
||||||
return this.execExitCode === -1
|
return this.execExitCode === -1
|
||||||
}
|
}
|
||||||
@@ -122,7 +137,7 @@ export class Wush extends Shell {
|
|||||||
return new Promise<void>(resolve => {
|
return new Promise<void>(resolve => {
|
||||||
this.programs[name].Exec(this.stdin, this.stdout, this.workingDirectory, args)
|
this.programs[name].Exec(this.stdin, this.stdout, this.workingDirectory, args)
|
||||||
.then(code => {
|
.then(code => {
|
||||||
this.execExitCode = code != -1 ? code : -2
|
this.SetExitCode(code != -1 ? code : -2)
|
||||||
resolve()
|
resolve()
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
@@ -134,7 +149,7 @@ export class Wush extends Shell {
|
|||||||
// check if the exec actually exited with an exit code
|
// check if the exec actually exited with an exit code
|
||||||
// and if not, set it to -2 to indicate that it didn't exit with a valid code
|
// and if not, set it to -2 to indicate that it didn't exit with a valid code
|
||||||
if (this.execExitCode === -1)
|
if (this.execExitCode === -1)
|
||||||
this.execExitCode = -2
|
this.SetExitCode(-2)
|
||||||
|
|
||||||
// this.terminal.Write(`The program exited with exit code ${this.execExitCode}.`)
|
// this.terminal.Write(`The program exited with exit code ${this.execExitCode}.`)
|
||||||
resolve()
|
resolve()
|
||||||
@@ -234,19 +249,33 @@ export class Wush extends Shell {
|
|||||||
this._bufferPos = 0
|
this._bufferPos = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// takes the prompt buffer, parses it and executes the contents
|
/**
|
||||||
|
* Takes the prompt buffer, parses it and executes the contents
|
||||||
|
*/
|
||||||
async ExecuteLineBuffer(data?: string) {
|
async ExecuteLineBuffer(data?: string) {
|
||||||
type OperatorToken = '&&' | '||' | '|' | ';'
|
type OperatorToken = '&&' | '||' | '|' | ';' | '>' | '>>' | '<'
|
||||||
type Token = { type: 'word'; value: string } | { type: 'operator'; value: OperatorToken }
|
type Token = { type: 'word'; value: string } | { type: 'operator'; value: OperatorToken }
|
||||||
type ParsedCommand = {
|
type ParsedCommand = {
|
||||||
args: string[]
|
args: string[]
|
||||||
stdin: null | SimpleStream<string>
|
stdin: null | SimpleStream<string>
|
||||||
stdout: null | SimpleStream<string>
|
stdout: null | SimpleStream<string>
|
||||||
|
stdinPath: string | null
|
||||||
|
stdoutPath: string | null
|
||||||
|
stdoutAppend: boolean
|
||||||
}
|
}
|
||||||
type ParsedPipeline = { commands: ParsedCommand[] }
|
type ParsedPipeline = { commands: ParsedCommand[] }
|
||||||
type ParsedListItem = { pipeline: ParsedPipeline; operator: '&&' | '||' | ';' | null }
|
type ParsedListItem = { pipeline: ParsedPipeline; operator: '&&' | '||' | ';' | null }
|
||||||
|
|
||||||
// splits the buffer into processable pieces (tokens)
|
// environment variable helpers
|
||||||
|
/**
|
||||||
|
* @returns value of the variable, empty string otherwise
|
||||||
|
*/
|
||||||
|
const resolveVariable = (name: string): string => this.environment.GetVariable(name) ?? ''
|
||||||
|
const isValidVarNameChar = (char: string) => /[A-Za-z0-9_]/.test(char)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* splits the buffer into smaller processable pieces (tokens)
|
||||||
|
*/
|
||||||
const tokenize = (text: string): { tokens: Token[]; error: string | null } => {
|
const tokenize = (text: string): { tokens: Token[]; error: string | null } => {
|
||||||
const tokens: Token[] = []
|
const tokens: Token[] = []
|
||||||
|
|
||||||
@@ -258,7 +287,7 @@ export class Wush extends Shell {
|
|||||||
let escapeNext = false
|
let escapeNext = false
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* adds a new word to the token buffer
|
* adds a new plain string to the token buffer
|
||||||
*/
|
*/
|
||||||
const pushWord = () => {
|
const pushWord = () => {
|
||||||
if (!wordStarted)
|
if (!wordStarted)
|
||||||
@@ -271,6 +300,69 @@ export class Wush extends Shell {
|
|||||||
wordStarted = false
|
wordStarted = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// reads environment variable tokens
|
||||||
|
const readVariable = (index: number): {
|
||||||
|
value: string
|
||||||
|
nextIndex: number
|
||||||
|
error: string | null
|
||||||
|
expanded: boolean
|
||||||
|
} => {
|
||||||
|
if (index + 1 >= text.length)
|
||||||
|
return { value: '$', nextIndex: index, error: null, expanded: false }
|
||||||
|
|
||||||
|
const next = text[index + 1]
|
||||||
|
if (next === '{') {
|
||||||
|
let end = index + 2
|
||||||
|
while (end < text.length && text[end] !== '}')
|
||||||
|
end++
|
||||||
|
|
||||||
|
if (end >= text.length)
|
||||||
|
return { value: '', nextIndex: text.length - 1, error: 'unterminated variable expansion', expanded: true }
|
||||||
|
|
||||||
|
const name = text.slice(index + 2, end)
|
||||||
|
if (name.length === 0)
|
||||||
|
return { value: '', nextIndex: end, error: 'empty variable name', expanded: true }
|
||||||
|
|
||||||
|
return { value: resolveVariable(name), nextIndex: end, error: null, expanded: true }
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isValidVarNameChar(next)) {
|
||||||
|
let end = index + 1
|
||||||
|
while (end + 1 < text.length && isValidVarNameChar(text[end + 1]))
|
||||||
|
end++
|
||||||
|
|
||||||
|
const name = text.slice(index + 1, end + 1)
|
||||||
|
return { value: resolveVariable(name), nextIndex: end, error: null, expanded: true }
|
||||||
|
}
|
||||||
|
|
||||||
|
return { value: '$', nextIndex: index, error: null, expanded: false }
|
||||||
|
}
|
||||||
|
|
||||||
|
const appendExpandedValue = (value: string, split: boolean, preserveEmpty: boolean) => {
|
||||||
|
if (value.length === 0) {
|
||||||
|
if (preserveEmpty)
|
||||||
|
wordStarted = true
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!split) {
|
||||||
|
current += value
|
||||||
|
wordStarted = true
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const char of value) {
|
||||||
|
if (char === ' ' || char === '\t') {
|
||||||
|
pushWord()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
current += char
|
||||||
|
wordStarted = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// iterates over the provided text buffer
|
// iterates over the provided text buffer
|
||||||
for (let i = 0; i < text.length; i++) {
|
for (let i = 0; i < text.length; i++) {
|
||||||
const char = text[i]
|
const char = text[i]
|
||||||
@@ -307,6 +399,18 @@ export class Wush extends Shell {
|
|||||||
current += text[i + 1]
|
current += text[i + 1]
|
||||||
i++
|
i++
|
||||||
wordStarted = true
|
wordStarted = true
|
||||||
|
} else if (char === '$') {
|
||||||
|
const { value, nextIndex, error, expanded } = readVariable(i)
|
||||||
|
if (error)
|
||||||
|
return { tokens: [], error }
|
||||||
|
|
||||||
|
if (expanded) {
|
||||||
|
appendExpandedValue(value, false, true)
|
||||||
|
i = nextIndex
|
||||||
|
} else {
|
||||||
|
current += char
|
||||||
|
wordStarted = true
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
current += char
|
current += char
|
||||||
wordStarted = true
|
wordStarted = true
|
||||||
@@ -338,6 +442,22 @@ export class Wush extends Shell {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (char === '$') {
|
||||||
|
const { value, nextIndex, error, expanded } = readVariable(i)
|
||||||
|
if (error)
|
||||||
|
return { tokens: [], error }
|
||||||
|
|
||||||
|
if (expanded) {
|
||||||
|
appendExpandedValue(value, true, false)
|
||||||
|
i = nextIndex
|
||||||
|
} else {
|
||||||
|
current += char
|
||||||
|
wordStarted = true
|
||||||
|
}
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if (char === ' ' || char === '\t') {
|
if (char === ' ' || char === '\t') {
|
||||||
pushWord()
|
pushWord()
|
||||||
continue
|
continue
|
||||||
@@ -358,6 +478,23 @@ export class Wush extends Shell {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (char === '>') {
|
||||||
|
pushWord()
|
||||||
|
if (text[i + 1] === '>') {
|
||||||
|
tokens.push({ type: 'operator', value: '>>' })
|
||||||
|
i++
|
||||||
|
} else {
|
||||||
|
tokens.push({ type: 'operator', value: '>' })
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (char === '<') {
|
||||||
|
pushWord()
|
||||||
|
tokens.push({ type: 'operator', value: '<' })
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if (char === '|') {
|
if (char === '|') {
|
||||||
pushWord()
|
pushWord()
|
||||||
if (text[i + 1] === '|') {
|
if (text[i + 1] === '|') {
|
||||||
@@ -402,6 +539,10 @@ export class Wush extends Shell {
|
|||||||
let currentArgs: string[] = []
|
let currentArgs: string[] = []
|
||||||
let currentPipeline: ParsedCommand[] = []
|
let currentPipeline: ParsedCommand[] = []
|
||||||
let expectCommand = false
|
let expectCommand = false
|
||||||
|
let expectRedirect: 'stdin' | 'stdout' | 'append' | null = null
|
||||||
|
let currentStdinPath: string | null = null
|
||||||
|
let currentStdoutPath: string | null = null
|
||||||
|
let currentStdoutAppend = false
|
||||||
|
|
||||||
const pushCommand = () => {
|
const pushCommand = () => {
|
||||||
if (currentArgs.length === 0)
|
if (currentArgs.length === 0)
|
||||||
@@ -411,8 +552,14 @@ export class Wush extends Shell {
|
|||||||
args: currentArgs,
|
args: currentArgs,
|
||||||
stdin: null,
|
stdin: null,
|
||||||
stdout: null,
|
stdout: null,
|
||||||
|
stdinPath: currentStdinPath,
|
||||||
|
stdoutPath: currentStdoutPath,
|
||||||
|
stdoutAppend: currentStdoutAppend,
|
||||||
})
|
})
|
||||||
currentArgs = []
|
currentArgs = []
|
||||||
|
currentStdinPath = null
|
||||||
|
currentStdoutPath = null
|
||||||
|
currentStdoutAppend = false
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -427,12 +574,43 @@ export class Wush extends Shell {
|
|||||||
|
|
||||||
for (const token of tokens) {
|
for (const token of tokens) {
|
||||||
if (token.type === 'word') {
|
if (token.type === 'word') {
|
||||||
|
if (expectRedirect) {
|
||||||
|
if (expectRedirect === 'stdin') {
|
||||||
|
currentStdinPath = token.value
|
||||||
|
} else {
|
||||||
|
currentStdoutPath = token.value
|
||||||
|
currentStdoutAppend = expectRedirect === 'append'
|
||||||
|
}
|
||||||
|
|
||||||
|
expectRedirect = null
|
||||||
|
expectCommand = false
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
currentArgs.push(token.value)
|
currentArgs.push(token.value)
|
||||||
expectCommand = false
|
expectCommand = false
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (expectRedirect)
|
||||||
|
return { list: [], error: 'expected redirection target' }
|
||||||
|
|
||||||
|
if (token.value === '>' || token.value === '>>' || token.value === '<') {
|
||||||
|
if (currentArgs.length === 0)
|
||||||
|
return { list: [], error: `unexpected "${token.value}" operator` }
|
||||||
|
|
||||||
|
expectRedirect = token.value === '<'
|
||||||
|
? 'stdin'
|
||||||
|
: token.value === '>>'
|
||||||
|
? 'append'
|
||||||
|
: 'stdout'
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if (token.value === '|') {
|
if (token.value === '|') {
|
||||||
|
if (currentStdoutPath)
|
||||||
|
return { list: [], error: 'unexpected "|" operator after redirection' }
|
||||||
|
|
||||||
if (!pushCommand())
|
if (!pushCommand())
|
||||||
return { list: [], error: 'unexpected "|" operator' }
|
return { list: [], error: 'unexpected "|" operator' }
|
||||||
|
|
||||||
@@ -449,6 +627,9 @@ export class Wush extends Shell {
|
|||||||
if (expectCommand)
|
if (expectCommand)
|
||||||
return { list: [], error: 'unexpected end of input' }
|
return { list: [], error: 'unexpected end of input' }
|
||||||
|
|
||||||
|
if (expectRedirect)
|
||||||
|
return { list: [], error: 'expected redirection target' }
|
||||||
|
|
||||||
if (currentArgs.length > 0)
|
if (currentArgs.length > 0)
|
||||||
pushCommand()
|
pushCommand()
|
||||||
|
|
||||||
@@ -494,32 +675,170 @@ export class Wush extends Shell {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (list.some(item => item.pipeline.commands.length > 1)) {
|
const resolvePath = (path: string) => Item.NormalizePath(
|
||||||
this.terminal.Write(`wush: error: pipes are not supported yet`)
|
path.startsWith('/') ? path : `${this.workingDirectory.GetPath()}/${path}`
|
||||||
this.terminal.MoveCursor(0, 1, { x: true, y: false })
|
)
|
||||||
|
|
||||||
this.Prompt()
|
const openInputRedirect = async (path: string) => {
|
||||||
return
|
const resolved = resolvePath(path)
|
||||||
|
const item = await Item.open(resolved)
|
||||||
|
|
||||||
|
if (!(await item.Exists()))
|
||||||
|
throw new Error(`input file ${resolved} doesn't exist`)
|
||||||
|
|
||||||
|
if (item.IsDirectory())
|
||||||
|
throw new Error(`input file ${resolved} is a directory`)
|
||||||
|
|
||||||
|
return { stream: new SimpleStream<string>(), data: item.GetData() ?? '' }
|
||||||
|
}
|
||||||
|
|
||||||
|
const openOutputRedirect = async (path: string, append: boolean) => {
|
||||||
|
const resolved = resolvePath(path)
|
||||||
|
const item = await Item.open(resolved)
|
||||||
|
|
||||||
|
if (!(await item.Exists()))
|
||||||
|
await item.Create()
|
||||||
|
|
||||||
|
if (item.IsDirectory())
|
||||||
|
throw new Error(`output path ${resolved} is a directory`)
|
||||||
|
|
||||||
|
if (!append)
|
||||||
|
await item.Write('')
|
||||||
|
|
||||||
|
const stream = new SimpleStream<string>()
|
||||||
|
let writeQueue = Promise.resolve()
|
||||||
|
const listener = (data: string) => {
|
||||||
|
writeQueue = writeQueue.then(() => item.Append(data))
|
||||||
|
}
|
||||||
|
stream.on(listener)
|
||||||
|
|
||||||
|
return {
|
||||||
|
stream,
|
||||||
|
finish: () => writeQueue,
|
||||||
|
teardown: () => stream.off(listener),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const setupPipelineStreams = async (pipeline: ParsedPipeline) => {
|
||||||
|
const teardown: Array<() => void> = []
|
||||||
|
const stdins: SimpleStream<string>[] = []
|
||||||
|
const stdouts: SimpleStream<string>[] = []
|
||||||
|
const finishers: Array<() => Promise<void>> = []
|
||||||
|
const inputFeeds: Array<{ stream: SimpleStream<string>; data: string }> = []
|
||||||
|
|
||||||
|
try {
|
||||||
|
for (const [index, command] of pipeline.commands.entries()) {
|
||||||
|
let stdin: SimpleStream<string>
|
||||||
|
let stdout: SimpleStream<string>
|
||||||
|
|
||||||
|
if (command.stdinPath) {
|
||||||
|
if (index !== 0)
|
||||||
|
throw new Error('input redirection is only supported on the first command in a pipeline')
|
||||||
|
|
||||||
|
const { stream, data } = await openInputRedirect(command.stdinPath)
|
||||||
|
stdin = stream
|
||||||
|
inputFeeds.push({ stream, data })
|
||||||
|
} else {
|
||||||
|
stdin = index === 0 ? this.stdin : new SimpleStream<string>()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (command.stdoutPath) {
|
||||||
|
if (index !== pipeline.commands.length - 1)
|
||||||
|
throw new Error('output redirection is only supported on the last command in a pipeline')
|
||||||
|
|
||||||
|
const { stream, finish, teardown: remove } = await openOutputRedirect(
|
||||||
|
command.stdoutPath,
|
||||||
|
command.stdoutAppend
|
||||||
|
)
|
||||||
|
stdout = stream
|
||||||
|
finishers.push(finish)
|
||||||
|
teardown.push(remove)
|
||||||
|
} else {
|
||||||
|
stdout = index === pipeline.commands.length - 1 ? this.stdout : new SimpleStream<string>()
|
||||||
|
}
|
||||||
|
|
||||||
|
command.stdin = stdin
|
||||||
|
command.stdout = stdout
|
||||||
|
|
||||||
|
stdins.push(stdin)
|
||||||
|
stdouts.push(stdout)
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < pipeline.commands.length - 1; i++) {
|
||||||
|
if (pipeline.commands[i].stdoutPath)
|
||||||
|
throw new Error('cannot pipe a command with output redirection')
|
||||||
|
|
||||||
|
if (pipeline.commands[i + 1].stdinPath)
|
||||||
|
throw new Error('cannot pipe into a command with input redirection')
|
||||||
|
|
||||||
|
const listener = (data: string) => stdins[i + 1].emit(data)
|
||||||
|
stdouts[i].on(listener)
|
||||||
|
teardown.push(() => stdouts[i].off(listener))
|
||||||
|
}
|
||||||
|
|
||||||
|
return { stdins, stdouts, teardown, finishers, inputFeeds }
|
||||||
|
} catch (e) {
|
||||||
|
teardown.forEach(remove => remove())
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const executePipeline = async (pipeline: ParsedPipeline): Promise<number> => {
|
||||||
|
const missing = pipeline.commands.find(command => !(this.programs[command.args[0]] instanceof Program))
|
||||||
|
if (missing) {
|
||||||
|
const name = missing.args[0]
|
||||||
|
|
||||||
|
if (name.length !== 0) {
|
||||||
|
this.terminal.Write(`wush: error: unknown command: ${name}.`)
|
||||||
|
this.terminal.MoveCursor(0, 1, { x: true, y: false })
|
||||||
|
return 127
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
let setup: Awaited<ReturnType<typeof setupPipelineStreams>>
|
||||||
|
try {
|
||||||
|
setup = await setupPipelineStreams(pipeline)
|
||||||
|
} catch (e) {
|
||||||
|
const message = e instanceof Error ? e.message : String(e)
|
||||||
|
this.terminal.Write(`wush: error: ${message}`)
|
||||||
|
this.terminal.MoveCursor(0, 1, { x: true, y: false })
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const exitCodes = await Promise.all(pipeline.commands.map(async (command, index) => {
|
||||||
|
try {
|
||||||
|
return await this.programs[command.args[0]].Exec(
|
||||||
|
setup.stdins[index],
|
||||||
|
setup.stdouts[index],
|
||||||
|
this.workingDirectory,
|
||||||
|
command.args
|
||||||
|
)
|
||||||
|
} catch (e) {
|
||||||
|
this.WriteEscapedString(`wush: command ${command.args[0]} exited with the following exception\n`)
|
||||||
|
this.WriteEscapedString(` | ${String(e)}\n`)
|
||||||
|
return -2
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
|
||||||
|
setup.inputFeeds.forEach(feed => {
|
||||||
|
queueMicrotask(() => feed.stream.emit(feed.data))
|
||||||
|
})
|
||||||
|
|
||||||
|
await Promise.all(setup.finishers.map(finish => finish()))
|
||||||
|
|
||||||
|
const lastExitCode = exitCodes[exitCodes.length - 1]
|
||||||
|
return lastExitCode !== -1 ? lastExitCode : -2
|
||||||
|
} finally {
|
||||||
|
setup.teardown.forEach(remove => remove())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const item of list) {
|
for (const item of list) {
|
||||||
const command = item.pipeline.commands[0]
|
this.SetExitCode(-1)
|
||||||
|
this.SetExitCode(await executePipeline(item.pipeline))
|
||||||
this.execExitCode = -1
|
|
||||||
|
|
||||||
if (this.programs[command.args[0]] instanceof Program) {
|
|
||||||
await this.ExecuteProgram(command.args[0], command.args)
|
|
||||||
} else {
|
|
||||||
this.execExitCode = 0
|
|
||||||
|
|
||||||
// don't print anything if there are no arguments
|
|
||||||
if (command.args[0].length !== 0) {
|
|
||||||
this.terminal.Write(`wush: error: unknown command: ${command.args[0]}.`)
|
|
||||||
this.terminal.MoveCursor(0, 1, { x: true, y: false })
|
|
||||||
|
|
||||||
this.execExitCode = 127
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.Prompt()
|
this.Prompt()
|
||||||
@@ -579,11 +898,14 @@ export class Wush extends Shell {
|
|||||||
this.terminal.NewPage()
|
this.terminal.NewPage()
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
case 'm': {
|
||||||
|
this.terminal.ApplyCellStyleCodes(values)
|
||||||
|
return true
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private GetWrapWidth(): number {
|
private GetWrapWidth(): number {
|
||||||
const width = Math.floor(this.terminal.GetWidthCells())
|
const width = Math.floor(this.terminal.GetWidthCells())
|
||||||
if (!Number.isFinite(width) || width <= 0)
|
if (!Number.isFinite(width) || width <= 0)
|
||||||
|
|||||||
@@ -5,7 +5,25 @@ import sqs from '../utils/sqs'
|
|||||||
import type { CursorPosition, CursorStyle } from './CursorProperties'
|
import type { CursorPosition, CursorStyle } from './CursorProperties'
|
||||||
|
|
||||||
export class Terminal {
|
export class Terminal {
|
||||||
public static readonly Version = "0.2.1"
|
public static readonly Version = "0.2.2"
|
||||||
|
private static readonly AnsiColors = [
|
||||||
|
'#000000',
|
||||||
|
'#800000',
|
||||||
|
'#008000',
|
||||||
|
'#808000',
|
||||||
|
'#000080',
|
||||||
|
'#800080',
|
||||||
|
'#008080',
|
||||||
|
'#ffffff',
|
||||||
|
'#808080',
|
||||||
|
'#ff0000',
|
||||||
|
'#00ff00',
|
||||||
|
'#ffff00',
|
||||||
|
'#0000ff',
|
||||||
|
'#ff00ff',
|
||||||
|
'#00ffff',
|
||||||
|
'#ffffff',
|
||||||
|
]
|
||||||
|
|
||||||
private terminal: HTMLElement
|
private terminal: HTMLElement
|
||||||
private cursor: HTMLElement
|
private cursor: HTMLElement
|
||||||
@@ -16,6 +34,9 @@ export class Terminal {
|
|||||||
private lineElements: HTMLElement[] = []
|
private lineElements: HTMLElement[] = []
|
||||||
private lineWrapped: boolean[] = []
|
private lineWrapped: boolean[] = []
|
||||||
private lineStyles: Map<number, Map<number, string>> = new Map()
|
private lineStyles: Map<number, Map<number, string>> = new Map()
|
||||||
|
private currentForeground: string | null = null
|
||||||
|
private currentBackground: string | null = null
|
||||||
|
private currentCellStyle: string | null = null
|
||||||
private scrollPending = false
|
private scrollPending = false
|
||||||
private cursorRange: Range | null = null
|
private cursorRange: Range | null = null
|
||||||
|
|
||||||
@@ -76,6 +97,7 @@ export class Terminal {
|
|||||||
const width = this.GetWrapWidth()
|
const width = this.GetWrapWidth()
|
||||||
let row = this.cursorPosition.row
|
let row = this.cursorPosition.row
|
||||||
let col = this.cursorPosition.col
|
let col = this.cursorPosition.col
|
||||||
|
const style = this.currentCellStyle
|
||||||
|
|
||||||
while (col >= width) {
|
while (col >= width) {
|
||||||
this.EnsureLine(row)
|
this.EnsureLine(row)
|
||||||
@@ -112,6 +134,7 @@ export class Terminal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.lines[row] = line
|
this.lines[row] = line
|
||||||
|
this.ApplyStyleRange(row, col, chunk.length, style)
|
||||||
this.UpdateLine(row)
|
this.UpdateLine(row)
|
||||||
|
|
||||||
remaining = remaining.slice(chunk.length)
|
remaining = remaining.slice(chunk.length)
|
||||||
@@ -157,6 +180,7 @@ export class Terminal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.lines[row] = line
|
this.lines[row] = line
|
||||||
|
this.ApplyStyleRange(row, col, 1, this.currentCellStyle)
|
||||||
this.UpdateLine(row)
|
this.UpdateLine(row)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -200,6 +224,102 @@ export class Terminal {
|
|||||||
this.UpdateCursor()
|
this.UpdateCursor()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ApplyCellStyleCodes(values: number[]) {
|
||||||
|
const params = values.length === 0 ? [0] : values
|
||||||
|
let foreground = this.currentForeground
|
||||||
|
let background = this.currentBackground
|
||||||
|
|
||||||
|
let i = 0
|
||||||
|
while (i < params.length) {
|
||||||
|
const code = params[i]
|
||||||
|
if (!Number.isFinite(code)) {
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === 0) {
|
||||||
|
foreground = null
|
||||||
|
background = null
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === 39) {
|
||||||
|
foreground = null
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === 49) {
|
||||||
|
background = null
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code >= 30 && code <= 37) {
|
||||||
|
foreground = Terminal.AnsiColors[code - 30]
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code >= 90 && code <= 97) {
|
||||||
|
foreground = Terminal.AnsiColors[code - 90 + 8]
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code >= 40 && code <= 47) {
|
||||||
|
background = Terminal.AnsiColors[code - 40]
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code >= 100 && code <= 107) {
|
||||||
|
background = Terminal.AnsiColors[code - 100 + 8]
|
||||||
|
i += 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === 38 || code === 48) {
|
||||||
|
const isForeground = code === 38
|
||||||
|
const mode = params[i + 1]
|
||||||
|
if (mode === 2) {
|
||||||
|
const red = params[i + 2]
|
||||||
|
const green = params[i + 3]
|
||||||
|
const blue = params[i + 4]
|
||||||
|
if (Number.isFinite(red) && Number.isFinite(green) && Number.isFinite(blue)) {
|
||||||
|
const color = Terminal.ToRgbColor(red, green, blue)
|
||||||
|
if (isForeground)
|
||||||
|
foreground = color
|
||||||
|
else
|
||||||
|
background = color
|
||||||
|
}
|
||||||
|
i += 5
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mode === 5) {
|
||||||
|
const index = params[i + 2]
|
||||||
|
const color = Terminal.GetAnsi256Color(index)
|
||||||
|
if (color) {
|
||||||
|
if (isForeground)
|
||||||
|
foreground = color
|
||||||
|
else
|
||||||
|
background = color
|
||||||
|
}
|
||||||
|
i += 3
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
i += 1
|
||||||
|
}
|
||||||
|
|
||||||
|
this.currentForeground = foreground
|
||||||
|
this.currentBackground = background
|
||||||
|
this.UpdateCurrentStyle()
|
||||||
|
}
|
||||||
|
|
||||||
InsertCell(char: string) {
|
InsertCell(char: string) {
|
||||||
const width = this.GetWrapWidth()
|
const width = this.GetWrapWidth()
|
||||||
let row = this.cursorPosition.row
|
let row = this.cursorPosition.row
|
||||||
@@ -220,6 +340,7 @@ export class Terminal {
|
|||||||
|
|
||||||
line = line.slice(0, col) + char[0] + line.slice(col)
|
line = line.slice(0, col) + char[0] + line.slice(col)
|
||||||
this.lines[row] = line
|
this.lines[row] = line
|
||||||
|
this.ApplyInsertStyle(row, col, this.currentCellStyle)
|
||||||
this.UpdateLine(row)
|
this.UpdateLine(row)
|
||||||
this.ReflowFromRow(row)
|
this.ReflowFromRow(row)
|
||||||
}
|
}
|
||||||
@@ -245,6 +366,7 @@ export class Terminal {
|
|||||||
|
|
||||||
line = line.slice(0, removeIndex) + line.slice(removeIndex + 1)
|
line = line.slice(0, removeIndex) + line.slice(removeIndex + 1)
|
||||||
this.lines[row] = line
|
this.lines[row] = line
|
||||||
|
this.ApplyRemoveStyle(row, removeIndex)
|
||||||
this.UpdateLine(row)
|
this.UpdateLine(row)
|
||||||
this.ReflowFromRow(row)
|
this.ReflowFromRow(row)
|
||||||
}
|
}
|
||||||
@@ -514,6 +636,119 @@ export class Terminal {
|
|||||||
this.UpdateLine(renderRow)
|
this.UpdateLine(renderRow)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private UpdateCurrentStyle() {
|
||||||
|
const styles: string[] = []
|
||||||
|
if (this.currentForeground)
|
||||||
|
styles.push(`color: ${this.currentForeground}`)
|
||||||
|
if (this.currentBackground)
|
||||||
|
styles.push(`background-color: ${this.currentBackground}`)
|
||||||
|
|
||||||
|
this.currentCellStyle = styles.length > 0 ? styles.join('; ') : null
|
||||||
|
}
|
||||||
|
|
||||||
|
private ApplyStyleRange(row: number, startCol: number, length: number, style: string | null) {
|
||||||
|
if (!Number.isFinite(row) || !Number.isFinite(startCol) || length <= 0)
|
||||||
|
return
|
||||||
|
|
||||||
|
let rowStyles = this.lineStyles.get(row)
|
||||||
|
if (!rowStyles && !style)
|
||||||
|
return
|
||||||
|
|
||||||
|
if (!rowStyles) {
|
||||||
|
rowStyles = new Map()
|
||||||
|
this.lineStyles.set(row, rowStyles)
|
||||||
|
}
|
||||||
|
|
||||||
|
const start = Math.max(0, Math.floor(startCol))
|
||||||
|
const end = start + Math.max(0, Math.floor(length))
|
||||||
|
for (let col = start; col < end; col++) {
|
||||||
|
if (style)
|
||||||
|
rowStyles.set(col, style)
|
||||||
|
else
|
||||||
|
rowStyles.delete(col)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rowStyles.size === 0)
|
||||||
|
this.lineStyles.delete(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
private ApplyInsertStyle(row: number, col: number, style: string | null) {
|
||||||
|
const rowStyles = this.lineStyles.get(row)
|
||||||
|
if (!rowStyles && !style)
|
||||||
|
return
|
||||||
|
|
||||||
|
const updated = new Map<number, string>()
|
||||||
|
if (rowStyles) {
|
||||||
|
for (const [index, cssText] of rowStyles) {
|
||||||
|
if (index >= col)
|
||||||
|
updated.set(index + 1, cssText)
|
||||||
|
else
|
||||||
|
updated.set(index, cssText)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style)
|
||||||
|
updated.set(col, style)
|
||||||
|
|
||||||
|
if (updated.size > 0)
|
||||||
|
this.lineStyles.set(row, updated)
|
||||||
|
else
|
||||||
|
this.lineStyles.delete(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
private ApplyRemoveStyle(row: number, col: number) {
|
||||||
|
const rowStyles = this.lineStyles.get(row)
|
||||||
|
if (!rowStyles)
|
||||||
|
return
|
||||||
|
|
||||||
|
const updated = new Map<number, string>()
|
||||||
|
for (const [index, cssText] of rowStyles) {
|
||||||
|
if (index === col)
|
||||||
|
continue
|
||||||
|
if (index > col)
|
||||||
|
updated.set(index - 1, cssText)
|
||||||
|
else
|
||||||
|
updated.set(index, cssText)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updated.size > 0)
|
||||||
|
this.lineStyles.set(row, updated)
|
||||||
|
else
|
||||||
|
this.lineStyles.delete(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ToRgbColor(red: number, green: number, blue: number): string {
|
||||||
|
const clamp = (value: number) => Math.min(255, Math.max(0, Math.round(value)))
|
||||||
|
const r = clamp(red)
|
||||||
|
const g = clamp(green)
|
||||||
|
const b = clamp(blue)
|
||||||
|
return `rgb(${r}, ${g}, ${b})`
|
||||||
|
}
|
||||||
|
|
||||||
|
private static GetAnsi256Color(code: number): string | null {
|
||||||
|
if (!Number.isFinite(code))
|
||||||
|
return null
|
||||||
|
|
||||||
|
const index = Math.floor(code)
|
||||||
|
if (index < 0 || index > 255)
|
||||||
|
return null
|
||||||
|
|
||||||
|
if (index < 16)
|
||||||
|
return Terminal.AnsiColors[index]
|
||||||
|
|
||||||
|
if (index <= 231) {
|
||||||
|
const offset = index - 16
|
||||||
|
const r = Math.floor(offset / 36)
|
||||||
|
const g = Math.floor((offset % 36) / 6)
|
||||||
|
const b = offset % 6
|
||||||
|
const levels = [0, 95, 135, 175, 215, 255]
|
||||||
|
return `rgb(${levels[r]}, ${levels[g]}, ${levels[b]})`
|
||||||
|
}
|
||||||
|
|
||||||
|
const grayscale = 8 + (index - 232) * 10
|
||||||
|
return `rgb(${grayscale}, ${grayscale}, ${grayscale})`
|
||||||
|
}
|
||||||
|
|
||||||
private GetCursorXOffset(): number {
|
private GetCursorXOffset(): number {
|
||||||
const row = this.cursorPosition.row
|
const row = this.cursorPosition.row
|
||||||
const col = this.cursorPosition.col
|
const col = this.cursorPosition.col
|
||||||
|
|||||||
Reference in New Issue
Block a user