aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include/readline_buffer.h
blob: 28a153414b2069575dbd5d13c7997163ffa92a73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#pragma once

#include <streambuf>
#include <sstream>
#include <iostream>
#include <vector>
#include <algorithm>

namespace rdln
{
  class readline_buffer : public std::stringbuf
  {
  public:
    readline_buffer();
    void start();
    void stop();
    int process();
    bool is_running() const
    {
      return m_cout_buf != NULL;
    }
    void get_line(std::string& line) const;
    void set_prompt(const std::string& prompt);
    static void add_completion(const std::string& command);
    static const std::vector<std::string>& get_completions();
    
  protected:
    virtual int sync();
    
  private:
    std::streambuf* m_cout_buf;
    static std::vector<std::string>& completion_commands();
  };
  
  class suspend_readline
  {
  public:
    suspend_readline();
    ~suspend_readline();
  private:
    readline_buffer* m_buffer;
    bool m_restart;
  };
}