ClickHouse/base/common/LineReader.h

64 lines
2.0 KiB
C++
Raw Normal View History

#pragma once
#include <common/Types.h>
2020-01-10 13:26:23 +00:00
#include <atomic>
2020-01-01 19:22:57 +00:00
#include <vector>
class LineReader
{
public:
2020-02-25 08:30:11 +00:00
struct Suggest
2020-01-01 19:22:57 +00:00
{
using Words = std::vector<std::string>;
using WordsRange = std::pair<Words::const_iterator, Words::const_iterator>;
Words words;
std::atomic<bool> ready{false};
/// Get iterators for the matched range of words if any.
WordsRange getCompletions(const String & prefix, size_t prefix_length) const;
2020-02-25 08:30:11 +00:00
/// case sensitive suggestion
bool case_insensitive = false;
2020-01-01 19:22:57 +00:00
};
2020-01-23 08:18:19 +00:00
LineReader(const String & history_file_path, char extender, char delimiter = 0); /// if delimiter != 0, then it's multiline mode
virtual ~LineReader() {}
/// Reads the whole line until delimiter (in multiline mode) or until the last line without extender.
/// If resulting line is empty, it means the user interrupted the input.
/// Non-empty line is appended to history - without duplication.
/// Typical delimiter is ';' (semicolon) and typical extender is '\' (backslash).
String readLine(const String & first_prompt, const String & second_prompt);
2020-02-25 08:30:11 +00:00
/// When bracketed paste mode is set, pasted text is bracketed with control sequences so
/// that the program can differentiate pasted text from typed-in text. This helps
/// clickhouse-client so that without -m flag, one can still paste multiline queries, and
/// possibly get better pasting performance. See https://cirw.in/blog/bracketed-paste for
/// more details.
virtual void enableBracketedPaste() {}
2020-01-23 08:18:19 +00:00
protected:
2019-12-27 13:11:29 +00:00
enum InputStatus
{
ABORT = 0,
RESET_LINE,
INPUT_LINE,
};
const String history_file_path;
2020-01-23 08:18:19 +00:00
static constexpr char word_break_characters[] = " \t\n\r\"\\'`@$><=;|&{(.";
String input;
private:
const char extender;
const char delimiter;
2020-01-23 08:18:19 +00:00
String prev_line;
2020-01-23 08:18:19 +00:00
virtual InputStatus readOneLine(const String & prompt);
virtual void addToHistory(const String &) {}
};