bac91929b7
N-th try. I think now windows will be happy. git-svn-id: http://root.cern.ch/svn/root/trunk@48322 27541ba8-7e3a-0410-8455-c3a389f83636
99 lines
2.9 KiB
C++
99 lines
2.9 KiB
C++
//------------------------------------------------------------------------------
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// version: $Id$
|
|
// author: Axel Naumann <axel@cern.ch>
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include "cling/UserInterface/UserInterface.h"
|
|
|
|
#include "cling/MetaProcessor/MetaProcessor.h"
|
|
#include "textinput/TextInput.h"
|
|
#include "textinput/StreamReader.h"
|
|
#include "textinput/TerminalDisplay.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/Support/PathV1.h"
|
|
|
|
// Fragment copied from LLVM's raw_ostream.cpp
|
|
#if defined(_MSC_VER)
|
|
#ifndef STDIN_FILENO
|
|
# define STDIN_FILENO 0
|
|
#endif
|
|
#ifndef STDOUT_FILENO
|
|
# define STDOUT_FILENO 1
|
|
#endif
|
|
#ifndef STDERR_FILENO
|
|
# define STDERR_FILENO 2
|
|
#endif
|
|
#else
|
|
//#if defined(HAVE_UNISTD_H)
|
|
# include <unistd.h>
|
|
//#endif
|
|
#endif
|
|
|
|
namespace cling {
|
|
UserInterface::UserInterface(Interpreter& interp) {
|
|
// We need stream that doesn't close its file descriptor, thus we are not
|
|
// using llvm::outs. Keeping file descriptor open we will be able to use
|
|
// the results in pipes (Savannah #99234).
|
|
static llvm::raw_fd_ostream m_MPOuts (STDOUT_FILENO, /*ShouldClose*/false);
|
|
m_MetaProcessor.reset(new MetaProcessor(interp, m_MPOuts));
|
|
}
|
|
|
|
UserInterface::~UserInterface() {}
|
|
|
|
void UserInterface::runInteractively(bool nologo /* = false */) {
|
|
if (!nologo) {
|
|
PrintLogo();
|
|
}
|
|
|
|
// History file is $HOME/.cling_history
|
|
static const char* histfile = ".cling_history";
|
|
llvm::sys::Path histfilePath = llvm::sys::Path::GetUserHomeDirectory();
|
|
histfilePath.appendComponent(histfile);
|
|
|
|
using namespace textinput;
|
|
StreamReader* R = StreamReader::Create();
|
|
TerminalDisplay* D = TerminalDisplay::Create();
|
|
TextInput TI(*R, *D, histfilePath.c_str());
|
|
|
|
TI.SetPrompt("[cling]$ ");
|
|
std::string line;
|
|
|
|
while (true) {
|
|
m_MetaProcessor->getOuts().flush();
|
|
TextInput::EReadResult RR = TI.ReadInput();
|
|
TI.TakeInput(line);
|
|
if (RR == TextInput::kRREOF) {
|
|
break;
|
|
}
|
|
|
|
int indent = m_MetaProcessor->process(line.c_str());
|
|
// Quit requested
|
|
if (indent < 0)
|
|
break;
|
|
std::string Prompt = "[cling]";
|
|
if (m_MetaProcessor->getInterpreter().isRawInputEnabled())
|
|
Prompt.append("! ");
|
|
else
|
|
Prompt.append("$ ");
|
|
|
|
if (indent > 0)
|
|
// Continuation requested.
|
|
Prompt.append('?' + std::string(indent * 3, ' '));
|
|
|
|
TI.SetPrompt(Prompt.c_str());
|
|
|
|
}
|
|
}
|
|
|
|
void UserInterface::PrintLogo() {
|
|
llvm::raw_ostream& outs = m_MetaProcessor->getOuts();
|
|
outs << "\n";
|
|
outs << "****************** CLING ******************" << "\n";
|
|
outs << "* Type C++ code and press enter to run it *" << "\n";
|
|
outs << "* Type .q to exit *" << "\n";
|
|
outs << "*******************************************" << "\n";
|
|
}
|
|
} // end namespace cling
|