Commit b910f431 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Reverting r9272.

Review URL: http://codereview.chromium.org/7889033

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9274 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent a392f5bf
...@@ -117,7 +117,6 @@ CounterCollection Shell::local_counters_; ...@@ -117,7 +117,6 @@ CounterCollection Shell::local_counters_;
CounterCollection* Shell::counters_ = &local_counters_; CounterCollection* Shell::counters_ = &local_counters_;
i::Mutex* Shell::context_mutex_(i::OS::CreateMutex()); i::Mutex* Shell::context_mutex_(i::OS::CreateMutex());
Persistent<Context> Shell::utility_context_; Persistent<Context> Shell::utility_context_;
LineEditor* Shell::console = NULL;
#endif // V8_SHARED #endif // V8_SHARED
Persistent<Context> Shell::evaluation_context_; Persistent<Context> Shell::evaluation_context_;
...@@ -792,7 +791,6 @@ void Shell::Exit(int exit_code) { ...@@ -792,7 +791,6 @@ void Shell::Exit(int exit_code) {
#ifndef V8_SHARED #ifndef V8_SHARED
void Shell::OnExit() { void Shell::OnExit() {
console->Close();
if (i::FLAG_dump_counters) { if (i::FLAG_dump_counters) {
printf("+----------------------------------------+-------------+\n"); printf("+----------------------------------------+-------------+\n");
printf("| Name | Value |\n"); printf("| Name | Value |\n");
...@@ -897,20 +895,20 @@ void Shell::RunShell() { ...@@ -897,20 +895,20 @@ void Shell::RunShell() {
HandleScope outer_scope; HandleScope outer_scope;
Handle<String> name = String::New("(d8)"); Handle<String> name = String::New("(d8)");
#ifndef V8_SHARED #ifndef V8_SHARED
console = LineEditor::Get(); LineEditor* editor = LineEditor::Get();
printf("V8 version %s [console: %s]\n", V8::GetVersion(), console->name()); printf("V8 version %s [console: %s]\n", V8::GetVersion(), editor->name());
if (i::FLAG_debugger) { if (i::FLAG_debugger) {
printf("JavaScript debugger enabled\n"); printf("JavaScript debugger enabled\n");
} }
console->Open(); editor->Open();
while (true) { while (true) {
i::SmartArrayPointer<char> input = console->Prompt(Shell::kPrompt); i::SmartArrayPointer<char> input = editor->Prompt(Shell::kPrompt);
if (input.is_empty()) break; if (input.is_empty()) break;
console->AddHistory(*input); editor->AddHistory(*input);
HandleScope inner_scope; HandleScope inner_scope;
ExecuteString(String::New(*input), name, true, true); ExecuteString(String::New(*input), name, true, true);
} }
console->Close(); editor->Close();
#else #else
printf("V8 version %s [D8 light using shared library]\n", V8::GetVersion()); printf("V8 version %s [D8 light using shared library]\n", V8::GetVersion());
static const int kBufferSize = 256; static const int kBufferSize = 256;
......
...@@ -116,29 +116,6 @@ class CounterMap { ...@@ -116,29 +116,6 @@ class CounterMap {
#endif // V8_SHARED #endif // V8_SHARED
#ifndef V8_SHARED
class LineEditor {
public:
enum Type { DUMB = 0, READLINE = 1 };
LineEditor(Type type, const char* name);
virtual ~LineEditor() { }
virtual i::SmartArrayPointer<char> Prompt(const char* prompt) = 0;
virtual bool Open() { return true; }
virtual bool Close() { return true; }
virtual void AddHistory(const char* str) { }
const char* name() { return name_; }
static LineEditor* Get();
private:
Type type_;
const char* name_;
LineEditor* next_;
static LineEditor* first_;
};
#endif // V8_SHARED
class SourceGroup { class SourceGroup {
public: public:
SourceGroup() : SourceGroup() :
...@@ -336,7 +313,6 @@ class Shell : public i::AllStatic { ...@@ -336,7 +313,6 @@ class Shell : public i::AllStatic {
static void AddOSMethods(Handle<ObjectTemplate> os_template); static void AddOSMethods(Handle<ObjectTemplate> os_template);
#ifndef V8_SHARED #ifndef V8_SHARED
static const char* kHistoryFileName; static const char* kHistoryFileName;
static LineEditor* console;
#endif // V8_SHARED #endif // V8_SHARED
static const char* kPrompt; static const char* kPrompt;
static ShellOptions options; static ShellOptions options;
...@@ -367,6 +343,29 @@ class Shell : public i::AllStatic { ...@@ -367,6 +343,29 @@ class Shell : public i::AllStatic {
}; };
#ifndef V8_SHARED
class LineEditor {
public:
enum Type { DUMB = 0, READLINE = 1 };
LineEditor(Type type, const char* name);
virtual ~LineEditor() { }
virtual i::SmartArrayPointer<char> Prompt(const char* prompt) = 0;
virtual bool Open() { return true; }
virtual bool Close() { return true; }
virtual void AddHistory(const char* str) { }
const char* name() { return name_; }
static LineEditor* Get();
private:
Type type_;
const char* name_;
LineEditor* next_;
static LineEditor* first_;
};
#endif // V8_SHARED
} // namespace v8 } // namespace v8
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment