-/* Cycript - Remove Execution Server and Disassembler
+/* Cycript - Inlining/Optimizing JavaScript Compiler
* Copyright (C) 2009 Jay Freeman (saurik)
*/
#ifndef CYCRIPT_HPP
#define CYCRIPT_HPP
-#ifdef __OBJC__
-#include <Foundation/Foundation.h>
-#endif
-
-#include <JavaScriptCore/JavaScript.h>
-#include <JavaScriptCore/JSStringRefCF.h>
+#include <apr_pools.h>
+#include <sig/types.hpp>
+#include <sstream>
-#include <apr-1/apr_pools.h>
-#include <ffi.h>
+#include "String.hpp"
-#include <sig/types.hpp>
+void CYInitializeStatic();
bool CYRecvAll_(int socket, uint8_t *data, size_t size);
bool CYSendAll_(int socket, const uint8_t *data, size_t size);
+void CYNumerify(std::ostringstream &str, double value);
+void CYStringify(std::ostringstream &str, const char *data, size_t size);
+
+double CYCastDouble(const char *value, size_t size);
+double CYCastDouble(const char *value);
+
+extern "C" void CYHandleClient(apr_pool_t *pool, int socket);
+
template <typename Type_>
bool CYRecvAll(int socket, Type_ *data, size_t size) {
return CYRecvAll_(socket, reinterpret_cast<uint8_t *>(data), size);
return CYSendAll_(socket, reinterpret_cast<const uint8_t *>(data), size);
}
-JSGlobalContextRef CYGetJSContext();
-JSObjectRef CYGetGlobalObject(JSContextRef context);
-const char *CYExecute(apr_pool_t *pool, const char *code);
-
-void CYSetArgs(int argc, const char *argv[]);
-
-const char *CYPoolCYONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception);
-JSStringRef CYCopyJSString(const char *value);
-
-void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value);
-
-JSValueRef CYCallFunction(apr_pool_t *pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)());
-JSValueRef CYSendMessage(apr_pool_t *pool, JSContextRef context, id self, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception);
+apr_pool_t *CYGetGlobalPool();
#endif/*CYCRIPT_HPP*/