1 /* Cycript - Remove Execution Server and Disassembler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 #include <substrate.h>
43 #include "cycript.hpp"
50 #include <readline/readline.h>
51 #include <readline/history.h>
58 #include <sys/types.h>
62 #include "Cycript.tab.hh"
64 static jmp_buf ctrlc_;
66 static void sigint(int) {
70 static JSStringRef Result_;
72 void Run(const char *code, FILE *fout) { _pooled
73 JSStringRef script(JSStringCreateWithUTF8CString(code));
75 JSContextRef context(CYGetJSContext());
77 JSValueRef exception(NULL);
78 JSValueRef result(JSEvaluateScript(context, script, NULL, NULL, 0, &exception));
79 JSStringRelease(script);
81 if (exception != NULL) { error:
86 if (!JSValueIsUndefined(context, result)) {
90 json = CYPoolCYONString(pool, context, result, &exception);
91 if (exception != NULL)
94 CYSetProperty(context, CYGetGlobalObject(context), Result_, result);
104 static void Console() {
110 rl_bind_key('\t', rl_insert);
112 struct sigaction action;
113 sigemptyset(&action.sa_mask);
114 action.sa_handler = &sigint;
116 sigaction(SIGINT, &action, NULL);
120 std::vector<std::string> lines;
123 const char *prompt("cy# ");
125 if (setjmp(ctrlc_) != 0) {
132 char *line(readline(prompt));
138 if (line[0] == '\\') {
139 std::string data(line + 1);
140 if (data == "bypass") {
142 fprintf(fout, "bypass == %s\n", bypass ? "true" : "false");
144 } else if (data == "debug") {
146 fprintf(fout, "debug == %s\n", debug ? "true" : "false");
154 lines.push_back(line);
164 cy::parser parser(driver);
166 driver.data_ = command.c_str();
167 driver.size_ = command.size();
169 if (parser.parse() != 0 || !driver.errors_.empty()) {
170 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i) {
171 cy::position begin(i->location_.begin);
172 if (begin.line != lines.size() || begin.column - 1 != lines.back().size()) {
173 std::cerr << i->message_ << std::endl;
174 add_history(command.c_str());
179 driver.errors_.clear();
186 if (driver.source_ == NULL)
189 std::ostringstream str;
190 driver.source_->Show(str);
194 add_history(command.c_str());
197 std::cout << code << std::endl;
199 Run(code.c_str(), fout);
206 static void *Map(const char *path, size_t *psize) {
208 _syscall(fd = open(path, O_RDONLY));
211 _syscall(fstat(fd, &stat));
212 size_t size(stat.st_size);
217 _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0));
223 int main(int argc, const char *argv[]) {
229 CYSetArgs(argc - 1, argv + 1);
233 Result_ = CYCopyJSString("_");
235 if (script == NULL || strcmp(script, "-") == 0)
238 CYDriver driver(script);
239 cy::parser parser(driver);
242 char *start(reinterpret_cast<char *>(Map(script, &size)));
243 char *end(start + size);
245 if (size >= 2 && start[0] == '#' && start[1] == '!') {
247 while (start != end && *start++ != '\n');
250 driver.data_ = start;
251 driver.size_ = end - start;
253 if (parser.parse() != 0 || !driver.errors_.empty()) {
254 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
255 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
256 } else if (driver.source_ != NULL) {
257 std::ostringstream str;
258 driver.source_->Show(str);
259 std::string code(str.str());
260 std::cout << code << std::endl;
261 Run(code.c_str(), stdout);