mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
32 lines
757 B
C++
32 lines
757 B
C++
#pragma once
|
|
|
|
#include "LineReader.h"
|
|
|
|
#include <replxx.hxx>
|
|
|
|
|
|
class ReplxxLineReader : public LineReader
|
|
{
|
|
public:
|
|
ReplxxLineReader(
|
|
const Suggest & suggest,
|
|
const String & history_file_path,
|
|
bool multiline,
|
|
Patterns extenders_,
|
|
Patterns delimiters_,
|
|
replxx::Replxx::highlighter_callback_t highlighter_);
|
|
~ReplxxLineReader() override;
|
|
|
|
void enableBracketedPaste() override;
|
|
|
|
private:
|
|
InputStatus readOneLine(const String & prompt) override;
|
|
void addToHistory(const String & line) override;
|
|
|
|
replxx::Replxx rx;
|
|
replxx::Replxx::highlighter_callback_t highlighter;
|
|
|
|
// used to call flock() to synchronize multiple clients using same history file
|
|
int history_file_fd = -1;
|
|
};
|