/*********************************************************************** * fkeyboard.cpp - Read keyboard events * * * * This file is part of the Final Cut widget toolkit * * * * Copyright 2018-2019 Markus Gans * * * * The Final Cut is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public License * * as published by the Free Software Foundation; either version 3 of * * the License, or (at your option) any later version. * * * * The Final Cut is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this program. If not, see * * . * ***********************************************************************/ #include #if defined(__CYGWIN__) #include // need for FD_ZERO, FD_SET, FD_CLR, ... #endif #include #include "final/fkeyboard.h" #include "final/fkey_map.h" #include "final/fobject.h" #include "final/fterm.h" #include "final/ftermios.h" #if defined(__linux__) #include "final/ftermlinux.h" #endif namespace finalcut { // static class attributes uInt64 FKeyboard::key_timeout{100000}; // 100 ms (default timeout for keypress) struct timeval FKeyboard::time_keypressed{}; #if defined(__linux__) FTermLinux* FKeyboard::linux{nullptr}; #endif //---------------------------------------------------------------------- // class FKeyboard //---------------------------------------------------------------------- // constructors and destructor //---------------------------------------------------------------------- FKeyboard::FKeyboard() { // Initialize keyboard values time_keypressed.tv_sec = 0; time_keypressed.tv_usec = 0; // Get the stdin file status flags stdin_status_flags = fcntl(FTermios::getStdIn(), F_GETFL); if ( stdin_status_flags == -1 ) std::abort(); } //---------------------------------------------------------------------- FKeyboard::~FKeyboard() // destructor { } // public methods of FKeyboard //---------------------------------------------------------------------- void FKeyboard::fetchKeyCode() { parseKeyBuffer(); } //---------------------------------------------------------------------- const FString FKeyboard::getKeyName (FKey keynum) { for (std::size_t i{0}; fc::FkeyName[i].string[0] != 0; i++) if ( fc::FkeyName[i].num && fc::FkeyName[i].num == keynum ) return FString(fc::FkeyName[i].string); if ( keynum > 32 && keynum < 127 ) return FString(char(keynum)); return FString(""); } //---------------------------------------------------------------------- void FKeyboard::setTermcapMap (fc::fkeymap* keymap) { key_map = keymap; } //---------------------------------------------------------------------- void FKeyboard::init() { #if defined(__linux__) linux = FTerm::getFTermLinux(); #endif } //---------------------------------------------------------------------- bool& FKeyboard::unprocessedInput() { return input_data_pending; } //---------------------------------------------------------------------- bool FKeyboard::isKeyPressed() { fd_set ifds{}; struct timeval tv{}; int stdin_no = FTermios::getStdIn(); FD_ZERO(&ifds); FD_SET(stdin_no, &ifds); tv.tv_sec = 0; tv.tv_usec = 100000; // 100 ms int result = select (stdin_no + 1, &ifds, 0, 0, &tv); if ( result > 0 && FD_ISSET(stdin_no, &ifds) ) FD_CLR (stdin_no, &ifds); return ( result > 0 ); } //---------------------------------------------------------------------- void FKeyboard::clearKeyBuffer() { // Empty the buffer fifo_offset = 0; key = 0; std::fill_n (fifo_buf, FIFO_BUF_SIZE, '\0'); fifo_in_use = false; } //---------------------------------------------------------------------- void FKeyboard::clearKeyBufferOnTimeout() { // Empty the buffer on timeout if ( fifo_in_use && isKeypressTimeout() ) clearKeyBuffer(); } //---------------------------------------------------------------------- void FKeyboard::escapeKeyHandling() { // Send an escape key press event if there is only one 0x1b // in the buffer and the timeout is reached if ( fifo_in_use && fifo_offset == 1 && fifo_buf[0] == 0x1b && fifo_buf[1] == 0x00 && isKeypressTimeout() ) { fifo_offset = 0; fifo_buf[0] = 0x00; fifo_in_use = false; input_data_pending = false; escapeKeyPressed(); } // Handling of keys that are substrings of other keys substringKeyHandling(); } // private methods of FKeyboard //---------------------------------------------------------------------- inline FKey FKeyboard::getMouseProtocolKey() { // Looking for mouse string in the key buffer if ( ! mouse_support ) return NOT_SET; std::size_t buf_len = std::strlen(fifo_buf); // x11 mouse tracking if ( buf_len >= 6 && fifo_buf[1] == '[' && fifo_buf[2] == 'M' ) return fc::Fkey_mouse; // SGR mouse tracking if ( fifo_buf[1] == '[' && fifo_buf[2] == '<' && buf_len >= 9 && (fifo_buf[buf_len - 1] == 'M' || fifo_buf[buf_len - 1] == 'm') ) return fc::Fkey_extended_mouse; // urxvt mouse tracking if ( fifo_buf[1] == '[' && fifo_buf[2] >= '1' && fifo_buf[2] <= '9' && fifo_buf[3] >= '0' && fifo_buf[3] <= '9' && buf_len >= 9 && fifo_buf[buf_len - 1] == 'M' ) return fc::Fkey_urxvt_mouse; return NOT_SET; } //---------------------------------------------------------------------- inline FKey FKeyboard::getTermcapKey() { // Looking for termcap key strings in the buffer assert ( FIFO_BUF_SIZE > 0 ); if ( ! key_map ) return NOT_SET; for (std::size_t i{0}; key_map[i].tname[0] != 0; i++) { char* k = key_map[i].string; std::size_t len = ( k ) ? std::strlen(k) : 0; if ( k && std::strncmp(k, fifo_buf, len) == 0 ) // found { std::size_t n{}; for (n = len; n < FIFO_BUF_SIZE; n++) // Remove founded entry fifo_buf[n - len] = fifo_buf[n]; for (n = n - len; n < FIFO_BUF_SIZE; n++) // Fill rest with '\0' fifo_buf[n] = '\0'; input_data_pending = bool(fifo_buf[0] != '\0'); return fc::Fkey[i].num; } } return NOT_SET; } //---------------------------------------------------------------------- inline FKey FKeyboard::getMetaKey() { // Looking for meta key strings in the buffer assert ( FIFO_BUF_SIZE > 0 ); for (std::size_t i{0}; fc::Fmetakey[i].string[0] != 0; i++) { char* kmeta = fc::Fmetakey[i].string; // The string is never null std::size_t len = std::strlen(kmeta); if ( std::strncmp(kmeta, fifo_buf, len) == 0 ) // found { std::size_t n{}; if ( len == 2 && ( fifo_buf[1] == 'O' || fifo_buf[1] == '[' || fifo_buf[1] == ']' ) ) { if ( ! isKeypressTimeout() ) return fc::need_more_data; } for (n = len; n < FIFO_BUF_SIZE; n++) // Remove founded entry fifo_buf[n - len] = fifo_buf[n]; for (n = n - len; n < FIFO_BUF_SIZE; n++) // Fill rest with '\0' fifo_buf[n] = '\0'; input_data_pending = bool(fifo_buf[0] != '\0'); return fc::Fmetakey[i].num; } } return NOT_SET; } //---------------------------------------------------------------------- inline FKey FKeyboard::getSingleKey() { // Looking for single key code in the buffer std::size_t n{}; std::size_t len{1}; uChar firstchar = uChar(fifo_buf[0]); FKey keycode{}; // Look for a utf-8 character if ( utf8_input && (firstchar & 0xc0) == 0xc0 ) { char utf8char[5]{}; // Init array with '\0' if ( (firstchar & 0xe0) == 0xc0 ) len = 2; else if ( (firstchar & 0xf0) == 0xe0 ) len = 3; else if ( (firstchar & 0xf8) == 0xf0 ) len = 4; for (std::size_t i{0}; i < len ; i++) utf8char[i] = char(fifo_buf[i] & 0xff); keycode = UTF8decode(utf8char); } else keycode = uChar(fifo_buf[0] & 0xff); for (n = len; n < FIFO_BUF_SIZE; n++) // Remove the key from the buffer front fifo_buf[n - len] = fifo_buf[n]; for (n = n - len; n < FIFO_BUF_SIZE; n++) // Fill the rest with '\0' bytes fifo_buf[n] = '\0'; input_data_pending = bool(fifo_buf[0] != '\0'); if ( keycode == 0 ) // Ctrl+Space or Ctrl+@ keycode = fc::Fckey_space; return FKey(keycode == 127 ? fc::Fkey_backspace : keycode); } //---------------------------------------------------------------------- bool FKeyboard::setNonBlockingInput (bool enable) { if ( enable == non_blocking_stdin ) return non_blocking_stdin; if ( enable ) // make stdin non-blocking { stdin_status_flags |= O_NONBLOCK; if ( fcntl (FTermios::getStdIn(), F_SETFL, stdin_status_flags) != -1 ) non_blocking_stdin = true; } else { stdin_status_flags &= ~O_NONBLOCK; if ( fcntl (FTermios::getStdIn(), F_SETFL, stdin_status_flags) != -1 ) non_blocking_stdin = false; } return non_blocking_stdin; } //---------------------------------------------------------------------- bool FKeyboard::isKeypressTimeout() { return FObject::isTimeout (&time_keypressed, key_timeout); } //---------------------------------------------------------------------- FKey FKeyboard::UTF8decode (const char utf8[]) { FKey ucs{0}; // Universal coded character constexpr std::size_t max = 4; std::size_t len = std::strlen(utf8); if ( len > max ) len = max; for (std::size_t i{0}; i < len; ++i) { uChar ch = uChar(utf8[i]); if ( (ch & 0xc0) == 0x80 ) { // byte 2..4 = 10xxxxxx ucs = (ucs << 6) | (ch & 0x3f); } else if ( ch < 128 ) { // byte 1 = 0xxxxxxx (1 byte mapping) ucs = ch & 0xff; } else if ( (ch & 0xe0) == 0xc0 ) { // byte 1 = 110xxxxx (2 byte mapping) ucs = ch & 0x1f; } else if ( (ch & 0xf0) == 0xe0 ) { // byte 1 = 1110xxxx (3 byte mapping) ucs = ch & 0x0f; } else if ( (ch & 0xf8) == 0xf0 ) { // byte 1 = 11110xxx (4 byte mapping) ucs = ch & 0x07; } else { // error ucs = NOT_SET; } } return ucs; } //---------------------------------------------------------------------- inline ssize_t FKeyboard::readKey() { setNonBlockingInput(); ssize_t bytes = read(FTermios::getStdIn(), &read_buf, READ_BUF_SIZE - 1); unsetNonBlockingInput(); return bytes; } //---------------------------------------------------------------------- void FKeyboard::parseKeyBuffer() { ssize_t bytesread{}; FObject::getCurrentTime (&time_keypressed); while ( (bytesread = readKey()) > 0 ) { if ( bytesread + fifo_offset <= int(FIFO_BUF_SIZE) ) { for (std::size_t i{0}; i < std::size_t(bytesread); i++) { fifo_buf[fifo_offset] = read_buf[i]; fifo_offset++; } fifo_in_use = true; } // Read the rest from the fifo buffer while ( ! isKeypressTimeout() && fifo_offset > 0 && key != fc::need_more_data ) { key = parseKeyString(); key = keyCorrection(key); if ( key != fc::need_more_data ) keyPressed(); fifo_offset = int(std::strlen(fifo_buf)); if ( key == fc::Fkey_mouse || key == fc::Fkey_extended_mouse || key == fc::Fkey_urxvt_mouse ) break; } // Send key up event if ( key > 0 ) keyReleased(); key = 0; } std::fill_n (read_buf, READ_BUF_SIZE, '\0'); } //---------------------------------------------------------------------- FKey FKeyboard::parseKeyString() { uChar firstchar = uChar(fifo_buf[0]); if ( firstchar == ESC[0] ) { FKey keycode = getMouseProtocolKey(); if ( keycode != NOT_SET ) return keycode; keycode = getTermcapKey(); if ( keycode != NOT_SET ) return keycode; keycode = getMetaKey(); if ( keycode != NOT_SET ) return keycode; if ( ! isKeypressTimeout() ) return fc::need_more_data; } return getSingleKey(); } //---------------------------------------------------------------------- FKey FKeyboard::keyCorrection (const FKey& keycode) { FKey key_correction; #if defined(__linux__) if ( linux ) key_correction = linux->modifierKeyCorrection(keycode); else key_correction = keycode; #else key_correction = keycode; #endif return key_correction; } //---------------------------------------------------------------------- void FKeyboard::substringKeyHandling() { // Some keys (Meta-O, Meta-[, Meta-]) used substrings // of other keys and are only processed after a timeout if ( fifo_in_use && fifo_offset == 2 && fifo_buf[0] == 0x1b && (fifo_buf[1] == 'O' || fifo_buf[1] == '[' || fifo_buf[1] == ']') && fifo_buf[2] == '\0' && isKeypressTimeout() ) { fifo_offset = 0; fifo_buf[0] = 0x00; fifo_in_use = false; input_data_pending = false; if ( fifo_buf[1] == 'O' ) key = fc::Fmkey_O; else if ( fifo_buf[1] == '[' ) key = fc::Fmkey_left_square_bracket; else key = fc::Fmkey_right_square_bracket; keyPressed(); keyReleased(); } } //---------------------------------------------------------------------- void FKeyboard::keyPressed() { keypressed_cmd.execute(); } //---------------------------------------------------------------------- void FKeyboard::keyReleased() { keyreleased_cmd.execute(); } //---------------------------------------------------------------------- void FKeyboard::escapeKeyPressed() { escape_key_cmd.execute(); } } // namespace finalcut