1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2014 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
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.
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.
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/>.
22 #include <Foundation/Foundation.h>
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
32 #include "cycript.hpp"
34 #include "JavaScript.hpp"
36 #include "Pooling.hpp"
38 #include "Cycript.tab.hh"
43 const char * volatile data_;
46 // XXX: this is "tre lame"
47 @interface CYClient_ : NSObject {
50 - (void) execute:(NSValue *)value;
54 @implementation CYClient_
56 - (void) execute:(NSValue *)value {
57 CYExecute_ *execute(reinterpret_cast<CYExecute_ *>([value pointerValue]));
58 const char *data(execute->data_);
59 execute->data_ = NULL;
60 execute->data_ = CYExecute(CYGetJSContext(), execute->pool_, CYUTF8String(data));
71 CYClient(int socket) :
77 _syscall(close(socket_));
81 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
83 CYClient_ *client = [[[CYClient_ alloc] init] autorelease];
86 if (CFStringRef mode = CFRunLoopCopyCurrentMode(CFRunLoopGetMain())) {
94 if (!CYRecvAll(socket_, &size, sizeof(size)))
98 char *data(new(pool) char[size + 1]);
99 if (!CYRecvAll(socket_, data, size))
103 NSAutoreleasePool *ar = [[NSAutoreleasePool alloc] init];
105 std::string code(data, size);
106 CYExecute_ execute = {pool, code.c_str()};
107 NSValue *value([NSValue valueWithPointer:&execute]);
109 [client performSelectorOnMainThread:@selector(execute:) withObject:value waitUntilDone:YES];
111 [client execute:value];
113 const char *json(execute.data_);
114 size = json == NULL ? _not(uint32_t) : strlen(json);
118 if (!CYSendAll(socket_, &size, sizeof(size)))
121 if (!CYSendAll(socket_, json, size))
129 static void *OnClient(void *data) {
130 CYClient *client(reinterpret_cast<CYClient *>(data));
136 extern "C" void CYHandleClient(int socket) {
137 // XXX: this leaks memory... really?
138 CYPool *pool(new CYPool());
139 CYClient *client(new(*pool) CYClient(socket));
140 _assert(pthread_create(&client->thread_, NULL, &OnClient, client) == 0);
143 extern "C" void CYHandleServer(pid_t pid) {
144 CYInitializeDynamic();
146 int socket(_syscall(::socket(PF_UNIX, SOCK_STREAM, 0))); try {
147 struct sockaddr_un address;
148 memset(&address, 0, sizeof(address));
149 address.sun_family = AF_UNIX;
150 sprintf(address.sun_path, "/tmp/.s.cy.%u", pid);
152 _syscall(connect(socket, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
153 CYHandleClient(socket);
154 } catch (const CYException &error) {
156 fprintf(stderr, "%s\n", error.PoolCString(pool));
165 CYServer(uint16_t port) :
173 _syscall(close(socket_));
177 socket_ = _syscall(::socket(PF_INET, SOCK_STREAM, 0)); try {
179 address.sin_family = AF_INET;
180 address.sin_addr.s_addr = INADDR_ANY;
181 address.sin_port = htons(port_);
182 _syscall(::bind(socket_, reinterpret_cast<sockaddr *>(&address), sizeof(address)));
184 _syscall(::listen(socket_, -1));
187 socklen_t length(sizeof(address));
188 int socket(_syscall(::accept(socket_, reinterpret_cast<sockaddr *>(&address), &length)));
189 CYHandleClient(socket);
191 } catch (const CYException &error) {
193 fprintf(stderr, "%s\n", error.PoolCString(pool));
198 static void *OnServer(void *data) {
199 CYServer *server(reinterpret_cast<CYServer *>(data));
205 extern "C" void CYListenServer(short port) {
206 CYInitializeDynamic();
208 CYServer *server(new CYServer(port));
209 _assert(pthread_create(&server->thread_, NULL, &OnServer, server) == 0);