iMonkey看起来像是在iOS应用程序中嵌入JS运行时的有趣方式,但我找不到任何关于如何实际运行某些JS代码的示例。
我可以构建/链接lib,包含jsapi.h头文件(来自src目录),但是当我尝试使用蜘蛛的一些示例代码时,它会跳过各种链接器错误(“架构的未定义符号...”)猴子(见下文)。要清楚,这几乎是从另一个网站上Mac相关发布的复制粘贴,我完全不确定是否应该这样做。我确信我的架构(模拟器)有正确的静态库(通用)。
任何人都知道如何做到这一点?
#include "jsapi.h"
.....
JSRuntime *rt;
JSContext *cx;
JSObject *global;
/* Create a JS runtime. */
rt = JS_NewRuntime(8L * 1024L * 1024L);
/* Create a context. */
cx = JS_NewContext(rt, 8192);
JS_SetOptions(cx, JSOPTION_VAROBJFIX);
/* Create the global object. */
global = JS_NewObject(cx, &global_class, NULL, NULL);
/* Populate the global object with the standard globals,
like Object and Array. */
if (!JS_InitStandardClasses(cx, global))
@throw [[NSException alloc]initWithName:@"JSerror" reason:@"jserrpr" userInfo:nil];
/* Cleanup. */
JS_DestroyContext(cx);
JS_DestroyRuntime(rt);
JS_ShutDown();
答案 0 :(得分:1)
这是一个基于原始蜘蛛猴中的例子松散的例子。
http://egachine.berlios.de/embedding-sm-best-practice/embedding-sm-best-practice.html
我进行了修改,因此可以使用多线程(已经由iMonkey启用)。
https://developer.mozilla.org/En/SpiderMonkey/Internals/Thread_Safety
//
// JSEngine.mm
// POC_JS
//
// Created by Quoc Le on 7/12/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "JSEngine.h"
/* get SpiderMonkey API declarations */
#include <jsapi.h>
/* EXIT_FAILURE and EXIT_SUCCESS */
#include <stdlib.h>
/* strlen */
#include <string.h>
@implementation JSEngine
+ (int) run
{
/* pointer to our runtime object */
JSRuntime *runtime=NULL;
/* pointer to our context */
JSContext *context=NULL;
/* pointer to our global JavaScript object */
JSObject *global=NULL;
/* script to run (should return 100) */
char *script="var x=10;x*x;";
/* JavaScript value to store the result of the script */
jsval rval;
/* create new runtime, new context, global object */
if ( (!(runtime = JS_NewRuntime (1024L*1024L)))
|| (!(context = JS_NewContext (runtime, 8192)))
) return EXIT_FAILURE;
JS_SetContextThread(context);
JS_BeginRequest(context);
// || (!(global = JS_NewObject (context, NULL, NULL, NULL)))
global = JS_NewObject (context, NULL, NULL, NULL);
/* set global object of context and initialize standard ECMAScript
objects (Math, Date, ...) within this global object scope */
if (!JS_InitStandardClasses(context, global)) return EXIT_FAILURE;
/* now we are ready to run our script */
if (!JS_EvaluateScript(context, global,script, strlen(script),
"script", 1, &rval))
return EXIT_FAILURE;
/* check if the result is really 100 */
NSLog(@"RSVAL %d", JSVAL_TO_INT(rval));
if (!(JSVAL_IS_INT(rval)&&(JSVAL_TO_INT(rval)==100)))
return EXIT_FAILURE;
JS_EndRequest(context);
JS_ClearContextThread(context);
/* clean up */
//JS_DestroyContext(context);
//JS_DestroyRuntime(runtime);
//JS_ShutDown();
return EXIT_SUCCESS;
}
@end
答案 1 :(得分:0)
我有链接器的类似问题。只需将libstdc ++ 6添加到项目中即可避免此问题