mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 00:36:07 +03:00
939 lines
27 KiB
Zig
939 lines
27 KiB
Zig
//! VT-series parser for escape and control sequences.
|
||
//!
|
||
//! This is implemented directly as the state machine described on
|
||
//! vt100.net: https://vt100.net/emu/dec_ansi_parser
|
||
const Parser = @This();
|
||
|
||
const std = @import("std");
|
||
const builtin = @import("builtin");
|
||
const trace = @import("tracy").trace;
|
||
const testing = std.testing;
|
||
const table = @import("parse_table.zig").table;
|
||
const osc = @import("osc.zig");
|
||
|
||
const log = std.log.scoped(.parser);
|
||
|
||
/// States for the state machine
|
||
pub const State = enum {
|
||
ground,
|
||
escape,
|
||
escape_intermediate,
|
||
csi_entry,
|
||
csi_intermediate,
|
||
csi_param,
|
||
csi_ignore,
|
||
dcs_entry,
|
||
dcs_param,
|
||
dcs_intermediate,
|
||
dcs_passthrough,
|
||
dcs_ignore,
|
||
osc_string,
|
||
sos_pm_apc_string,
|
||
|
||
// Custom states added that aren't present on vt100.net
|
||
utf8,
|
||
};
|
||
|
||
/// Transition action is an action that can be taken during a state
|
||
/// transition. This is more of an internal action, not one used by
|
||
/// end users, typically.
|
||
pub const TransitionAction = enum {
|
||
none,
|
||
ignore,
|
||
print,
|
||
execute,
|
||
collect,
|
||
param,
|
||
esc_dispatch,
|
||
csi_dispatch,
|
||
put,
|
||
osc_put,
|
||
apc_put,
|
||
};
|
||
|
||
/// Action is the action that a caller of the parser is expected to
|
||
/// take as a result of some input character.
|
||
pub const Action = union(enum) {
|
||
pub const Tag = std.meta.FieldEnum(Action);
|
||
|
||
/// Draw character to the screen. This is a unicode codepoint.
|
||
print: u21,
|
||
|
||
/// Execute the C0 or C1 function.
|
||
execute: u8,
|
||
|
||
/// Execute the CSI command. Note that pointers within this
|
||
/// structure are only valid until the next call to "next".
|
||
csi_dispatch: CSI,
|
||
|
||
/// Execute the ESC command.
|
||
esc_dispatch: ESC,
|
||
|
||
/// Execute the OSC command.
|
||
osc_dispatch: osc.Command,
|
||
|
||
/// DCS-related events.
|
||
dcs_hook: DCS,
|
||
dcs_put: u8,
|
||
dcs_unhook: void,
|
||
|
||
/// APC data
|
||
apc_start: void,
|
||
apc_put: u8,
|
||
apc_end: void,
|
||
|
||
pub const CSI = struct {
|
||
intermediates: []u8,
|
||
params: []u16,
|
||
final: u8,
|
||
sep: Sep,
|
||
|
||
/// The separator used for CSI params.
|
||
pub const Sep = enum { semicolon, colon };
|
||
|
||
// Implement formatter for logging
|
||
pub fn format(
|
||
self: CSI,
|
||
comptime layout: []const u8,
|
||
opts: std.fmt.FormatOptions,
|
||
writer: anytype,
|
||
) !void {
|
||
_ = layout;
|
||
_ = opts;
|
||
try std.fmt.format(writer, "ESC [ {s} {any} {c}", .{
|
||
self.intermediates,
|
||
self.params,
|
||
self.final,
|
||
});
|
||
}
|
||
};
|
||
|
||
pub const ESC = struct {
|
||
intermediates: []u8,
|
||
final: u8,
|
||
|
||
// Implement formatter for logging
|
||
pub fn format(
|
||
self: ESC,
|
||
comptime layout: []const u8,
|
||
opts: std.fmt.FormatOptions,
|
||
writer: anytype,
|
||
) !void {
|
||
_ = layout;
|
||
_ = opts;
|
||
try std.fmt.format(writer, "ESC {s} {c}", .{
|
||
self.intermediates,
|
||
self.final,
|
||
});
|
||
}
|
||
};
|
||
|
||
pub const DCS = struct {
|
||
intermediates: []const u8 = "",
|
||
params: []const u16 = &.{},
|
||
final: u8,
|
||
};
|
||
|
||
// Implement formatter for logging. This is mostly copied from the
|
||
// std.fmt implementation, but we modify it slightly so that we can
|
||
// print out custom formats for some of our primitives.
|
||
pub fn format(
|
||
self: Action,
|
||
comptime layout: []const u8,
|
||
opts: std.fmt.FormatOptions,
|
||
writer: anytype,
|
||
) !void {
|
||
_ = layout;
|
||
const T = Action;
|
||
const info = @typeInfo(T).Union;
|
||
|
||
try writer.writeAll(@typeName(T));
|
||
if (info.tag_type) |TagType| {
|
||
try writer.writeAll("{ .");
|
||
try writer.writeAll(@tagName(@as(TagType, self)));
|
||
try writer.writeAll(" = ");
|
||
|
||
inline for (info.fields) |u_field| {
|
||
// If this is the active field...
|
||
if (self == @field(TagType, u_field.name)) {
|
||
const value = @field(self, u_field.name);
|
||
switch (@TypeOf(value)) {
|
||
// Unicode
|
||
u21 => try std.fmt.format(writer, "'{u}' (U+{X})", .{ value, value }),
|
||
|
||
// Byte
|
||
u8 => try std.fmt.format(writer, "0x{x}", .{value}),
|
||
|
||
// Note: we don't do ASCII (u8) because there are a lot
|
||
// of invisible characters we don't want to handle right
|
||
// now.
|
||
|
||
// All others do the default behavior
|
||
else => try std.fmt.formatType(
|
||
@field(self, u_field.name),
|
||
"any",
|
||
opts,
|
||
writer,
|
||
3,
|
||
),
|
||
}
|
||
}
|
||
}
|
||
|
||
try writer.writeAll(" }");
|
||
} else {
|
||
try format(writer, "@{x}", .{@intFromPtr(&self)});
|
||
}
|
||
}
|
||
};
|
||
|
||
/// Keeps track of the parameter sep used for CSI params. We allow colons
|
||
/// to be used ONLY by the 'm' CSI action.
|
||
const ParamSepState = enum(u8) {
|
||
none = 0,
|
||
semicolon = ';',
|
||
colon = ':',
|
||
mixed = 1,
|
||
};
|
||
|
||
/// Maximum number of intermediate characters during parsing. This is
|
||
/// 4 because we also use the intermediates array for UTF8 decoding which
|
||
/// can be at most 4 bytes.
|
||
const MAX_INTERMEDIATE = 4;
|
||
const MAX_PARAMS = 16;
|
||
|
||
/// Current state of the state machine
|
||
state: State = .ground,
|
||
|
||
/// Intermediate tracking.
|
||
intermediates: [MAX_INTERMEDIATE]u8 = undefined,
|
||
intermediates_idx: u8 = 0,
|
||
|
||
/// Param tracking, building
|
||
params: [MAX_PARAMS]u16 = undefined,
|
||
params_idx: u8 = 0,
|
||
params_sep: ParamSepState = .none,
|
||
param_acc: u16 = 0,
|
||
param_acc_idx: u8 = 0,
|
||
|
||
/// Parser for OSC sequences
|
||
osc_parser: osc.Parser = .{},
|
||
|
||
pub fn init() Parser {
|
||
return .{};
|
||
}
|
||
|
||
pub fn deinit(self: *Parser) void {
|
||
self.osc_parser.deinit();
|
||
}
|
||
|
||
/// Next consumes the next character c and returns the actions to execute.
|
||
/// Up to 3 actions may need to be executed -- in order -- representing
|
||
/// the state exit, transition, and entry actions.
|
||
pub fn next(self: *Parser, c: u8) [3]?Action {
|
||
const tracy = trace(@src());
|
||
defer tracy.end();
|
||
|
||
// If we're processing UTF-8, we handle this manually.
|
||
if (self.state == .utf8) {
|
||
return .{ self.next_utf8(c), null, null };
|
||
}
|
||
|
||
const effect = table[c][@intFromEnum(self.state)];
|
||
|
||
// log.info("next: {x}", .{c});
|
||
|
||
const next_state = effect.state;
|
||
const action = effect.action;
|
||
|
||
// After generating the actions, we set our next state.
|
||
defer self.state = next_state;
|
||
|
||
// When going from one state to another, the actions take place in this order:
|
||
//
|
||
// 1. exit action from old state
|
||
// 2. transition action
|
||
// 3. entry action to new state
|
||
return [3]?Action{
|
||
// Exit depends on current state
|
||
if (self.state == next_state) null else switch (self.state) {
|
||
.osc_string => if (self.osc_parser.end(c)) |cmd|
|
||
Action{ .osc_dispatch = cmd }
|
||
else
|
||
null,
|
||
.dcs_passthrough => Action{ .dcs_unhook = {} },
|
||
.sos_pm_apc_string => Action{ .apc_end = {} },
|
||
else => null,
|
||
},
|
||
|
||
self.doAction(action, c),
|
||
|
||
// Entry depends on new state
|
||
if (self.state == next_state) null else switch (next_state) {
|
||
.escape, .dcs_entry, .csi_entry => clear: {
|
||
self.clear();
|
||
break :clear null;
|
||
},
|
||
.osc_string => osc_string: {
|
||
self.osc_parser.reset();
|
||
break :osc_string null;
|
||
},
|
||
.dcs_passthrough => Action{
|
||
.dcs_hook = .{
|
||
.intermediates = self.intermediates[0..self.intermediates_idx],
|
||
.params = self.params[0..self.params_idx],
|
||
.final = c,
|
||
},
|
||
},
|
||
.sos_pm_apc_string => Action{ .apc_start = {} },
|
||
.utf8 => utf8: {
|
||
// When entering the UTF8 state, we need to grab the
|
||
// last intermediate as our first byte and reset
|
||
// the intermediates, because prior actions (i.e. CSI)
|
||
// can pollute the intermediates and we use it to build
|
||
// our UTF-8 string.
|
||
if (self.intermediates_idx > 1) {
|
||
const last = self.intermediates_idx - 1;
|
||
self.intermediates[0] = self.intermediates[last];
|
||
self.clear();
|
||
self.intermediates_idx = 1;
|
||
}
|
||
break :utf8 null;
|
||
},
|
||
else => null,
|
||
},
|
||
};
|
||
}
|
||
|
||
/// Processes the next byte in a UTF8 sequence. It is assumed that
|
||
/// intermediates[0] already has the first byte of a UTF8 sequence
|
||
/// (triggered via the state machine).
|
||
fn next_utf8(self: *Parser, c: u8) ?Action {
|
||
// Collect the byte into the intermediates array
|
||
self.collect(c);
|
||
|
||
// Error is unreachable because the first byte comes from the state machine.
|
||
// If we get an error here, it is a bug in the state machine that we want
|
||
// to chase down.
|
||
const len = std.unicode.utf8ByteSequenceLength(self.intermediates[0]) catch unreachable;
|
||
|
||
// We need to collect more
|
||
if (self.intermediates_idx < len) return null;
|
||
|
||
// No matter what happens, we go back to ground since we know we have
|
||
// enough bytes for the UTF8 sequence.
|
||
defer {
|
||
self.state = .ground;
|
||
self.intermediates_idx = 0;
|
||
}
|
||
|
||
// We have enough bytes, decode!
|
||
const bytes = self.intermediates[0..len];
|
||
const rune = std.unicode.utf8Decode(bytes) catch rune: {
|
||
log.warn("invalid UTF-8 sequence: {any}", .{bytes});
|
||
break :rune 0xFFFD; // <20>
|
||
};
|
||
|
||
return Action{ .print = rune };
|
||
}
|
||
|
||
fn collect(self: *Parser, c: u8) void {
|
||
if (self.intermediates_idx >= MAX_INTERMEDIATE) {
|
||
log.warn("invalid intermediates count", .{});
|
||
return;
|
||
}
|
||
|
||
self.intermediates[self.intermediates_idx] = c;
|
||
self.intermediates_idx += 1;
|
||
}
|
||
|
||
fn doAction(self: *Parser, action: TransitionAction, c: u8) ?Action {
|
||
return switch (action) {
|
||
.none, .ignore => null,
|
||
.print => Action{ .print = c },
|
||
.execute => Action{ .execute = c },
|
||
.collect => collect: {
|
||
self.collect(c);
|
||
break :collect null;
|
||
},
|
||
.param => param: {
|
||
// Semicolon separates parameters. If we encounter a semicolon
|
||
// we need to store and move on to the next parameter.
|
||
if (c == ';' or c == ':') {
|
||
// Ignore too many parameters
|
||
if (self.params_idx >= MAX_PARAMS) break :param null;
|
||
|
||
// If this is our first time seeing a parameter, we track
|
||
// the separator used so that we can't mix separators later.
|
||
if (self.params_idx == 0) self.params_sep = @enumFromInt(c);
|
||
if (@as(ParamSepState, @enumFromInt(c)) != self.params_sep) self.params_sep = .mixed;
|
||
|
||
// Set param final value
|
||
self.params[self.params_idx] = self.param_acc;
|
||
self.params_idx += 1;
|
||
|
||
// Reset current param value to 0
|
||
self.param_acc = 0;
|
||
self.param_acc_idx = 0;
|
||
break :param null;
|
||
}
|
||
|
||
// A numeric value. Add it to our accumulator.
|
||
if (self.param_acc_idx > 0) {
|
||
self.param_acc *|= 10;
|
||
}
|
||
self.param_acc +|= c - '0';
|
||
|
||
// Increment our accumulator index. If we overflow then
|
||
// we're out of bounds and we exit immediately.
|
||
self.param_acc_idx, const overflow = @addWithOverflow(self.param_acc_idx, 1);
|
||
if (overflow > 0) break :param null;
|
||
|
||
// The client is expected to perform no action.
|
||
break :param null;
|
||
},
|
||
.osc_put => osc_put: {
|
||
self.osc_parser.next(c);
|
||
break :osc_put null;
|
||
},
|
||
.csi_dispatch => csi_dispatch: {
|
||
// Ignore too many parameters
|
||
if (self.params_idx >= MAX_PARAMS) break :csi_dispatch null;
|
||
|
||
// Finalize parameters if we have one
|
||
if (self.param_acc_idx > 0) {
|
||
self.params[self.params_idx] = self.param_acc;
|
||
self.params_idx += 1;
|
||
}
|
||
|
||
const result: Action = .{
|
||
.csi_dispatch = .{
|
||
.intermediates = self.intermediates[0..self.intermediates_idx],
|
||
.params = self.params[0..self.params_idx],
|
||
.final = c,
|
||
.sep = switch (self.params_sep) {
|
||
.none, .semicolon => .semicolon,
|
||
.colon => .colon,
|
||
|
||
// There is nothing that treats mixed separators specially
|
||
// afaik so we just treat it as a semicolon.
|
||
.mixed => .semicolon,
|
||
},
|
||
},
|
||
};
|
||
|
||
// We only allow colon or mixed separators for the 'm' command.
|
||
switch (self.params_sep) {
|
||
.none => {},
|
||
.semicolon => {},
|
||
.colon, .mixed => if (c != 'm') {
|
||
log.warn(
|
||
"CSI colon or mixed separators only allowed for 'm' command, got: {}",
|
||
.{result},
|
||
);
|
||
break :csi_dispatch null;
|
||
},
|
||
}
|
||
|
||
break :csi_dispatch result;
|
||
},
|
||
.esc_dispatch => Action{
|
||
.esc_dispatch = .{
|
||
.intermediates = self.intermediates[0..self.intermediates_idx],
|
||
.final = c,
|
||
},
|
||
},
|
||
.put => Action{ .dcs_put = c },
|
||
.apc_put => Action{ .apc_put = c },
|
||
};
|
||
}
|
||
|
||
fn clear(self: *Parser) void {
|
||
self.intermediates_idx = 0;
|
||
self.params_idx = 0;
|
||
self.params_sep = .none;
|
||
self.param_acc = 0;
|
||
self.param_acc_idx = 0;
|
||
}
|
||
|
||
test {
|
||
var p = init();
|
||
_ = p.next(0x9E);
|
||
try testing.expect(p.state == .sos_pm_apc_string);
|
||
_ = p.next(0x9C);
|
||
try testing.expect(p.state == .ground);
|
||
|
||
{
|
||
const a = p.next('a');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .print);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next(0x19);
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .execute);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
}
|
||
|
||
test "esc: ESC ( B" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next('(');
|
||
|
||
{
|
||
const a = p.next('B');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .esc_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.esc_dispatch;
|
||
try testing.expect(d.final == 'B');
|
||
try testing.expect(d.intermediates.len == 1);
|
||
try testing.expect(d.intermediates[0] == '(');
|
||
}
|
||
}
|
||
|
||
test "csi: ESC [ H" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next(0x5B);
|
||
|
||
{
|
||
const a = p.next(0x48);
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 0x48);
|
||
try testing.expect(d.params.len == 0);
|
||
}
|
||
}
|
||
|
||
test "csi: ESC [ 1 ; 4 H" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next(0x5B);
|
||
_ = p.next(0x31); // 1
|
||
_ = p.next(0x3B); // ;
|
||
_ = p.next(0x34); // 4
|
||
|
||
{
|
||
const a = p.next(0x48); // H
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'H');
|
||
try testing.expect(d.params.len == 2);
|
||
try testing.expectEqual(@as(u16, 1), d.params[0]);
|
||
try testing.expectEqual(@as(u16, 4), d.params[1]);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR ESC [ 38 : 2 m" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next('[');
|
||
_ = p.next('3');
|
||
_ = p.next('8');
|
||
_ = p.next(':');
|
||
_ = p.next('2');
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'm');
|
||
try testing.expect(d.sep == .colon);
|
||
try testing.expect(d.params.len == 2);
|
||
try testing.expectEqual(@as(u16, 38), d.params[0]);
|
||
try testing.expectEqual(@as(u16, 2), d.params[1]);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR colon followed by semicolon" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[48:2") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
_ = p.next(0x1B);
|
||
_ = p.next('[');
|
||
{
|
||
const a = p.next('H');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR mixed colon and semicolon" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[38:5:1;48:5:0") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR ESC [ 48 : 2 m" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[48:2:240:143:104") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'm');
|
||
try testing.expect(d.sep == .colon);
|
||
try testing.expect(d.params.len == 5);
|
||
try testing.expectEqual(@as(u16, 48), d.params[0]);
|
||
try testing.expectEqual(@as(u16, 2), d.params[1]);
|
||
try testing.expectEqual(@as(u16, 240), d.params[2]);
|
||
try testing.expectEqual(@as(u16, 143), d.params[3]);
|
||
try testing.expectEqual(@as(u16, 104), d.params[4]);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR ESC [4:3m colon" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next('[');
|
||
_ = p.next('4');
|
||
_ = p.next(':');
|
||
_ = p.next('3');
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'm');
|
||
try testing.expect(d.sep == .colon);
|
||
try testing.expect(d.params.len == 2);
|
||
try testing.expectEqual(@as(u16, 4), d.params[0]);
|
||
try testing.expectEqual(@as(u16, 3), d.params[1]);
|
||
}
|
||
}
|
||
|
||
test "csi: SGR with many blank and colon" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[58:2::240:143:104") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('m');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'm');
|
||
try testing.expect(d.sep == .colon);
|
||
try testing.expect(d.params.len == 6);
|
||
try testing.expectEqual(@as(u16, 58), d.params[0]);
|
||
try testing.expectEqual(@as(u16, 2), d.params[1]);
|
||
try testing.expectEqual(@as(u16, 0), d.params[2]);
|
||
try testing.expectEqual(@as(u16, 240), d.params[3]);
|
||
try testing.expectEqual(@as(u16, 143), d.params[4]);
|
||
try testing.expectEqual(@as(u16, 104), d.params[5]);
|
||
}
|
||
}
|
||
|
||
test "csi: colon for non-m final" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[38:2h") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
try testing.expect(p.state == .ground);
|
||
}
|
||
|
||
test "csi: request mode decrqm" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[?2026$") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('p');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'p');
|
||
try testing.expectEqual(@as(usize, 2), d.intermediates.len);
|
||
try testing.expectEqual(@as(usize, 1), d.params.len);
|
||
try testing.expectEqual(@as(u16, '?'), d.intermediates[0]);
|
||
try testing.expectEqual(@as(u16, '$'), d.intermediates[1]);
|
||
try testing.expectEqual(@as(u16, 2026), d.params[0]);
|
||
}
|
||
}
|
||
|
||
test "csi: change cursor" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
for ("[3 ") |c| {
|
||
const a = p.next(c);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next('q');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1].? == .csi_dispatch);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const d = a[1].?.csi_dispatch;
|
||
try testing.expect(d.final == 'q');
|
||
try testing.expectEqual(@as(usize, 1), d.intermediates.len);
|
||
try testing.expectEqual(@as(usize, 1), d.params.len);
|
||
try testing.expectEqual(@as(u16, ' '), d.intermediates[0]);
|
||
try testing.expectEqual(@as(u16, 3), d.params[0]);
|
||
}
|
||
}
|
||
|
||
test "osc: change window title" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next(']');
|
||
_ = p.next('0');
|
||
_ = p.next(';');
|
||
_ = p.next('a');
|
||
_ = p.next('b');
|
||
_ = p.next('c');
|
||
|
||
{
|
||
const a = p.next(0x07); // BEL
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .osc_dispatch);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const cmd = a[0].?.osc_dispatch;
|
||
try testing.expect(cmd == .change_window_title);
|
||
try testing.expectEqualStrings("abc", cmd.change_window_title);
|
||
}
|
||
}
|
||
|
||
test "osc: change window title (end in esc)" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next(']');
|
||
_ = p.next('0');
|
||
_ = p.next(';');
|
||
_ = p.next('a');
|
||
_ = p.next('b');
|
||
_ = p.next('c');
|
||
|
||
{
|
||
const a = p.next(0x1B);
|
||
_ = p.next('\\');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .osc_dispatch);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const cmd = a[0].?.osc_dispatch;
|
||
try testing.expect(cmd == .change_window_title);
|
||
try testing.expectEqualStrings("abc", cmd.change_window_title);
|
||
}
|
||
}
|
||
|
||
// https://github.com/darrenstarr/VtNetCore/pull/14
|
||
// Saw this on HN, decided to add a test case because why not.
|
||
test "osc: 112 incomplete sequence" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next(']');
|
||
_ = p.next('1');
|
||
_ = p.next('1');
|
||
_ = p.next('2');
|
||
|
||
{
|
||
const a = p.next(0x07);
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .osc_dispatch);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const cmd = a[0].?.osc_dispatch;
|
||
try testing.expect(cmd == .reset_color);
|
||
try testing.expectEqual(cmd.reset_color.kind, .cursor);
|
||
}
|
||
}
|
||
|
||
test "print: utf8 2 byte" {
|
||
var p = init();
|
||
var a: [3]?Action = undefined;
|
||
for ("£") |c| a = p.next(c);
|
||
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .print);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const rune = a[0].?.print;
|
||
try testing.expectEqual(try std.unicode.utf8Decode("£"), rune);
|
||
}
|
||
|
||
test "print: utf8 3 byte" {
|
||
var p = init();
|
||
var a: [3]?Action = undefined;
|
||
for ("€") |c| a = p.next(c);
|
||
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .print);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const rune = a[0].?.print;
|
||
try testing.expectEqual(try std.unicode.utf8Decode("€"), rune);
|
||
}
|
||
|
||
test "print: utf8 4 byte" {
|
||
var p = init();
|
||
var a: [3]?Action = undefined;
|
||
for ("𐍈") |c| a = p.next(c);
|
||
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .print);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const rune = a[0].?.print;
|
||
try testing.expectEqual(try std.unicode.utf8Decode("𐍈"), rune);
|
||
}
|
||
|
||
test "print: utf8 invalid" {
|
||
var p = init();
|
||
var a: [3]?Action = undefined;
|
||
for ("\xC3\x28") |c| a = p.next(c);
|
||
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .print);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
|
||
const rune = a[0].?.print;
|
||
try testing.expectEqual(try std.unicode.utf8Decode("<EFBFBD>"), rune);
|
||
}
|
||
|
||
test "csi followed by utf8" {
|
||
var p = init();
|
||
const prefix = &[_]u8{
|
||
// CSI sequence
|
||
0x1b, 0x5b, 0x3f, 0x32, 0x30, 0x30, 0x34, 0x64, '\r',
|
||
|
||
// UTF8 prefix (not complete)
|
||
0xe2,
|
||
};
|
||
for (prefix) |char| {
|
||
_ = p.next(char);
|
||
}
|
||
|
||
{
|
||
const a = p.next(0x94);
|
||
try testing.expect(p.state == .utf8);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
|
||
{
|
||
const a = p.next(0x94);
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0].? == .print);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
}
|
||
|
||
test "csi: too many params" {
|
||
var p = init();
|
||
_ = p.next(0x1B);
|
||
_ = p.next('[');
|
||
for (0..100) |_| {
|
||
_ = p.next('1');
|
||
_ = p.next(';');
|
||
}
|
||
_ = p.next('1');
|
||
|
||
{
|
||
const a = p.next('C');
|
||
try testing.expect(p.state == .ground);
|
||
try testing.expect(a[0] == null);
|
||
try testing.expect(a[1] == null);
|
||
try testing.expect(a[2] == null);
|
||
}
|
||
}
|