ClickHouse/libs/libcommon/src/LineReader.cpp

168 lines
4.1 KiB
C++
Raw Normal View History

#include <common/LineReader.h>
2020-01-14 14:53:53 +00:00
#ifdef USE_REPLXX
# include <replxx.hxx>
#endif
#include <iostream>
2020-01-18 15:23:59 +00:00
#include <string_view>
#include <port/unistd.h>
2020-01-10 16:19:22 +00:00
#include <string.h>
2020-01-18 15:23:59 +00:00
namespace
{
/// Trim ending whitespace inplace
void trim(String & s)
{
s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) { return !std::isspace(ch); }).base(), s.end());
}
/// Check if multi-line query is inserted from the paste buffer.
/// Allows delaying the start of query execution until the entirety of query is inserted.
bool hasInputData()
{
timeval timeout = {0, 0};
fd_set fds;
FD_ZERO(&fds);
FD_SET(STDIN_FILENO, &fds);
return select(1, &fds, nullptr, nullptr, &timeout) == 1;
}
2020-01-18 15:23:59 +00:00
constexpr char word_break_characters[] = " \t\n\r\"\\'`@$><=;|&{(.";
}
2020-01-01 19:22:57 +00:00
LineReader::Suggest::WordsRange LineReader::Suggest::getCompletions(const String & prefix, size_t prefix_length) const
{
if (!ready)
return std::make_pair(words.end(), words.end());
2020-01-18 15:23:59 +00:00
std::string_view last_word;
auto last_word_pos = prefix.find_last_of(word_break_characters);
if (std::string::npos == last_word_pos)
last_word = prefix;
else
last_word = std::string_view(prefix).substr(last_word_pos + 1, std::string::npos);
/// last_word can be empty.
2020-01-01 19:22:57 +00:00
return std::equal_range(
2020-01-18 15:23:59 +00:00
words.begin(), words.end(), last_word, [prefix_length](std::string_view s, std::string_view prefix_searched)
2020-01-01 19:22:57 +00:00
{
2020-01-18 15:23:59 +00:00
return strncmp(s.data(), prefix_searched.data(), prefix_length) < 0;
2020-01-01 19:22:57 +00:00
});
}
LineReader::LineReader(const Suggest * suggest, const String & history_file_path_, char extender_, char delimiter_)
: history_file_path(history_file_path_), extender(extender_), delimiter(delimiter_)
{
#ifdef USE_REPLXX
2020-01-14 14:53:53 +00:00
impl = new replxx::Replxx;
auto & rx = *(replxx::Replxx*)(impl);
if (!history_file_path.empty())
rx.history_load(history_file_path);
2020-01-01 19:22:57 +00:00
auto callback = [suggest] (const String & context, size_t context_size)
{
auto range = suggest->getCompletions(context, context_size);
return replxx::Replxx::completions_t(range.first, range.second);
};
if (suggest)
{
rx.set_completion_callback(callback);
rx.set_complete_on_empty(false);
2020-01-18 15:23:59 +00:00
rx.set_word_break_characters(word_break_characters);
2020-01-01 19:22:57 +00:00
}
#endif
/// FIXME: check extender != delimiter
}
LineReader::~LineReader()
{
#ifdef USE_REPLXX
2020-01-14 14:53:53 +00:00
auto & rx = *(replxx::Replxx*)(impl);
if (!history_file_path.empty())
rx.history_save(history_file_path);
2020-01-14 14:53:53 +00:00
delete (replxx::Replxx *)impl;
#endif
}
String LineReader::readLine(const String & first_prompt, const String & second_prompt)
{
String line;
bool is_multiline = false;
2019-12-27 13:11:29 +00:00
while (auto status = readOneLine(is_multiline ? second_prompt : first_prompt))
{
2019-12-27 13:11:29 +00:00
if (status == RESET_LINE)
{
line.clear();
is_multiline = false;
continue;
}
if (input.empty())
continue;
is_multiline = (input.back() == extender) || (delimiter && input.back() != delimiter) || hasInputData();
if (input.back() == extender)
{
input = input.substr(0, input.size() - 1);
trim(input);
if (input.empty())
continue;
}
line += (line.empty() ? "" : " ") + input;
if (!is_multiline)
{
if (line != prev_line)
{
addToHistory(line);
prev_line = line;
}
return line;
}
}
return {};
}
2019-12-27 13:11:29 +00:00
LineReader::InputStatus LineReader::readOneLine(const String & prompt)
{
2019-12-27 13:11:29 +00:00
input.clear();
#ifdef USE_REPLXX
2020-01-14 14:53:53 +00:00
auto & rx = *(replxx::Replxx*)(impl);
const char* cinput = rx.input(prompt);
2019-12-27 13:11:29 +00:00
if (cinput == nullptr)
return (errno != EAGAIN) ? ABORT : RESET_LINE;
input = cinput;
#else
std::cout << prompt;
std::getline(std::cin, input);
if (!std::cin.good())
2019-12-27 13:11:29 +00:00
return ABORT;
#endif
2019-12-27 13:11:29 +00:00
trim(input);
return INPUT_LINE;
}
void LineReader::addToHistory(const String & line)
{
#ifdef USE_REPLXX
2020-01-14 14:53:53 +00:00
auto & rx = *(replxx::Replxx*)(impl);
rx.history_add(line);
#endif
}