blob: ed7721c5131bd818bf70db18b1b9f065f21fcb0e [file] [log] [blame]
ulan@chromium.org2efb9002012-01-19 15:36:35 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
ager@chromium.org8bb60582008-12-11 12:02:20 +000029#include <cstdio> // NOLINT
ager@chromium.org5c838252010-02-19 08:53:10 +000030#include <readline/readline.h> // NOLINT
31#include <readline/history.h> // NOLINT
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000032
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000033// The readline includes leaves RETURN defined which breaks V8 compilation.
34#undef RETURN
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000035
36#include "d8.h"
37
38
ager@chromium.org8bb60582008-12-11 12:02:20 +000039// There are incompatibilities between different versions and different
ager@chromium.org32912102009-01-16 10:38:43 +000040// implementations of readline. This smooths out one known incompatibility.
ager@chromium.org8bb60582008-12-11 12:02:20 +000041#if RL_READLINE_VERSION >= 0x0500
42#define completion_matches rl_completion_matches
43#endif
44
45
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000046namespace v8 {
47
48
49class ReadLineEditor: public LineEditor {
50 public:
51 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
ulan@chromium.org2efb9002012-01-19 15:36:35 +000052 virtual Handle<String> Prompt(const char* prompt);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000053 virtual bool Open();
54 virtual bool Close();
55 virtual void AddHistory(const char* str);
ulan@chromium.org2efb9002012-01-19 15:36:35 +000056
57 static const char* kHistoryFileName;
58 static const int kMaxHistoryEntries;
59
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000060 private:
61 static char** AttemptedCompletion(const char* text, int start, int end);
62 static char* CompletionGenerator(const char* text, int state);
63 static char kWordBreakCharacters[];
64};
65
66
67static ReadLineEditor read_line_editor;
68char ReadLineEditor::kWordBreakCharacters[] = {' ', '\t', '\n', '"',
69 '\\', '\'', '`', '@', '.', '>', '<', '=', ';', '|', '&', '{', '(',
70 '\0'};
71
72
ulan@chromium.org2efb9002012-01-19 15:36:35 +000073const char* ReadLineEditor::kHistoryFileName = ".d8_history";
74const int ReadLineEditor::kMaxHistoryEntries = 1000;
75
76
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000077bool ReadLineEditor::Open() {
78 rl_initialize();
79 rl_attempted_completion_function = AttemptedCompletion;
80 rl_completer_word_break_characters = kWordBreakCharacters;
81 rl_bind_key('\t', rl_complete);
82 using_history();
ulan@chromium.org2efb9002012-01-19 15:36:35 +000083 stifle_history(kMaxHistoryEntries);
84 return read_history(kHistoryFileName) == 0;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000085}
86
87
88bool ReadLineEditor::Close() {
ulan@chromium.org2efb9002012-01-19 15:36:35 +000089 return write_history(kHistoryFileName) == 0;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000090}
91
92
ulan@chromium.org2efb9002012-01-19 15:36:35 +000093Handle<String> ReadLineEditor::Prompt(const char* prompt) {
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +000094 char* result = NULL;
95 { // Release lock for blocking input.
96 Unlocker unlock(Isolate::GetCurrent());
97 result = readline(prompt);
98 }
ulan@chromium.org2efb9002012-01-19 15:36:35 +000099 if (result != NULL) {
100 AddHistory(result);
101 } else {
102 return Handle<String>();
103 }
104 return String::New(result);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000105}
106
107
108void ReadLineEditor::AddHistory(const char* str) {
lrn@chromium.org34e60782011-09-15 07:25:40 +0000109 // Do not record empty input.
110 if (strlen(str) == 0) return;
111 // Remove duplicate history entry.
112 history_set_pos(history_length-1);
113 if (current_history()) {
114 do {
115 if (strcmp(current_history()->line, str) == 0) {
116 remove_history(where_history());
117 break;
118 }
119 } while (previous_history());
120 }
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000121 add_history(str);
122}
123
124
125char** ReadLineEditor::AttemptedCompletion(const char* text,
126 int start,
127 int end) {
ager@chromium.org8bb60582008-12-11 12:02:20 +0000128 char** result = completion_matches(text, CompletionGenerator);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000129 rl_attempted_completion_over = true;
130 return result;
131}
132
133
134char* ReadLineEditor::CompletionGenerator(const char* text, int state) {
135 static unsigned current_index;
136 static Persistent<Array> current_completions;
137 if (state == 0) {
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000138 HandleScope scope;
ulan@chromium.org2efb9002012-01-19 15:36:35 +0000139 Local<String> full_text = String::New(rl_line_buffer, rl_point);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000140 Handle<Array> completions =
ulan@chromium.org2efb9002012-01-19 15:36:35 +0000141 Shell::GetCompletions(String::New(text), full_text);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000142 current_completions = Persistent<Array>::New(completions);
143 current_index = 0;
144 }
145 if (current_index < current_completions->Length()) {
146 HandleScope scope;
147 Handle<Integer> index = Integer::New(current_index);
148 Handle<Value> str_obj = current_completions->Get(index);
149 current_index++;
150 String::Utf8Value str(str_obj);
151 return strdup(*str);
152 } else {
153 current_completions.Dispose();
154 current_completions.Clear();
155 return NULL;
156 }
157}
158
159
160} // namespace v8