2012-06-11 02:17:30 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
|
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
2012-10-26 15:36:14 +04:00
|
|
|
* spidermonkey jsapi compatability glue.
|
2012-06-11 02:17:30 +04:00
|
|
|
*/
|
|
|
|
|
2012-06-19 13:35:51 +04:00
|
|
|
#ifndef _NETSURF_JAVASCRIPT_JSAPI_H_
|
|
|
|
#define _NETSURF_JAVASCRIPT_JSAPI_H_
|
2012-06-11 02:17:30 +04:00
|
|
|
|
2012-06-28 03:17:18 +04:00
|
|
|
#ifdef WITH_MOZJS
|
|
|
|
#include "js/jsapi.h"
|
|
|
|
#else
|
|
|
|
#include "mozjs/jsapi.h"
|
|
|
|
#endif
|
|
|
|
|
2012-06-26 22:55:57 +04:00
|
|
|
#if JS_VERSION <= 180
|
2012-06-30 20:38:12 +04:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-10-28 19:37:55 +04:00
|
|
|
/* *CAUTION* these macros introduce and use jsapi_this and jsapi_rval
|
2012-06-30 20:38:12 +04:00
|
|
|
* parameters, native function code should not conflict with these
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* five parameter jsapi native call */
|
|
|
|
#define JSAPI_NATIVE(name, cx, argc, vp) \
|
2012-10-28 19:37:55 +04:00
|
|
|
jsapi_native_##name(cx, JSObject *jsapi_this, argc, vp, jsval *jsapi_rval)
|
2012-06-30 20:38:12 +04:00
|
|
|
|
|
|
|
/* five parameter function descriptor */
|
|
|
|
#define JSAPI_FS(name, nargs, flags) \
|
|
|
|
JS_FS(#name, jsapi_native_##name, nargs, flags, 0)
|
|
|
|
|
|
|
|
/* function descriptor end */
|
|
|
|
#define JSAPI_FS_END JS_FS_END
|
|
|
|
|
|
|
|
/* return value */
|
2012-10-28 19:37:55 +04:00
|
|
|
#define JSAPI_RVAL(cx, vp) JS_RVAL(cx, jsapi_rval)
|
2012-06-30 20:38:12 +04:00
|
|
|
|
|
|
|
/* return value setter */
|
2012-10-28 19:37:55 +04:00
|
|
|
#define JSAPI_SET_RVAL(cx, vp, v) JS_SET_RVAL(cx, jsapi_rval, v)
|
2012-06-30 20:38:12 +04:00
|
|
|
|
|
|
|
/* arguments */
|
|
|
|
#define JSAPI_ARGV(cx, vp) (vp)
|
|
|
|
|
2012-10-28 19:37:55 +04:00
|
|
|
/* The object instance in a native call */
|
|
|
|
#define JSAPI_THIS_OBJECT(cx,vp) jsapi_this
|
|
|
|
|
2012-06-30 20:38:12 +04:00
|
|
|
/* proprty native calls */
|
|
|
|
#define JSAPI_PROPERTYGET(name, cx, obj, vp) \
|
|
|
|
jsapi_property_##name##_get(cx, obj, jsval id, vp)
|
|
|
|
#define JSAPI_PROPERTYSET(name, cx, obj, vp) \
|
|
|
|
jsapi_property_##name##_set(cx, obj, jsval id, vp)
|
|
|
|
|
|
|
|
/* property specifier */
|
|
|
|
#define JSAPI_PS(name, tinyid, flags) \
|
|
|
|
{ #name , tinyid , flags , jsapi_property_##name##_get , jsapi_property_##name##_set }
|
|
|
|
|
2012-08-17 14:52:59 +04:00
|
|
|
#define JSAPI_PS_RO(name, tinyid, flags) \
|
|
|
|
{ #name , tinyid , flags | JSPROP_READONLY, jsapi_property_##name##_get , NULL }
|
|
|
|
|
2012-06-30 20:38:12 +04:00
|
|
|
#define JSAPI_PS_END { NULL, 0, 0, NULL, NULL }
|
|
|
|
|
|
|
|
static inline JSObject *
|
|
|
|
JS_NewCompartmentAndGlobalObject(JSContext *cx,
|
|
|
|
JSClass *jsclass,
|
2012-06-26 22:55:57 +04:00
|
|
|
JSPrincipals *principals)
|
|
|
|
{
|
|
|
|
JSObject *global;
|
|
|
|
global = JS_NewObject(cx, jsclass, NULL, NULL);
|
|
|
|
if (global == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return global;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define JS_StrictPropertyStub JS_PropertyStub
|
|
|
|
|
2012-06-28 03:39:18 +04:00
|
|
|
#define JSString_to_char(injsstring, outchar, outlen) \
|
2012-07-06 23:00:32 +04:00
|
|
|
outchar = JS_GetStringBytes(injsstring); \
|
|
|
|
outlen = strlen(outchar)
|
2012-06-28 03:39:18 +04:00
|
|
|
|
2012-10-28 19:37:55 +04:00
|
|
|
|
2012-06-30 20:38:12 +04:00
|
|
|
#else /* #if JS_VERSION <= 180 */
|
|
|
|
|
2012-10-28 19:37:55 +04:00
|
|
|
|
2012-06-30 20:38:12 +04:00
|
|
|
/* three parameter jsapi native call */
|
2012-07-01 13:10:00 +04:00
|
|
|
#define JSAPI_NATIVE(name, cx, argc, vp) jsapi_native_##name(cx, argc, vp)
|
2012-06-30 20:38:12 +04:00
|
|
|
|
|
|
|
/* three parameter function descriptor */
|
|
|
|
#define JSAPI_FS(name, nargs, flags) \
|
|
|
|
JS_FS(#name, jsapi_native_##name, nargs, flags)
|
|
|
|
|
|
|
|
/* function descriptor end */
|
|
|
|
#define JSAPI_FS_END JS_FS_END
|
|
|
|
|
|
|
|
/* return value */
|
|
|
|
#define JSAPI_RVAL JS_RVAL
|
|
|
|
|
|
|
|
/* return value setter */
|
|
|
|
#define JSAPI_SET_RVAL JS_SET_RVAL
|
|
|
|
|
|
|
|
/* arguments */
|
|
|
|
#define JSAPI_ARGV(cx, vp) JS_ARGV(cx,vp)
|
|
|
|
|
2012-10-28 19:37:55 +04:00
|
|
|
/* The object instance in a native call */
|
|
|
|
#define JSAPI_THIS_OBJECT(cx,vp) JS_THIS_OBJECT(cx,vp)
|
|
|
|
|
2012-06-30 20:38:12 +04:00
|
|
|
/* proprty native calls */
|
|
|
|
#define JSAPI_PROPERTYGET(name, cx, obj, vp) \
|
|
|
|
jsapi_property_##name##_get(cx, obj, jsid id, vp)
|
|
|
|
#define JSAPI_PROPERTYSET(name, cx, obj, vp) \
|
|
|
|
jsapi_property_##name##_set(cx, obj, jsid id, JSBool strict, vp)
|
|
|
|
|
|
|
|
/* property specifier */
|
|
|
|
#define JSAPI_PS(name, tinyid, flags) { \
|
|
|
|
#name , \
|
|
|
|
tinyid , \
|
|
|
|
flags , \
|
|
|
|
jsapi_property_##name##_get , \
|
|
|
|
jsapi_property_##name##_set \
|
|
|
|
}
|
|
|
|
|
2012-08-17 14:52:59 +04:00
|
|
|
#define JSAPI_PS_RO(name, tinyid, flags) { \
|
|
|
|
#name , \
|
|
|
|
tinyid , \
|
|
|
|
flags | JSPROP_READONLY, \
|
|
|
|
jsapi_property_##name##_get , \
|
|
|
|
NULL \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define JSAPI_PS_END { NULL, 0, 0, NULL, NULL }
|
2012-06-30 20:38:12 +04:00
|
|
|
|
2012-06-28 03:39:18 +04:00
|
|
|
|
|
|
|
#define JSString_to_char(injsstring, outchar, outlen) \
|
|
|
|
outlen = JS_GetStringLength(injsstring); \
|
|
|
|
outchar = alloca(sizeof(char)*(outlen+1)); \
|
|
|
|
JS_EncodeStringToBuffer(injsstring, outchar, outlen); \
|
|
|
|
outchar[outlen] = '\0'
|
|
|
|
|
|
|
|
|
2012-06-26 22:55:57 +04:00
|
|
|
#endif
|
|
|
|
|
2012-08-06 02:42:30 +04:00
|
|
|
|
2012-06-11 02:17:30 +04:00
|
|
|
#endif
|