+ if (!extra) {
+ extra = true;
+ if (line[0] == '\\') {
+ std::string data(line + 1);
+ if (data == "bypass") {
+ bypass = !bypass;
+ fprintf(fout, "bypass == %s\n", bypass ? "true" : "false");
+ fflush(fout);
+ } else if (data == "debug") {
+ debug = !debug;
+ fprintf(fout, "debug == %s\n", debug ? "true" : "false");
+ fflush(fout);
+ }
+ add_history(line);
+ goto restart;
+ }
+ }
+
+ lines.push_back(line);
+ command += line;
+ free(line);
+
+ std::string code;
+
+ if (bypass)
+ code = command;
+ else {
+ CYDriver driver("");
+ cy::parser parser(driver);
+
+ driver.data_ = command.c_str();
+ driver.size_ = command.size();
+
+ if (parser.parse() != 0 || !driver.errors_.empty()) {
+ for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i) {
+ cy::position begin(i->location_.begin);
+ if (begin.line != lines.size() || begin.column - 1 != lines.back().size()) {
+ std::cerr << i->message_ << std::endl;
+ add_history(command.c_str());
+ goto restart;
+ }
+ }
+
+ driver.errors_.clear();
+
+ command += '\n';
+ prompt = "cy> ";
+ goto read;
+ }
+
+ if (driver.source_ == NULL)
+ goto restart;
+
+ std::ostringstream str;
+ driver.source_->Show(str);
+ code = str.str();
+ }
+
+ add_history(command.c_str());
+
+ if (debug)
+ std::cout << code << std::endl;
+
+ Run(code.c_str(), fout);
+ }
+
+ fputs("\n", fout);
+ fflush(fout);
+}
+
+static void *Map(const char *path, size_t *psize) {
+ int fd;
+ _syscall(fd = open(path, O_RDONLY));
+
+ struct stat stat;
+ _syscall(fstat(fd, &stat));
+ size_t size(stat.st_size);
+
+ *psize = size;
+
+ void *base;
+ _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0));
+
+ _syscall(close(fd));
+ return base;
+}
+
+int main(int argc, const char *argv[]) {
+ const char *script;
+
+ if (argc == 1)
+ script = NULL;
+ else {
+ CYSetArgs(argc - 1, argv + 1);
+ script = argv[1];
+ }
+
+ Result_ = CYCopyJSString("_");
+
+ if (script == NULL || strcmp(script, "-") == 0)
+ Console();
+ else {
+ CYDriver driver(script);
+ cy::parser parser(driver);
+
+ size_t size;
+ char *start(reinterpret_cast<char *>(Map(script, &size)));
+ char *end(start + size);
+
+ if (size >= 2 && start[0] == '#' && start[1] == '!') {
+ start += 2;