]> git.saurik.com Git - cycript.git/blobdiff - Library.cpp
Make lexer start a comment with #! (for scripts).
[cycript.git] / Library.cpp
index 28f9395468d00664da256054abdc77110792689b..816dab6cebb44a0d27d86eccec185797e45e1702 100644 (file)
@@ -191,9 +191,8 @@ double CYCastDouble(const char *value) {
     return CYCastDouble(value, strlen(value));
 }
 
-CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code) {
+CYUTF8String CYPoolCode(CYPool &pool, std::istream &stream) {
     CYLocalPool local;
-    CYStream stream(code.data, code.data + code.size);
     CYDriver driver(stream);
 
     cy::parser parser(driver);
@@ -204,32 +203,10 @@ CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code) {
     CYContext context(options);
     driver.program_->Replace(context);
 
-    std::ostringstream &str(pool.object<std::ostringstream>());
+    std::ostringstream str;
     CYOutput out(str, options);
     out << *driver.program_;
-    return 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<uint16_t *>(malloc(bytes)));
-    memcpy(copy, utf16.data, bytes);
-
-    *data = copy;
-    *size = utf16.size;
-    return true;
+    return $pool.strdup(str.str().c_str());
 }
 
 CYPool &CYGetGlobalPool() {