mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
103 lines
2.2 KiB
C
103 lines
2.2 KiB
C
/* The SpiderMonkey console object implementation. */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "elinks.h"
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
#include "bfu/dialog.h"
|
|
#include "cache/cache.h"
|
|
#include "config/home.h"
|
|
#include "dialogs/menu.h"
|
|
#include "dialogs/status.h"
|
|
#include "ecmascript/ecmascript.h"
|
|
#include "ecmascript/spidermonkey/console.h"
|
|
#include "intl/gettext/libintl.h"
|
|
#include "osdep/newwin.h"
|
|
#include "osdep/sysname.h"
|
|
#include "util/conv.h"
|
|
#include "util/memory.h"
|
|
#include "util/string.h"
|
|
|
|
#include <time.h>
|
|
#include "document/renderer.h"
|
|
#include "document/refresh.h"
|
|
#include "terminal/screen.h"
|
|
|
|
#define DEBUG 0
|
|
|
|
static bool console_get_property(JSContext *ctx, JS::HandleObject hobj, JS::HandleId hid, JS::MutableHandleValue hvp);
|
|
|
|
JSClassOps console_ops = {
|
|
JS_PropertyStub, nullptr,
|
|
console_get_property, JS_StrictPropertyStub,
|
|
nullptr, nullptr, nullptr
|
|
};
|
|
|
|
/* Each @console_class object must have a @window_class parent. */
|
|
const JSClass console_class = {
|
|
"console",
|
|
JSCLASS_HAS_PRIVATE,
|
|
&console_ops
|
|
};
|
|
|
|
const JSPropertySpec console_props[] = {
|
|
{ NULL }
|
|
};
|
|
|
|
/* @console_class.getProperty */
|
|
static bool
|
|
console_get_property(JSContext *ctx, JS::HandleObject hobj, JS::HandleId hid, JS::MutableHandleValue hvp)
|
|
{
|
|
JSObject *parent_win; /* instance of @window_class */
|
|
struct view_state *vs;
|
|
struct document_view *doc_view;
|
|
struct document *document;
|
|
struct session *ses;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool console_log(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
|
|
|
const spidermonkeyFunctionSpec console_funcs[] = {
|
|
{ "log", console_log, 2 },
|
|
{ NULL }
|
|
};
|
|
|
|
static bool
|
|
console_log(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
|
{
|
|
struct ecmascript_interpreter *interpreter = JS_GetContextPrivate(ctx);
|
|
JS::CallArgs args = CallArgsFromVp(argc, vp);
|
|
|
|
if (argc != 1 || !console_log_filename)
|
|
{
|
|
args.rval().setBoolean(false);
|
|
return(true);
|
|
}
|
|
|
|
if (get_opt_bool("ecmascript.enable_console_log", NULL))
|
|
{
|
|
unsigned char *key = JS_EncodeString(ctx, args[0].toString());
|
|
|
|
FILE *f = fopen(console_log_filename, "a");
|
|
|
|
if (f)
|
|
{
|
|
fprintf(f, "%s\n", key);
|
|
fclose(f);
|
|
}
|
|
}
|
|
|
|
args.rval().setBoolean(true);
|
|
return(true);
|
|
}
|