1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
// Package vt provides a virtual terminal implementation.
// SKIP: Fix typecheck errors - function signature mismatches and undefined types
package vt
import (
"bytes"
"image/color"
"io"
"github.com/charmbracelet/x/ansi"
)
// handleOsc handles an OSC escape sequence.
func (e *Emulator) handleOsc(cmd int, data []byte) {
e.flushGrapheme() // Flush any pending grapheme before handling OSC sequences.
if !e.handlers.handleOsc(cmd, data) {
e.logf("unhandled sequence: OSC %q", data)
}
}
func (e *Emulator) handleTitle(cmd int, data []byte) {
parts := bytes.Split(data, []byte{';'})
if len(parts) != 2 {
// Invalid, ignore
return
}
switch cmd {
case 0: // Set window title and icon name
name := string(parts[1])
e.iconName, e.title = name, name
if e.cb.Title != nil {
e.cb.Title(name)
}
if e.cb.IconName != nil {
e.cb.IconName(name)
}
case 1: // Set icon name
name := string(parts[1])
e.iconName = name
if e.cb.IconName != nil {
e.cb.IconName(name)
}
case 2: // Set window title
name := string(parts[1])
e.title = name
if e.cb.Title != nil {
e.cb.Title(name)
}
}
}
func (e *Emulator) handleDefaultColor(cmd int, data []byte) {
if cmd != 10 && cmd != 11 && cmd != 12 &&
cmd != 110 && cmd != 111 && cmd != 112 {
// Invalid, ignore
return
}
parts := bytes.Split(data, []byte{';'})
if len(parts) == 0 {
// Invalid, ignore
return
}
cb := func(c color.Color) {
switch cmd {
case 10, 110: // Foreground color
e.SetForegroundColor(c)
case 11, 111: // Background color
e.SetBackgroundColor(c)
case 12, 112: // Cursor color
e.SetCursorColor(c)
}
}
switch len(parts) {
case 1: // Reset color
cb(nil)
case 2: // Set/Query color
arg := string(parts[1])
if arg == "?" {
var xrgb ansi.XRGBColor
switch cmd {
case 10: // Query foreground color
xrgb.Color = e.ForegroundColor()
if xrgb.Color != nil {
io.WriteString(e.pw, ansi.SetForegroundColor(xrgb.String())) //nolint:errcheck,gosec
}
case 11: // Query background color
xrgb.Color = e.BackgroundColor()
if xrgb.Color != nil {
io.WriteString(e.pw, ansi.SetBackgroundColor(xrgb.String())) //nolint:errcheck,gosec
}
case 12: // Query cursor color
xrgb.Color = e.CursorColor()
if xrgb.Color != nil {
io.WriteString(e.pw, ansi.SetCursorColor(xrgb.String())) //nolint:errcheck,gosec
}
}
} else if c := ansi.XParseColor(arg); c != nil {
cb(c)
}
}
}
func (e *Emulator) handleWorkingDirectory(cmd int, data []byte) {
if cmd != 7 {
// Invalid, ignore
return
}
// The data is the working directory path.
parts := bytes.Split(data, []byte{';'})
if len(parts) != 2 {
// Invalid, ignore
return
}
path := string(parts[1])
e.cwd = path
if e.cb.WorkingDirectory != nil {
e.cb.WorkingDirectory(path)
}
}
func (e *Emulator) handleHyperlink(cmd int, data []byte) {
parts := bytes.Split(data, []byte{';'})
if len(parts) != 3 || cmd != 8 {
// Invalid, ignore
return
}
e.scr.cur.Link.URL = string(parts[1])
e.scr.cur.Link.Params = string(parts[2])
}
|