From: Jay Freeman (saurik) Date: Fri, 17 Jan 2014 20:49:35 +0000 (-0800) Subject: Move Cydget* to ObjectiveC and @throw exceptions. X-Git-Tag: v0.9.500~43 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/bf76f58056b53ca590b619a7488a1648e554fcb4?ds=sidebyside Move Cydget* to ObjectiveC and @throw exceptions. --- diff --git a/Execute.cpp b/Execute.cpp index aff9a7e..be05f7b 100644 --- a/Execute.cpp +++ b/Execute.cpp @@ -1410,10 +1410,6 @@ const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code) { } } -extern "C" void CydgetSetupContext(JSGlobalContextRef context) { - CYSetupContext(context); -} - static bool initialized_ = false; void CYInitializeDynamic() { @@ -1590,8 +1586,10 @@ static void CYRunSetups(JSContextRef context) { CYUTF16String utf16(CYPoolUTF16String(pool, utf8)); munmap(const_cast(utf8.data), utf8.size); - if (CydgetMemoryParse(&utf16.data, &utf16.size)) - CYExecute(context, pool, CYPoolUTF8String(pool, utf16)); + // XXX: this should not be used + CydgetMemoryParse(&utf16.data, &utf16.size); + + CYExecute(context, pool, CYPoolUTF8String(pool, utf16)); free(const_cast(utf16.data)); } diff --git a/Library.cpp b/Library.cpp index 5be04f4..74df502 100644 --- a/Library.cpp +++ b/Library.cpp @@ -210,28 +210,6 @@ CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code) { return $pool.strdup(str.str().c_str()); } -extern "C" bool CydgetMemoryParse(const uint16_t **data, size_t *size) { - CYPool pool; - - CYUTF8String utf8(CYPoolUTF8String(pool, CYUTF16String(*data, *size))); - try { - utf8 = CYPoolCode(pool, utf8); - } catch (const CYException &) { - *data = NULL; - *size = 0; - return false; - } - - CYUTF16String utf16(CYPoolUTF16String(pool, CYUTF8String(utf8.data, utf8.size))); - size_t bytes(utf16.size * sizeof(uint16_t)); - uint16_t *copy(reinterpret_cast(malloc(bytes))); - memcpy(copy, utf16.data, bytes); - - *data = copy; - *size = utf16.size; - return true; -} - CYPool &CYGetGlobalPool() { static CYPool pool; return pool; diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 268edcd..b6410c7 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -2988,3 +2988,25 @@ struct CYObjectiveC { _assert(hooks_ != NULL); } } CYObjectiveC; + +extern "C" void CydgetSetupContext(JSGlobalContextRef context) { CYObjectiveTry_ { + CYSetupContext(context); +} CYObjectiveCatch } + +extern "C" void CydgetMemoryParse(const uint16_t **data, size_t *size) { try { + CYPool pool; + + CYUTF8String utf8(CYPoolUTF8String(pool, CYUTF16String(*data, *size))); + utf8 = CYPoolCode(pool, utf8); + + CYUTF16String utf16(CYPoolUTF16String(pool, CYUTF8String(utf8.data, utf8.size))); + size_t bytes(utf16.size * sizeof(uint16_t)); + uint16_t *copy(reinterpret_cast(malloc(bytes))); + memcpy(copy, utf16.data, bytes); + + *data = copy; + *size = utf16.size; +} catch (const CYException &exception) { + CYPool pool; + @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"%s", exception.PoolCString(pool)] userInfo:nil]; +} }