#include <JavaScriptCore/JSStringRefCF.h>
#include <apr-1/apr_pools.h>
+#include <ffi.h>
+
+#include <sig/types.hpp>
+
+bool CYRecvAll_(int socket, uint8_t *data, size_t size);
+bool CYSendAll_(int socket, const uint8_t *data, size_t size);
+
+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);
+}
+
+template <typename Type_>
+bool CYSendAll(int socket, const Type_ *data, size_t size) {
+ return CYSendAll_(socket, reinterpret_cast<const uint8_t *>(data), size);
+}
JSGlobalContextRef CYGetJSContext();
-const char *CYPoolCYONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception);
-void CYSetArgs(int argc, const char *argv[]);
-void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value);
JSObjectRef CYGetGlobalObject(JSContextRef context);
+const char *CYExecute(apr_pool_t *pool, const char *code);
+
+void CYSetArgs(int argc, const char *argv[]);
+
+const char *CYPoolCCYON(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);
+
#endif/*CYCRIPT_HPP*/