SpiderMonkey JS Engine C Проблемы - PullRequest
0 голосов
/ 30 марта 2011

Я новичок в C, и я пытался использовать SpiderMonkey JS Engine. Я не могу понять, почему это не работает (примеры на mdc не очень полезны)

#define XP_UNIX
#include <stdio.h>
#include <string.h>
#include "jsapi.h"

/* The class of the global object. */
#ifndef JSCLASS_GLOBAL_FLAGS
#define JSCLSAS_GLOBAL_FLAGS 0
#endif

static JSClass global_class = {
    "global", JSCLASS_GLOBAL_FLAGS,
    JS_PropertyStub,  JS_PropertyStub,
    JS_PropertyStub,  JS_PropertyStub,
    JS_EnumerateStub, JS_ResolveStub,
    JS_ConvertStub,   JS_FinalizeStub,
    JSCLASS_NO_OPTIONAL_MEMBERS     
};

JSBool myjs_rand(JSContext *cx, uintN argc, jsval *vp)
{
    int r = rand();
    JS_SET_RVAL(cx, vp, DOUBLE_TO_JSVAL(r));
    return JS_TRUE;
}

static JSFunctionSpec custom_global_functions[] = {
    JS_FS("rand", myjs_rand, 0, 0, 0),
    JS_FS_END
};

/* The error reporter callback. */
void reportError(JSContext *cx, const char *message, JSErrorReport *report)
{
    fprintf(stderr, "%s:%u:%s\n",
            report->filename ? report->filename : "<no filename>",
            (unsigned int) report->lineno,
            message);
}

int main(int argc, const char *argv[])
{
    /* JS variables. */
    JSRuntime *rt;
    JSContext *cx;
    JSObject  *global;

    /* Create a JS runtime. */
    rt = JS_NewRuntime(8L * 1024L * 1024L);
    if (rt == NULL)
        return 1;

    /* Create a context. */
    cx = JS_NewContext(rt, 8192);
    if (cx == NULL)
        return 1;
    JS_SetOptions(cx, JSOPTION_VAROBJFIX | JSOPTION_JIT);
    JS_SetVersion(cx, JSVERSION_LATEST);
    JS_SetErrorReporter(cx, reportError);

    /* Create the global object in a new compartment. */
    global = JS_NewObject(cx, &global_class, 0, 0);
    if (global == NULL)
        return 1;

    /* Populate the global object with the standard globals,
       like Object and Array. */
    if (!JS_InitStandardClasses(cx, global))
        return 1;

    /* Add custom methods like log */
    if (!JS_DefineFunctions(cx, global, custom_global_functions))
        return JS_FALSE;

    /* Run Script */

    char *filename;
    uintN lineno;

    jsval rval;
    JSBool ok;

    char *source = "rand()";

    ok = JS_EvaluateScript(cx, global, source, strlen(source), filename, lineno, &rval);

    if (ok) {
      // do stuff
    }


    JS_DestroyContext(cx);
    JS_DestroyRuntime(rt);
    JS_ShutDown();
    return 0;
}
SpiderMonkeyFun.c: In function ‘myjs_rand’:
SpiderMonkeyFun.c:23: warning: passing argument 1 of ‘DOUBLE_TO_JSVAL’ makes pointer from integer without a cast
SpiderMonkeyFun.c:23: error: called object ‘rand()’ is not a function
SpiderMonkeyFun.c: At top level:
SpiderMonkeyFun.c:28: warning: initialization from incompatible pointer type

1 Ответ

1 голос
/ 30 марта 2011

Похоже, вы забыли точку с запятой после редактирования rand()

: похоже, вы также неправильно используете API.DOUBLE_TO_JSVAL ожидает jsval, как объясняют документы.Попробуйте (я не собирал это сам для тестирования):

JSBool myjs_rand(JSContext *cx, uintN argc, jsval *vp)
{
    int r = rand();
    return JS_NewNumberValue(cx, (double)r, vp);
}
...