forked from ariya/phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repl.cpp
232 lines (195 loc) · 8.01 KB
/
repl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ivan De Marino <[email protected]>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "repl.h"
#include <QDesktopServices>
#include <QTimer>
#include <QDir>
#include <QRegExp>
#include <QMetaMethod>
#include <QMetaProperty>
#include "consts.h"
#include "terminal.h"
#include "utils.h"
#define PROMPT "phantomjs> "
#define HISTORY_FILENAME "phantom_repl_history"
// Only with word characters, spaces and the dot ('.')
// we can still attempt to offer a completion to the user
#define REGEXP_NON_COMPLETABLE_CHARS "[^\\w\\s\\.]"
// JS Code to find possible completions
#define JS_RETURN_POSSIBLE_COMPLETIONS "REPL._getCompletions(%1, \"%2\");"
// JS Code to evaluate User Input and prettify the expression result
#define JS_EVAL_USER_INPUT \
"try { " \
"REPL._lastEval = eval(\"%1\");" \
"console.log(JSON.stringify(REPL._lastEval, REPL._expResStringifyReplacer, ' ')); " \
"} catch(e) { " \
"if (e instanceof TypeError) { " \
"console.error(\"'%1' is a cyclic structure\"); " \
"} else { " \
"console.error(e.message);" \
"}" \
"} "
// public:
bool REPL::instanceExists()
{
return REPL::getInstance() != NULL;
}
REPL *REPL::getInstance(QWebFrame *webframe, Phantom *parent)
{
static REPL *singleton = NULL;
if (!singleton && webframe && parent) {
// This will create the singleton only when all the parameters are given
singleton = new REPL(webframe, parent);
}
return singleton;
}
QString REPL::_getClassName(QObject *obj) const
{
const QMetaObject *meta = obj->metaObject();
return QString::fromLatin1(meta->className());
}
QStringList REPL::_enumerateCompletions(QObject *obj) const
{
const QMetaObject *meta = obj->metaObject();
QMap<QString, bool> completions;
// List up slots, signals, and invokable methods
const int methodOffset = meta->methodOffset();
const int methodCount = meta->methodCount();
for (int i = methodOffset; i < methodCount; i++) {
const QString name = QString::fromLatin1(meta->method(i).signature());
// Ignore methods starting with underscores
if (name.startsWith('_')) {
continue;
}
// Keep only up to, but not including, first paren
const int cutoff = name.indexOf('(');
completions.insert((0 < cutoff ? name.left(cutoff) : name), true);
}
// List up properties
const int propertyOffset = meta->propertyOffset();
const int propertyCount = meta->propertyCount();
for (int i = propertyOffset; i < propertyCount; i++) {
const QMetaProperty prop = meta->property(i);
// Ignore non-scriptable properties
if (!prop.isScriptable()) {
continue;
}
const QString name = QString::fromLatin1(prop.name());
// Ignore properties starting with underscores
if (name.startsWith('_')) {
continue;
}
completions.insert(name, true);
}
return completions.uniqueKeys();
}
// private:
REPL::REPL(QWebFrame *webframe, Phantom *parent)
: QObject(parent),
m_looping(true)
{
m_webframe = webframe;
m_parentPhantom = parent;
m_historyFilepath = QString("%1/%2").arg(
QDesktopServices::storageLocation(QDesktopServices::DataLocation),
HISTORY_FILENAME).toLocal8Bit();
// Ensure the location for the history file exists
QDir().mkpath(QDesktopServices::storageLocation(QDesktopServices::DataLocation));
// Listen for Phantom exit(ing)
connect(m_parentPhantom, SIGNAL(aboutToExit(int)), this, SLOT(stopLoop(int)));
// Set the static callback to offer Completions to the User
linenoiseSetCompletionCallback(REPL::offerCompletion);
// Inject REPL utility functions
m_webframe->evaluateJavaScript(Utils::readResourceFileUtf8(":/repl.js"), QString("phantomjs://repl.js"));
// Add self to JavaScript world
m_webframe->addToJavaScriptWindowObject("_repl", this);
// Start the REPL's loop
QTimer::singleShot(0, this, SLOT(startLoop()));
}
void REPL::offerCompletion(const char *buf, linenoiseCompletions *lc)
{
// IF there is a ( or ), then do nothing (we can't complete)
QString buffer(buf);
int lastIndexOfDot = -1;
QString toInspect, toComplete;
QRegExp nonCompletableChars(REGEXP_NON_COMPLETABLE_CHARS);
// If we encounter a non acceptable character (see above)
if (buffer.contains(nonCompletableChars)) {
return;
}
// Decompose what user typed so far in 2 parts: what toInspect and what toComplete.
lastIndexOfDot = buffer.lastIndexOf('.');
if (lastIndexOfDot > -1) {
toInspect = buffer.left(lastIndexOfDot);
toComplete = buffer.right(buffer.length() - lastIndexOfDot -1);
} else {
// Nothing to inspect: use the global "window" object
toInspect = "window";
toComplete = buffer;
}
// This will return an array of String with the possible completions
QStringList completions = REPL::getInstance()->m_webframe->evaluateJavaScript(
QString(JS_RETURN_POSSIBLE_COMPLETIONS).arg(
toInspect,
toComplete),
QString()
).toStringList();
foreach (QString c, completions) {
if (lastIndexOfDot > -1) {
// Preserve the "toInspect" portion of the string to complete
linenoiseAddCompletion(lc, QString("%1.%2").arg(toInspect, c).toLocal8Bit().data());
} else {
linenoiseAddCompletion(lc, c.toLocal8Bit().data());
}
}
}
// private slots:
void REPL::startLoop()
{
char *userInput;
// Load REPL history
linenoiseHistoryLoad(m_historyFilepath.data()); //< requires "char *"
while(m_looping && (userInput = linenoise(PROMPT)) != NULL) {
if (userInput[0] != '\0') {
// Send the user input to the main Phantom frame for evaluation
m_webframe->evaluateJavaScript(
QString(JS_EVAL_USER_INPUT).arg(
QString(userInput).replace('"', "\\\"")), QString("phantomjs://repl-input"));
// Save command in the REPL history
linenoiseHistoryAdd(userInput);
linenoiseHistorySave(m_historyFilepath.data()); //< requires "char *"
}
free(userInput);
}
// If still "looping", close Phantom (usually caused by "CTRL+C" / "CTRL+D")
if (m_looping) {
m_parentPhantom->exit();
}
}
void REPL::stopLoop(const int code)
{
Q_UNUSED(code);
m_looping = false;
}