aboutsummaryrefslogblamecommitdiff
path: root/contrib/epee/include/readline_buffer.h
blob: 916d14f012df976b03254da44502e9f7f79f7b08 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                               
                           


                                
                                           



















                                               
#pragma once

#include <streambuf>
#include <sstream>
#include <iostream>

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);
    
  protected:
    virtual int sync();
    
  private:
    std::streambuf* m_cout_buf;
  };
  
  class suspend_readline
  {
  public:
    suspend_readline();
    ~suspend_readline();
  private:
    readline_buffer* m_buffer;
    bool m_restart;
  };
}