From: Jay Freeman (saurik) Date: Sun, 3 Jun 2012 15:19:04 +0000 (-0700) Subject: Split JavaScript Array utility functions into Library. X-Git-Tag: v0.9.455~27 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/07db5f4d390f6a685f2754a072a1bc99735cd09b?ds=sidebyside Split JavaScript Array utility functions into Library. --- diff --git a/JavaScript.hpp b/JavaScript.hpp index ebb5281..5e76bb4 100644 --- a/JavaScript.hpp +++ b/JavaScript.hpp @@ -125,6 +125,10 @@ JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, si void CYFinalize(JSObjectRef object); +size_t CYArrayLength(JSContextRef context, JSObjectRef array); +JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index); +void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value); + const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSValueRef value); JSStringRef CYCopyJSString(const char *value); diff --git a/Library.cpp b/Library.cpp index 8ff066a..881506d 100644 --- a/Library.cpp +++ b/Library.cpp @@ -42,6 +42,7 @@ #include "Error.hpp" #include "String.hpp" #include "Execute.hpp" +#include "JavaScript.hpp" /* C Strings {{{ */ template @@ -222,6 +223,26 @@ double CYCastDouble(const char *value) { return CYCastDouble(value, strlen(value)); } +size_t CYArrayLength(JSContextRef context, JSObjectRef array) { + return CYCastDouble(context, CYGetProperty(context, array, length_s)); +} + +JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index) { + JSValueRef exception(NULL); + JSValueRef value(JSObjectGetPropertyAtIndex(context, array, index, &exception)); + CYThrow(context, exception); + return value; +} + +void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value) { + JSValueRef exception(NULL); + JSValueRef arguments[1]; + arguments[0] = value; + JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); + JSObjectCallAsFunction(context, CYCastJSObject(context, CYGetProperty(context, Array, push_s)), array, 1, arguments, &exception); + CYThrow(context, exception); +} + extern "C" void CydgetPoolParse(apr_pool_t *remote, const uint16_t **data, size_t *size) { CYLocalPool local; diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 957c80c..5ccb90e 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -1227,7 +1227,7 @@ JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) { CYPoolTry { } CYObjectiveCatch } - (NSUInteger) count { CYObjectiveTry { - return CYCastDouble(context_, CYGetProperty(context_, object_, length_s)); + return CYArrayLength(context_, object_); } CYObjectiveCatch } - (id) objectAtIndex:(NSUInteger)index { CYObjectiveTry { @@ -1241,12 +1241,7 @@ JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) { CYPoolTry { } CYObjectiveCatch } - (void) addObject:(id)object { CYObjectiveTry { - JSValueRef exception(NULL); - JSValueRef arguments[1]; - arguments[0] = CYCastJSValue(context_, (NSObject *) object); - JSObjectRef Array(CYGetCachedObject(context_, CYJSString("Array_prototype"))); - JSObjectCallAsFunction(context_, CYCastJSObject(context_, CYGetProperty(context_, Array, push_s)), object_, 1, arguments, &exception); - CYThrow(context_, exception); + CYArrayPush(context_, object_, CYCastJSValue(context_, (NSObject *) object)); } CYObjectiveCatch } - (void) insertObject:(id)object atIndex:(NSUInteger)index { CYObjectiveTry {