2020-10-25 07:57:56 +08:00
|
|
|
#include "ftxui/component/terminal_input_parser.hpp"
|
|
|
|
|
|
|
|
namespace ftxui {
|
|
|
|
|
|
|
|
TerminalInputParser::TerminalInputParser(Sender<Event> out)
|
|
|
|
: out_(std::move(out)) {}
|
|
|
|
|
|
|
|
void TerminalInputParser::Timeout(int time) {
|
|
|
|
timeout_ += time;
|
|
|
|
if (timeout_ < 50)
|
|
|
|
return;
|
|
|
|
timeout_ = 0;
|
|
|
|
if (pending_.size())
|
|
|
|
Send(SPECIAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TerminalInputParser::Add(char c) {
|
|
|
|
pending_ += c;
|
|
|
|
timeout_ = 0;
|
|
|
|
position_ = -1;
|
|
|
|
Send(Parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char TerminalInputParser::Current() {
|
|
|
|
return pending_[position_];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TerminalInputParser::Eat() {
|
|
|
|
position_++;
|
|
|
|
return position_ < (int)pending_.size();
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
void TerminalInputParser::Send(TerminalInputParser::Output output) {
|
|
|
|
switch (output.type) {
|
2020-10-25 07:57:56 +08:00
|
|
|
case UNCOMPLETED:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case DROP:
|
2021-04-25 21:22:38 +08:00
|
|
|
pending_.clear();
|
|
|
|
return;
|
2020-10-25 07:57:56 +08:00
|
|
|
|
|
|
|
case CHARACTER:
|
|
|
|
out_->Send(Event::Character(std::move(pending_)));
|
2021-04-25 22:58:16 +08:00
|
|
|
pending_.clear();
|
2021-04-25 21:22:38 +08:00
|
|
|
return;
|
2020-10-25 07:57:56 +08:00
|
|
|
|
|
|
|
case SPECIAL:
|
|
|
|
out_->Send(Event::Special(std::move(pending_)));
|
2021-04-25 22:58:16 +08:00
|
|
|
pending_.clear();
|
2021-04-25 21:22:38 +08:00
|
|
|
return;
|
2021-04-19 00:32:38 +08:00
|
|
|
|
2021-04-25 21:22:38 +08:00
|
|
|
case MOUSE:
|
|
|
|
out_->Send(Event::Mouse(std::move(pending_), output.mouse));
|
2021-04-25 22:58:16 +08:00
|
|
|
pending_.clear();
|
2021-04-25 21:22:38 +08:00
|
|
|
return;
|
2021-04-25 00:16:13 +08:00
|
|
|
|
|
|
|
case CURSOR_REPORTING:
|
2021-04-25 21:22:38 +08:00
|
|
|
out_->Send(Event::CursorReporting(std::move(pending_), output.cursor.x,
|
|
|
|
output.cursor.y));
|
2021-04-25 22:58:16 +08:00
|
|
|
pending_.clear();
|
2021-04-25 21:22:38 +08:00
|
|
|
return;
|
2020-10-25 07:57:56 +08:00
|
|
|
}
|
2021-04-25 21:22:38 +08:00
|
|
|
// NOT_REACHED().
|
|
|
|
|
2020-10-25 07:57:56 +08:00
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::Parse() {
|
2020-10-25 07:57:56 +08:00
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
|
|
|
|
switch (Current()) {
|
|
|
|
case 24: // CAN
|
|
|
|
case 26: // SUB
|
|
|
|
return DROP;
|
|
|
|
|
|
|
|
case '\x1B':
|
|
|
|
return ParseESC();
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Current() < 32) // C0
|
|
|
|
return SPECIAL;
|
|
|
|
|
|
|
|
if (Current() == 127) // Delete
|
|
|
|
return SPECIAL;
|
|
|
|
|
|
|
|
return ParseUTF8();
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseUTF8() {
|
2020-10-25 07:57:56 +08:00
|
|
|
unsigned char head = static_cast<unsigned char>(Current());
|
|
|
|
for (int i = 0; i < 3; ++i, head <<= 1) {
|
|
|
|
if ((head & 0b11000000) != 0b11000000)
|
|
|
|
break;
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
}
|
|
|
|
return CHARACTER;
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseESC() {
|
2020-10-25 07:57:56 +08:00
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
switch (Current()) {
|
|
|
|
case 'P':
|
|
|
|
return ParseDCS();
|
|
|
|
case '[':
|
|
|
|
return ParseCSI();
|
|
|
|
case ']':
|
|
|
|
return ParseOSC();
|
|
|
|
default:
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
return SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseDCS() {
|
2020-10-25 07:57:56 +08:00
|
|
|
// Parse until the string terminator ST.
|
|
|
|
while (1) {
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
|
|
|
|
if (Current() != '\x1B')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
|
|
|
|
if (Current() != '\\')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseCSI() {
|
2021-04-25 21:22:38 +08:00
|
|
|
bool altered = false;
|
2021-04-25 22:58:16 +08:00
|
|
|
int argument = 0;
|
2021-04-19 00:32:38 +08:00
|
|
|
std::vector<int> arguments;
|
2020-10-25 07:57:56 +08:00
|
|
|
while (true) {
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
|
2021-04-25 21:22:38 +08:00
|
|
|
if (Current() == '<') {
|
|
|
|
altered = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
if (Current() >= '0' && Current() <= '9') {
|
|
|
|
argument *= 10;
|
|
|
|
argument += int(Current() - '0');
|
2020-10-25 07:57:56 +08:00
|
|
|
continue;
|
2021-04-19 00:32:38 +08:00
|
|
|
}
|
2020-10-25 07:57:56 +08:00
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
if (Current() == ';') {
|
|
|
|
arguments.push_back(argument);
|
|
|
|
argument = 0;
|
2020-10-25 07:57:56 +08:00
|
|
|
continue;
|
2021-04-19 00:32:38 +08:00
|
|
|
}
|
|
|
|
|
2021-04-25 00:16:13 +08:00
|
|
|
if (Current() >= ' ' && Current() <= '~' && Current() != '<') {
|
2021-04-19 00:32:38 +08:00
|
|
|
arguments.push_back(argument);
|
|
|
|
argument = 0;
|
|
|
|
switch (Current()) {
|
|
|
|
case 'M':
|
2021-04-25 21:22:38 +08:00
|
|
|
return ParseMouse(altered, true, std::move(arguments));
|
|
|
|
case 'm':
|
|
|
|
return ParseMouse(altered, false, std::move(arguments));
|
2021-04-25 00:16:13 +08:00
|
|
|
case 'R':
|
|
|
|
return ParseCursorReporting(std::move(arguments));
|
2021-04-19 00:32:38 +08:00
|
|
|
default:
|
|
|
|
return SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
2020-10-25 07:57:56 +08:00
|
|
|
|
|
|
|
// Invalid ESC in CSI.
|
|
|
|
if (Current() == '\x1B')
|
|
|
|
return SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:32:38 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseOSC() {
|
2020-10-25 07:57:56 +08:00
|
|
|
// Parse until the string terminator ST.
|
|
|
|
while (true) {
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
if (Current() != '\x1B')
|
|
|
|
continue;
|
|
|
|
if (!Eat())
|
|
|
|
return UNCOMPLETED;
|
|
|
|
if (Current() != '\\')
|
|
|
|
continue;
|
|
|
|
return SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 00:32:38 +08:00
|
|
|
|
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseMouse(
|
2021-04-25 21:22:38 +08:00
|
|
|
bool altered,
|
|
|
|
bool pressed,
|
2021-04-19 00:32:38 +08:00
|
|
|
std::vector<int> arguments) {
|
|
|
|
if (arguments.size() != 3)
|
|
|
|
return SPECIAL;
|
2021-04-25 00:16:13 +08:00
|
|
|
|
2021-04-25 21:22:38 +08:00
|
|
|
(void)altered;
|
|
|
|
|
|
|
|
Output output(MOUSE);
|
|
|
|
output.mouse.button = Mouse::Button((arguments[0] & 3) + //
|
|
|
|
((arguments[0] & 64) >> 4));
|
|
|
|
output.mouse.motion = Mouse::Motion(pressed);
|
2021-04-25 22:58:16 +08:00
|
|
|
output.mouse.shift = bool(arguments[0] & 4);
|
|
|
|
output.mouse.meta = bool(arguments[0] & 8);
|
2021-04-25 21:22:38 +08:00
|
|
|
output.mouse.x = arguments[1];
|
|
|
|
output.mouse.y = arguments[2];
|
|
|
|
return output;
|
2021-04-19 00:32:38 +08:00
|
|
|
}
|
|
|
|
|
2021-04-25 00:16:13 +08:00
|
|
|
TerminalInputParser::Output TerminalInputParser::ParseCursorReporting(
|
|
|
|
std::vector<int> arguments) {
|
|
|
|
if (arguments.size() != 2)
|
|
|
|
return SPECIAL;
|
2021-04-25 21:22:38 +08:00
|
|
|
Output output(CURSOR_REPORTING);
|
|
|
|
output.cursor.y = arguments[0];
|
|
|
|
output.cursor.x = arguments[1];
|
|
|
|
return output;
|
2021-04-25 00:16:13 +08:00
|
|
|
}
|
|
|
|
|
2020-10-25 07:57:56 +08:00
|
|
|
} // namespace ftxui
|