lean2/src/frontends/lean/server.h
Leonardo de Moura 1a725574b1 refactor(frontends/lean): add 'server' module as a replacement for 'interactive'
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-06 18:07:04 -07:00

39 lines
1.1 KiB
C++

/*
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include <vector>
#include <string>
#include "frontends/lean/parser.h"
#include "frontends/lean/info_manager.h"
namespace lean {
/**
\brief Class for managing an input stream used to communicate with
external processes.
*/
class server {
std::vector<std::string> m_lines;
snapshot_vector m_snapshots;
info_manager m_info;
environment m_env;
options m_options;
io_state m_ios;
unsigned m_num_threads;
snapshot m_empty_snapshot;
std::string m_fname;
void read_file(std::string const & fname);
void replace_line(unsigned linenum, std::string const & new_line);
void show_info(unsigned linenum);
void process_from(unsigned linenum);
unsigned find(unsigned linenum);
public:
server(environment const & env, io_state const & ios, unsigned num_threads = 1);
bool operator()(std::istream & in);
};
}