]> git.saurik.com Git - cycript.git/blob - Complete.cpp
Provide tab completions using the bridge database.
[cycript.git] / Complete.cpp
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 "Replace.hpp"
26 #include "String.hpp"
27
28 static CYExpression *ParseExpression(CYPool &pool, CYUTF8String code) {
29 std::stringstream stream;
30 stream << '(' << code << ')';
31 CYDriver driver(pool, *stream.rdbuf());
32 if (driver.Parse() || !driver.errors_.empty())
33 return NULL;
34
35 CYOptions options;
36 CYContext context(options);
37
38 CYStatement *statement(driver.script_->code_);
39 _assert(statement != NULL);
40 _assert(statement->next_ == NULL);
41
42 CYExpress *express(dynamic_cast<CYExpress *>(driver.script_->code_));
43 _assert(express != NULL);
44
45 CYParenthetical *parenthetical(dynamic_cast<CYParenthetical *>(express->expression_));
46 _assert(parenthetical != NULL);
47
48 return parenthetical->expression_;
49 }
50
51 _visible char **CYComplete(const char *word, const std::string &line, CYUTF8String (*run)(CYPool &pool, const std::string &)) {
52 CYLocalPool pool;
53
54 std::stringbuf stream(line);
55 CYDriver driver(pool, stream);
56
57 driver.auto_ = true;
58
59 if (driver.Parse() || !driver.errors_.empty())
60 return NULL;
61
62 if (driver.mode_ == CYDriver::AutoNone)
63 return NULL;
64
65 CYExpression *expression;
66
67 CYOptions options;
68 CYContext context(options);
69
70 std::ostringstream prefix;
71
72 switch (driver.mode_) {
73 case CYDriver::AutoPrimary:
74 expression = $ CYThis();
75 break;
76
77 case CYDriver::AutoDirect:
78 expression = driver.context_;
79 break;
80
81 case CYDriver::AutoIndirect:
82 expression = $ CYIndirect(driver.context_);
83 break;
84
85 case CYDriver::AutoMessage: {
86 CYDriver::Context &thing(driver.contexts_.back());
87 expression = $M($C1($V("object_getClass"), thing.context_), $S("messages"));
88 for (CYDriver::Context::Words::const_iterator part(thing.words_.begin()); part != thing.words_.end(); ++part)
89 prefix << (*part)->word_ << ':';
90 } break;
91
92 default:
93 _assert(false);
94 }
95
96 std::string begin(prefix.str());
97
98 driver.script_ = $ CYScript($ CYExpress($C3(ParseExpression(pool,
99 " function(object, prefix, word) {\n"
100 " var names = [];\n"
101 " var before = prefix.length;\n"
102 " prefix += word;\n"
103 " var entire = prefix.length;\n"
104 " if (false) {\n"
105 " for (var name in object)\n"
106 " if (name.substring(0, entire) == prefix)\n"
107 " names.push(name.substr(before));\n"
108 " } else do {\n"
109 " if (object.hasOwnProperty(\"cy$complete\")) {\n"
110 " names = names.concat(object.cy$complete(prefix));\n"
111 " continue;\n"
112 " }\n"
113 " try {\n"
114 " var local = Object.getOwnPropertyNames(object);\n"
115 " } catch (e) {\n"
116 " continue;\n"
117 " }\n"
118 " for (var name of local)\n"
119 " if (name.substring(0, entire) == prefix)\n"
120 " names.push(name.substr(before));\n"
121 " } while (object = typeof object === 'object' ? Object.getPrototypeOf(object) : object.__proto__);\n"
122 " return names;\n"
123 " }\n"
124 ), expression, $S(begin.c_str()), $S(word))));
125
126 driver.script_->Replace(context);
127
128 std::stringbuf str;
129 CYOutput out(str, options);
130 out << *driver.script_;
131
132 std::string code(str.str());
133 CYUTF8String json(run(pool, code));
134 // XXX: if this fails we should not try to parse it
135
136 CYExpression *result(ParseExpression(pool, json));
137 if (result == NULL)
138 return NULL;
139
140 CYArray *array(dynamic_cast<CYArray *>(result->Primitive(context)));
141 if (array == NULL)
142 return NULL;
143
144 // XXX: use an std::set?
145 typedef std::vector<std::string> Completions;
146 Completions completions;
147
148 std::string common;
149 bool rest(false);
150
151 for (CYElement *element(array->elements_); element != NULL; ) {
152 CYElementValue *value(dynamic_cast<CYElementValue *>(element));
153 _assert(value != NULL);
154 element = value->next_;
155
156 CYString *string(dynamic_cast<CYString *>(value->value_));
157 _assert(string != NULL);
158
159 std::string completion;
160 if (string->size_ != 0)
161 completion.assign(string->value_, string->size_);
162 else if (driver.mode_ == CYDriver::AutoMessage)
163 completion = "]";
164 else
165 continue;
166
167 completions.push_back(completion);
168
169 if (!rest) {
170 common = completion;
171 rest = true;
172 } else {
173 size_t limit(completion.size()), size(common.size());
174 if (size > limit)
175 common = common.substr(0, limit);
176 else
177 limit = size;
178 for (limit = 0; limit != size; ++limit)
179 if (common[limit] != completion[limit])
180 break;
181 if (limit != size)
182 common = common.substr(0, limit);
183 }
184 }
185
186 size_t count(completions.size());
187 if (count == 0)
188 return NULL;
189
190 size_t colon(common.find(':'));
191 if (colon != std::string::npos)
192 common = common.substr(0, colon + 1);
193 if (completions.size() == 1)
194 common += ' ';
195
196 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count + 2))));
197
198 results[0] = strdup(common.c_str());
199 size_t index(0);
200 for (Completions::const_iterator i(completions.begin()); i != completions.end(); ++i)
201 results[++index] = strdup(i->c_str());
202 results[count + 1] = NULL;
203
204 return results;
205 }