mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
124 lines
2.8 KiB
C
124 lines
2.8 KiB
C
|
/* The SpiderMonkey domimplementation object. */
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "elinks.h"
|
||
|
|
||
|
#include "ecmascript/ecmascript.h"
|
||
|
#include "ecmascript/spidermonkey/document.h"
|
||
|
#include "ecmascript/spidermonkey/implementation.h"
|
||
|
#include "ecmascript/spidermonkey/util.h"
|
||
|
#include <jsfriendapi.h>
|
||
|
|
||
|
#include <libxml/HTMLparser.h>
|
||
|
#include <libxml++/libxml++.h>
|
||
|
|
||
|
static JSClassOps implementation_ops = {
|
||
|
nullptr, // addProperty
|
||
|
nullptr, // deleteProperty
|
||
|
nullptr, // enumerate
|
||
|
nullptr, // newEnumerate
|
||
|
nullptr, // resolve
|
||
|
nullptr, // mayResolve
|
||
|
nullptr, // finalize
|
||
|
nullptr, // call
|
||
|
nullptr, // hasInstance
|
||
|
nullptr, // construct
|
||
|
JS_GlobalObjectTraceHook
|
||
|
};
|
||
|
|
||
|
static JSClass implementation_class = {
|
||
|
"implementation",
|
||
|
JSCLASS_HAS_PRIVATE,
|
||
|
&implementation_ops
|
||
|
};
|
||
|
|
||
|
static bool
|
||
|
implementation_createHTMLDocument(JSContext *ctx, unsigned int argc, JS::Value *rval)
|
||
|
{
|
||
|
#ifdef ECMASCRIPT_DEBUG
|
||
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
||
|
#endif
|
||
|
JS::Value val;
|
||
|
JS::RootedObject parent_doc(ctx); /* instance of @document_class */
|
||
|
JS::CallArgs args = JS::CallArgsFromVp(argc, rval);
|
||
|
JS::RootedObject hobj(ctx, &args.thisv().toObject());
|
||
|
|
||
|
JS::Realm *comp = js::GetContextRealm(ctx);
|
||
|
|
||
|
if (!comp || argc != 1) {
|
||
|
#ifdef ECMASCRIPT_DEBUG
|
||
|
fprintf(stderr, "%s:%s %d\n", __FILE__, __FUNCTION__, __LINE__);
|
||
|
#endif
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
struct ecmascript_interpreter *interpreter = JS::GetRealmPrivate(comp);
|
||
|
|
||
|
if (!JS_InstanceOf(ctx, hobj, &implementation_class, &args)) {
|
||
|
#ifdef ECMASCRIPT_DEBUG
|
||
|
fprintf(stderr, "%s:%s %d\n", __FILE__, __FUNCTION__, __LINE__);
|
||
|
#endif
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
char *title = jsval_to_string(ctx, args[0]);
|
||
|
|
||
|
if (title) {
|
||
|
struct string str;
|
||
|
init_string(&str);
|
||
|
|
||
|
add_to_string(&str, "<head><title>");
|
||
|
add_to_string(&str, title);
|
||
|
add_to_string(&str, "</title></head>");
|
||
|
|
||
|
// Parse HTML and create a DOM tree
|
||
|
xmlDoc* doc = htmlReadDoc((xmlChar*)str.source, NULL, "utf-8",
|
||
|
HTML_PARSE_RECOVER | HTML_PARSE_NOERROR | HTML_PARSE_NOWARNING);
|
||
|
// Encapsulate raw libxml document in a libxml++ wrapper
|
||
|
xmlpp::Document *docu = new xmlpp::Document(doc);
|
||
|
done_string(&str);
|
||
|
mem_free(title);
|
||
|
|
||
|
JSObject *obj = getDocument(ctx, docu);
|
||
|
|
||
|
if (obj) {
|
||
|
args.rval().setObject(*obj);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
args.rval().setNull();
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
static const spidermonkeyFunctionSpec implementation_funcs[] = {
|
||
|
{ "createHTMLDocument", implementation_createHTMLDocument, 1 },
|
||
|
{ NULL }
|
||
|
};
|
||
|
|
||
|
|
||
|
JSObject *
|
||
|
getImplementation(JSContext *ctx)
|
||
|
{
|
||
|
#ifdef ECMASCRIPT_DEBUG
|
||
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
||
|
#endif
|
||
|
JSObject *el = JS_NewObject(ctx, &implementation_class);
|
||
|
|
||
|
if (!el) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
JS::RootedObject r_el(ctx, el);
|
||
|
spidermonkey_DefineFunctions(ctx, el, implementation_funcs);
|
||
|
|
||
|
return el;
|
||
|
}
|