terminal code eaters: implement OSC

This is a useful piece of functionality to being able to eat URL
hyperlinks, for instance, which is a bug that Lix has while dealing with
terminal output today.

Change-Id: I77b2de107b2525cad7ea5dea28bfba2cc78b9e6d
This commit is contained in:
Jade Lovelace
2024-12-10 15:43:31 -08:00
parent faf00ad022
commit 5530de4673
4 changed files with 74 additions and 3 deletions
@@ -27,7 +27,8 @@ void TerminalCodeEater::feed(char c, std::function<void(char)> on_char)
// Just eat \r, since it is part of clearing a line
case '\r':
return;
default: break;
default:
break;
}
if constexpr (DEBUG_EATER) {
std::cerr << "eater uneat" << MaybeHexEscapedChar{c} << "\n";
@@ -40,6 +41,9 @@ void TerminalCodeEater::feed(char c, std::function<void(char)> on_char)
case '[':
transition(State::InCSIParams);
return;
case ']':
transition(State::InOSCParams);
return;
// FIXME(jade): whatever this was, we do not know how to delimit it, so
// we just eat the next character and keep going
default:
@@ -79,6 +83,30 @@ void TerminalCodeEater::feed(char c, std::function<void(char)> on_char)
return;
}
break;
// An OSC is OSC [\x20-\x7e]* ST
// where OSC is \x1b ] and ST is \x1b \.
case State::InOSCParams:
if (c == '\e') {
// first part of ST
transition(State::InOSCST);
} else if (c == '\a') {
// OSC sequences can be ended by BEL on old xterms
transition(State::ExpectESC);
} else if (c < 0x20 or c > 0x7e) {
assert(false && "Corrupt OSC sequence");
}
// either way, eat it
return;
case State::InOSCST:
// ST ends by \.
if (c == '\\') {
transition(State::ExpectESC);
} else if (c < 0x20 || c == 0x7f) {
assert(false && "Corrupt OSC sequence, in ST");
} else {
transition(State::InOSCParams);
}
return;
}
}