]> git.saurik.com Git - cycript.git/blame - Complete.cpp
Parse (but ignore) ECMAScript 6 "spread elements".
[cycript.git] / Complete.cpp
CommitLineData
d9c91152
JF
1/* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
3*/
4
5/* GNU Affero General Public License, Version 3 {{{ */
6/*
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19**/
20/* }}} */
21
22#include "cycript.hpp"
23
24#include "Driver.hpp"
25#include "Cycript.tab.hh"
26#include "Replace.hpp"
27#include "String.hpp"
28
2c1d569a 29static CYExpression *ParseExpression(CYPool &pool, CYUTF8String code) {
d9c91152
JF
30 std::stringstream stream;
31 stream << '(' << code << ')';
2c1d569a 32 CYDriver driver(pool, stream);
d9c91152
JF
33
34 cy::parser parser(driver);
35 if (parser.parse() != 0 || !driver.errors_.empty())
36 return NULL;
37
38 CYOptions options;
39 CYContext context(options);
40
a7d8b413 41 CYStatement *statement(driver.script_->code_);
d9c91152
JF
42 _assert(statement != NULL);
43 _assert(statement->next_ == NULL);
44
a7d8b413 45 CYExpress *express(dynamic_cast<CYExpress *>(driver.script_->code_));
d9c91152
JF
46 _assert(express != NULL);
47
48 CYParenthetical *parenthetical(dynamic_cast<CYParenthetical *>(express->expression_));
49 _assert(parenthetical != NULL);
50
51 return parenthetical->expression_;
52}
53
54_visible char **CYComplete(const char *word, const std::string &line, CYUTF8String (*run)(CYPool &pool, const std::string &)) {
55 CYLocalPool pool;
56
57 std::istringstream stream(line);
2c1d569a 58 CYDriver driver(pool, stream);
d9c91152
JF
59
60 driver.auto_ = true;
61
62 cy::parser parser(driver);
63 if (parser.parse() != 0 || !driver.errors_.empty())
64 return NULL;
65
66 if (driver.mode_ == CYDriver::AutoNone)
67 return NULL;
68
69 CYExpression *expression;
70
71 CYOptions options;
72 CYContext context(options);
73
74 std::ostringstream prefix;
75
76 switch (driver.mode_) {
77 case CYDriver::AutoPrimary:
78 expression = $ CYThis();
79 break;
80
81 case CYDriver::AutoDirect:
82 expression = driver.context_;
83 break;
84
85 case CYDriver::AutoIndirect:
86 expression = $ CYIndirect(driver.context_);
87 break;
88
89 case CYDriver::AutoMessage: {
90 CYDriver::Context &thing(driver.contexts_.back());
91 expression = $M($C1($V("object_getClass"), thing.context_), $S("messages"));
92 for (CYDriver::Context::Words::const_iterator part(thing.words_.begin()); part != thing.words_.end(); ++part)
93 prefix << (*part)->word_ << ':';
94 } break;
95
96 default:
97 _assert(false);
98 }
99
100 std::string begin(prefix.str());
101
a7d8b413 102 driver.script_ = $ CYScript($ CYExpress($C3(ParseExpression(pool,
d9c91152
JF
103 " function(object, prefix, word) {\n"
104 " var names = [];\n"
105 " var before = prefix.length;\n"
106 " prefix += word;\n"
107 " var entire = prefix.length;\n"
108 " for (var name in object)\n"
109 " if (name.substring(0, entire) == prefix)\n"
110 " names.push(name.substr(before));\n"
111 " return names;\n"
112 " }\n"
113 ), expression, $S(begin.c_str()), $S(word))));
114
a7d8b413 115 driver.script_->Replace(context);
d9c91152
JF
116
117 std::stringbuf str;
118 CYOutput out(str, options);
a7d8b413 119 out << *driver.script_;
d9c91152
JF
120
121 std::string code(str.str());
122 CYUTF8String json(run(pool, code));
123 // XXX: if this fails we should not try to parse it
124
2c1d569a 125 CYExpression *result(ParseExpression(pool, json));
d9c91152
JF
126 if (result == NULL)
127 return NULL;
128
129 CYArray *array(dynamic_cast<CYArray *>(result->Primitive(context)));
130 if (array == NULL)
131 return NULL;
132
133 // XXX: use an std::set?
134 typedef std::vector<std::string> Completions;
135 Completions completions;
136
137 std::string common;
138 bool rest(false);
139
fc8fc33d
JF
140 for (CYElement *element(array->elements_); element != NULL; ) {
141 CYElementValue *value(dynamic_cast<CYElementValue *>(element));
142 _assert(value != NULL);
143 element = value->next_;
144
145 CYString *string(dynamic_cast<CYString *>(value->value_));
d9c91152
JF
146 _assert(string != NULL);
147
148 std::string completion;
149 if (string->size_ != 0)
150 completion.assign(string->value_, string->size_);
151 else if (driver.mode_ == CYDriver::AutoMessage)
152 completion = "]";
153 else
154 continue;
155
156 completions.push_back(completion);
157
158 if (!rest) {
159 common = completion;
160 rest = true;
161 } else {
162 size_t limit(completion.size()), size(common.size());
163 if (size > limit)
164 common = common.substr(0, limit);
165 else
166 limit = size;
167 for (limit = 0; limit != size; ++limit)
168 if (common[limit] != completion[limit])
169 break;
170 if (limit != size)
171 common = common.substr(0, limit);
172 }
173 }
174
175 size_t count(completions.size());
176 if (count == 0)
177 return NULL;
178
179 size_t colon(common.find(':'));
180 if (colon != std::string::npos)
181 common = common.substr(0, colon + 1);
182 if (completions.size() == 1)
183 common += ' ';
184
185 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count + 2))));
186
187 results[0] = strdup(common.c_str());
188 size_t index(0);
189 for (Completions::const_iterator i(completions.begin()); i != completions.end(); ++i)
190 results[++index] = strdup(i->c_str());
191 results[count + 1] = NULL;
192
193 return results;
194}