1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/ecmascript/spidermonkey/implementation.c

127 lines
2.9 KiB
C
Raw Normal View History

2021-09-15 10:22:36 -04:00
/* 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"
2021-09-15 13:29:31 -04:00
#include "util/conv.h"
2021-09-15 10:22:36 -04:00
#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;
}
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;
2021-09-15 13:29:31 -04:00
if (!init_string(&str)) {
mem_free(title);
args.rval().setNull();
return true;
}
2021-09-15 10:22:36 -04:00
2021-09-15 13:29:31 -04:00
add_to_string(&str, "<!doctype html>\n<html><head><title>");
add_html_to_string(&str, title, strlen(title));
add_to_string(&str, "</title></head><body></body></html>");
2021-09-15 10:22:36 -04:00
// 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;
}