1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
/*
* widgets/webview/javascript.c - webkit webview javascript functions
*
* Copyright © 2010-2012 Mason Larobina <mason.larobina@gmail.com>
*
* This program 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, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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/>.
*
*/
#include <JavaScriptCore/JavaScript.h>
#include <stdlib.h>
static JSValueRef
luaJS_tovalue(lua_State *L, JSContextRef context, gint idx, gchar **error);
static gint
luaJS_pushvalue(lua_State *L, JSContextRef context, JSValueRef value, gchar **error);
static gchar*
tostring(JSContextRef context, JSValueRef value, gchar **error)
{
JSStringRef str = JSValueToStringCopy(context, value, NULL);
if (!str) {
if (error)
*error = g_strdup("string conversion failed");
return NULL;
}
size_t size = JSStringGetMaximumUTF8CStringSize(str);
gchar *ret = g_malloc(sizeof(gchar)*size);
JSStringGetUTF8CString(str, ret, size);
JSStringRelease(str);
return ret;
}
static gint
luaJS_pushstring(lua_State *L, JSContextRef context, JSValueRef value, gchar **error)
{
gchar *str = tostring(context, value, error);
if (str) {
lua_pushstring(L, str);
g_free(str);
return 1;
}
return 0;
}
static gint
luaJS_pushobject(lua_State *L, JSContextRef context, JSObjectRef obj, gchar **error)
{
gint top = lua_gettop(L);
JSPropertyNameArrayRef keys = JSObjectCopyPropertyNames(context, obj);
size_t count = JSPropertyNameArrayGetCount(keys);
JSValueRef exception = NULL;
lua_newtable(L);
for (size_t i = 0; i < count; i++) {
/* push table key onto stack */
JSStringRef key = JSPropertyNameArrayGetNameAtIndex(keys, i);
size_t slen = JSStringGetMaximumUTF8CStringSize(key);
gchar cstr[slen];
JSStringGetUTF8CString(key, cstr, slen);
gchar *eptr = NULL;
int n = strtol(cstr, &eptr, 10);
if (!*eptr) /* end at '\0' ? == it's a number! */
lua_pushinteger(L, ++n); /* 0-index array to 1-index array */
else
lua_pushstring(L, cstr);
/* push table value into stack */
JSValueRef val = JSObjectGetProperty(context, obj, key, &exception);
if (exception) {
lua_settop(L, top);
if (error) {
gchar *err = tostring(context, exception, NULL);
*error = g_strdup_printf("JSObjectGetProperty call failed (%s)",
err ? err : "unknown reason");
g_free(err);
}
JSPropertyNameArrayRelease(keys);
return 0;
}
luaJS_pushvalue(L, context, val, error);
if (error && *error) {
lua_settop(L, top);
JSPropertyNameArrayRelease(keys);
return 0;
}
lua_rawset(L, -3);
}
JSPropertyNameArrayRelease(keys);
return 1;
}
/* Push JavaScript value onto Lua stack */
static gint
luaJS_pushvalue(lua_State *L, JSContextRef context, JSValueRef value, gchar **error)
{
switch (JSValueGetType(context, value)) {
case kJSTypeBoolean:
lua_pushboolean(L, JSValueToBoolean(context, value));
return 1;
case kJSTypeNumber:
lua_pushnumber(L, JSValueToNumber(context, value, NULL));
return 1;
case kJSTypeString:
return luaJS_pushstring(L, context, value, error);
case kJSTypeObject:
return luaJS_pushobject(L, context, (JSObjectRef)value, error);
case kJSTypeUndefined:
case kJSTypeNull:
lua_pushnil(L);
return 1;
default:
break;
}
if (error)
*error = g_strdup("Unable to convert value into equivalent Lua type");
return 0;
}
static JSValueRef
luaJS_fromtable(lua_State *L, JSContextRef context, gint idx, gchar **error)
{
gint top = lua_gettop(L);
/* convert relative index into abs */
if (idx < 0)
idx = top + idx + 1;
JSValueRef exception = NULL;
JSObjectRef obj;
size_t len = lua_objlen(L, idx);
if (len) {
obj = JSObjectMakeArray(context, 0, NULL, &exception);
if (exception) {
if (error) {
gchar *err = tostring(context, exception, NULL);
*error = g_strdup_printf("JSObjectMakeArray call failed (%s)",
err ? err : "unknown reason");
g_free(err);
}
return NULL;
}
lua_pushnil(L);
for (guint i = 0; lua_next(L, idx); i++) {
JSValueRef val = luaJS_tovalue(L, context, -1, error);
if (error && *error) {
lua_settop(L, top);
return NULL;
}
lua_pop(L, 1);
JSObjectSetPropertyAtIndex(context, obj, i, val, &exception);
}
} else {
obj = JSObjectMake(context, NULL, NULL);
lua_pushnil(L);
while (lua_next(L, idx)) {
/* We only care about string attributes in the table */
if (lua_type(L, -2) == LUA_TSTRING) {
JSValueRef val = luaJS_tovalue(L, context, -1, error);
if (error && *error) {
lua_settop(L, top);
return NULL;
}
JSStringRef key = JSStringCreateWithUTF8CString(lua_tostring(L, -2));
JSObjectSetProperty(context, obj, key, val,
kJSPropertyAttributeNone, &exception);
JSStringRelease(key);
if (exception) {
if (error) {
gchar *err = tostring(context, exception, NULL);
*error = g_strdup_printf("JSObjectSetProperty call failed (%s)",
err ? err : "unknown reason");
g_free(err);
}
return NULL;
}
}
lua_pop(L, 1);
}
}
return obj;
}
/* Make JavaScript value from Lua value */
static JSValueRef
luaJS_tovalue(lua_State *L, JSContextRef context, gint idx, gchar **error)
{
JSStringRef str;
JSValueRef ret;
switch (lua_type(L, idx)) {
case LUA_TBOOLEAN:
return JSValueMakeBoolean(context, lua_toboolean(L, idx));
case LUA_TNUMBER:
return JSValueMakeNumber(context, lua_tonumber(L, idx));
case LUA_TNIL:
return JSValueMakeNull(context);
case LUA_TNONE:
return JSValueMakeUndefined(context);
case LUA_TSTRING:
str = JSStringCreateWithUTF8CString(lua_tostring(L, idx));
ret = JSValueMakeString(context, str);
JSStringRelease(str);
return ret;
case LUA_TTABLE:
return luaJS_fromtable(L, context, idx, error);
default:
break;
}
if (error)
*error = g_strdup_printf("unhandled Lua->JS type conversion (type %s)",
lua_typename(L, lua_type(L, idx)));
return JSValueMakeUndefined(context);
}
/* create JavaScript exception object from string */
static JSValueRef
luaJS_make_exception(JSContextRef context, const gchar *error)
{
JSStringRef estr = JSStringCreateWithUTF8CString(error);
JSValueRef exception = JSValueMakeString(context, estr);
JSStringRelease(estr);
return JSValueToObject(context, exception, NULL);
}
static JSValueRef
luaJS_registered_function_callback(JSContextRef context, JSObjectRef fun,
JSObjectRef UNUSED(this), size_t argc, const JSValueRef *argv,
JSValueRef *exception)
{
lua_State *L = globalconf.L;
gint top = lua_gettop(L);
/* push Lua callback function */
luaH_object_push(L, JSObjectGetPrivate(fun));
gchar *error = NULL;
/* push function arguments onto Lua stack */
for (guint i = 0; i < argc; i++) {
if (luaJS_pushvalue(L, context, argv[i], &error))
continue;
/* raise JavaScript exception */
gchar *emsg = g_strdup_printf("bad argument #%d to Lua function (%s)",
i, error);
*exception = luaJS_make_exception(context, emsg);
g_free(error);
g_free(emsg);
lua_settop(L, top);
return JSValueMakeUndefined(context);
}
if (lua_pcall(L, argc, 1, 0)) {
/* raise JS exception with Lua error message */
const gchar *error = luaL_checkstring(L, -1);
lua_pop(L, 1);
*exception = luaJS_make_exception(context, error);
return JSValueMakeUndefined(context);
}
JSValueRef ret = luaJS_tovalue(L, context, -1, &error);
lua_pop(L, 1);
/* invalid return type from registered function */
if (error) {
*exception = luaJS_make_exception(context, error);
return JSValueMakeUndefined(context);
}
return ret;
}
static void
luaJS_registered_function_gc(JSObjectRef obj)
{
gpointer userfunc = JSObjectGetPrivate(obj);
luaH_object_unref(globalconf.L, userfunc);
}
static void
luaJS_register_function(JSContextRef context, const gchar *name, gpointer ref)
{
JSStringRef js_name = JSStringCreateWithUTF8CString(name);
JSClassDefinition def = kJSClassDefinitionEmpty;
def.callAsFunction = luaJS_registered_function_callback;
def.className = g_strdup(name);
def.finalize = luaJS_registered_function_gc;
JSClassRef class = JSClassCreate(&def);
JSObjectRef fun = JSObjectMake(context, class, ref);
JSObjectRef global = JSContextGetGlobalObject(context);
JSObjectSetProperty(context, global, js_name, fun,
kJSPropertyAttributeDontDelete | kJSPropertyAttributeReadOnly, NULL);
JSStringRelease(js_name);
JSClassRelease(class);
}
static gint
luaJS_eval_js(lua_State *L, JSContextRef context, const gchar *script,
const gchar *source, bool no_return)
{
JSStringRef js_source, js_script;
JSValueRef result, exception = NULL;
/* evaluate the script and get return value*/
js_script = JSStringCreateWithUTF8CString(script);
js_source = JSStringCreateWithUTF8CString(source);
result = JSEvaluateScript(context, js_script, NULL, js_source, 0, &exception);
/* cleanup */
JSStringRelease(js_script);
JSStringRelease(js_source);
/* handle javascript exceptions while running script */
if (exception) {
lua_pushnil(L);
if (!luaJS_pushstring(L, context, exception, NULL))
lua_pushliteral(L, "Unknown JavaScript exception (unable to "
"convert thrown exception object into string)");
return 2;
}
if (no_return)
return 0;
/* push return value onto lua stack */
gchar *error = NULL;
if (luaJS_pushvalue(L, context, result, &error))
return 1;
/* handle type conversion errors */
lua_pushnil(L);
lua_pushstring(L, error);
g_free(error);
return 2;
}
static gint
luaH_webview_register_function(lua_State *L)
{
WebKitWebFrame *frame = NULL;
webview_data_t *d = luaH_checkwvdata(L, 1);
const gchar *name = luaL_checkstring(L, 2);
/* get lua callback function */
luaH_checkfunction(L, 3);
lua_pushvalue(L, 3);
gpointer ref = luaH_object_ref(L, -1);
if (lua_gettop(L) >= 4) {
if (lua_islightuserdata(L, 4))
frame = lua_touserdata(L, 4);
else if (lua_isstring(L, 4)) {
if (L_TK_FOCUSED == l_tokenize(lua_tostring(L, 4)))
frame = webkit_web_view_get_focused_frame(d->view);
}
}
/* Fall back on main frame */
if (!frame)
frame = webkit_web_view_get_main_frame(d->view);
/* register function */
JSGlobalContextRef context = webkit_web_frame_get_global_context(frame);
luaJS_register_function(context, name, ref);
return 0;
}
static gint
luaH_webview_eval_js(lua_State *L)
{
WebKitWebFrame *frame = NULL;
webview_data_t *d = luaH_checkwvdata(L, 1);
const gchar *script = luaL_checkstring(L, 2);
const gchar *usr_source = NULL;
gchar *source = NULL;
bool no_return = false;
gint top = lua_gettop(L);
if (top >= 3 && !lua_isnil(L, 3)) {
luaH_checktable(L, 3);
/* source filename to use in error messages and webinspector */
if (luaH_rawfield(L, 3, "source") && lua_isstring(L, -1))
usr_source = lua_tostring(L, -1);
if (luaH_rawfield(L, 3, "frame")) {
if (lua_islightuserdata(L, -1))
frame = lua_touserdata(L, -1);
else if (lua_isstring(L, -1)) {
if (L_TK_FOCUSED == l_tokenize(lua_tostring(L, -1)))
frame = webkit_web_view_get_focused_frame(d->view);
}
}
if (luaH_rawfield(L, 3, "no_return"))
no_return = lua_toboolean(L, -1);
lua_settop(L, top);
}
if (!usr_source)
source = luaH_callerinfo(L);
/* Fall back on main frame */
if (!frame)
frame = webkit_web_view_get_main_frame(d->view);
/* evaluate javascript script and push return result onto lua stack */
JSGlobalContextRef context = webkit_web_frame_get_global_context(frame);
gint ret = luaJS_eval_js(L, context, script,
usr_source ? usr_source : (const gchar*)source, no_return);
g_free(source);
return ret;
}
|