1 /* The SpiderMonkey ECMAScript backend. */
13 #include "ecmascript/spidermonkey/util.h"
15 #include "bfu/dialog.h"
16 #include "cache/cache.h"
17 #include "cookies/cookies.h"
18 #include "dialogs/menu.h"
19 #include "dialogs/status.h"
20 #include "document/html/frames.h"
21 #include "document/document.h"
22 #include "document/forms.h"
23 #include "document/view.h"
24 #include "ecmascript/ecmascript.h"
25 #include "ecmascript/spidermonkey.h"
26 #include "ecmascript/spidermonkey/document.h"
27 #include "ecmascript/spidermonkey/form.h"
28 #include "ecmascript/spidermonkey/location.h"
29 #include "ecmascript/spidermonkey/navigator.h"
30 #include "ecmascript/spidermonkey/unibar.h"
31 #include "ecmascript/spidermonkey/window.h"
32 #include "intl/gettext/libintl.h"
33 #include "main/select.h"
34 #include "osdep/newwin.h"
35 #include "osdep/sysname.h"
36 #include "protocol/http/http.h"
37 #include "protocol/uri.h"
38 #include "session/history.h"
39 #include "session/location.h"
40 #include "session/session.h"
41 #include "session/task.h"
42 #include "terminal/tab.h"
43 #include "terminal/terminal.h"
44 #include "util/conv.h"
45 #include "util/string.h"
46 #include "viewer/text/draw.h"
47 #include "viewer/text/form.h"
48 #include "viewer/text/link.h"
49 #include "viewer/text/vs.h"
53 /*** Global methods */
56 /* TODO? Are there any which need to be implemented? */
58 static int js_module_init_ok
;
61 spidermonkey_error_reporter(JSContext
*ctx
, const char *message
, JSErrorReport
*report
)
63 struct ecmascript_interpreter
*interpreter
= JS_GetContextPrivate(ctx
);
64 struct session
*ses
= interpreter
->vs
->doc_view
->session
;
65 struct terminal
*term
;
66 unsigned char *strict
, *exception
, *warning
, *error
;
69 assert(interpreter
&& interpreter
->vs
&& interpreter
->vs
->doc_view
71 if_assert_failed
goto reported
;
73 term
= ses
->tab
->term
;
76 set_led_value(ses
->status
.ecmascript_led
, 'J');
79 if (!get_opt_bool("ecmascript.error_reporting", ses
)
80 || !init_string(&msg
))
83 strict
= JSREPORT_IS_STRICT(report
->flags
) ? " strict" : "";
84 exception
= JSREPORT_IS_EXCEPTION(report
->flags
) ? " exception" : "";
85 warning
= JSREPORT_IS_WARNING(report
->flags
) ? " warning" : "";
86 error
= !report
->flags
? " error" : "";
88 add_format_to_string(&msg
, _("A script embedded in the current "
89 "document raised the following%s%s%s%s", term
),
90 strict
, exception
, warning
, error
);
92 add_to_string(&msg
, ":\n\n");
93 add_to_string(&msg
, message
);
95 if (report
->linebuf
&& report
->tokenptr
) {
96 int pos
= report
->tokenptr
- report
->linebuf
;
98 add_format_to_string(&msg
, "\n\n%s\n.%*s^%*s.",
101 strlen(report
->linebuf
) - pos
- 1, " ");
104 info_box(term
, MSGBOX_FREE_TEXT
, N_("JavaScript Error"), ALIGN_CENTER
,
108 /* Im clu'les. --pasky */
109 JS_ClearPendingException(ctx
);
113 safeguard(JSContext
*ctx
, JSScript
*script
)
115 struct ecmascript_interpreter
*interpreter
= JS_GetContextPrivate(ctx
);
116 struct session
*ses
= interpreter
->vs
->doc_view
->session
;
117 int max_exec_time
= get_opt_int("ecmascript.max_exec_time", ses
);
119 if (time(NULL
) - interpreter
->exec_start
> max_exec_time
) {
120 struct terminal
*term
= ses
->tab
->term
;
122 /* A killer script! Alert! */
123 ecmascript_timeout_dialog(term
, max_exec_time
);
130 setup_safeguard(struct ecmascript_interpreter
*interpreter
,
133 interpreter
->exec_start
= time(NULL
);
134 JS_SetBranchCallback(ctx
, safeguard
);
139 spidermonkey_init(struct module
*xxx
)
141 js_module_init_ok
= spidermonkey_runtime_addref();
145 spidermonkey_done(struct module
*xxx
)
147 if (js_module_init_ok
)
148 spidermonkey_runtime_release();
153 spidermonkey_get_interpreter(struct ecmascript_interpreter
*interpreter
)
156 JSObject
*window_obj
, *document_obj
, *forms_obj
, *history_obj
, *location_obj
,
157 *statusbar_obj
, *menubar_obj
, *navigator_obj
;
160 if (!js_module_init_ok
) return NULL
;
162 ctx
= JS_NewContext(spidermonkey_runtime
,
163 8192 /* Stack allocation chunk size */);
166 interpreter
->backend_data
= ctx
;
167 JS_SetContextPrivate(ctx
, interpreter
);
168 /* TODO: Make JSOPTION_STRICT and JSOPTION_WERROR configurable. */
169 #ifndef JSOPTION_COMPILE_N_GO
170 #define JSOPTION_COMPILE_N_GO 0 /* Older SM versions don't have it. */
172 /* XXX: JSOPTION_COMPILE_N_GO will go (will it?) when we implement
173 * some kind of bytecode cache. (If we will ever do that.) */
174 JS_SetOptions(ctx
, JSOPTION_VAROBJFIX
| JSOPTION_COMPILE_N_GO
);
176 window_obj
= JS_NewObject(ctx
, (JSClass
*) &window_class
, NULL
, NULL
);
178 spidermonkey_put_interpreter(interpreter
);
181 JS_InitStandardClasses(ctx
, window_obj
);
182 JS_DefineProperties(ctx
, window_obj
, (JSPropertySpec
*) window_props
);
183 spidermonkey_DefineFunctions(ctx
, window_obj
, window_funcs
);
184 JS_SetPrivate(ctx
, window_obj
, interpreter
->vs
); /* to @window_class */
186 document_obj
= spidermonkey_InitClass(ctx
, window_obj
, NULL
,
187 (JSClass
*) &document_class
, NULL
, 0,
188 (JSPropertySpec
*) document_props
,
192 forms_obj
= spidermonkey_InitClass(ctx
, document_obj
, NULL
,
193 (JSClass
*) &forms_class
, NULL
, 0,
194 (JSPropertySpec
*) forms_props
,
198 history_obj
= spidermonkey_InitClass(ctx
, window_obj
, NULL
,
199 (JSClass
*) &history_class
, NULL
, 0,
200 (JSPropertySpec
*) NULL
,
204 location_obj
= spidermonkey_InitClass(ctx
, window_obj
, NULL
,
205 (JSClass
*) &location_class
, NULL
, 0,
206 (JSPropertySpec
*) location_props
,
210 menubar_obj
= JS_InitClass(ctx
, window_obj
, NULL
,
211 (JSClass
*) &menubar_class
, NULL
, 0,
212 (JSPropertySpec
*) unibar_props
, NULL
,
214 JS_SetPrivate(ctx
, menubar_obj
, "t"); /* to @menubar_class */
216 statusbar_obj
= JS_InitClass(ctx
, window_obj
, NULL
,
217 (JSClass
*) &statusbar_class
, NULL
, 0,
218 (JSPropertySpec
*) unibar_props
, NULL
,
220 JS_SetPrivate(ctx
, statusbar_obj
, "s"); /* to @statusbar_class */
222 navigator_obj
= JS_InitClass(ctx
, window_obj
, NULL
,
223 (JSClass
*) &navigator_class
, NULL
, 0,
224 (JSPropertySpec
*) navigator_props
, NULL
,
231 spidermonkey_put_interpreter(struct ecmascript_interpreter
*interpreter
)
236 if (!js_module_init_ok
) return;
237 ctx
= interpreter
->backend_data
;
238 JS_DestroyContext(ctx
);
239 interpreter
->backend_data
= NULL
;
244 spidermonkey_eval(struct ecmascript_interpreter
*interpreter
,
245 struct string
*code
, struct string
*ret
)
251 if (!js_module_init_ok
) return;
252 ctx
= interpreter
->backend_data
;
253 setup_safeguard(interpreter
, ctx
);
254 interpreter
->ret
= ret
;
255 JS_EvaluateScript(ctx
, JS_GetGlobalObject(ctx
),
256 code
->source
, code
->length
, "", 0, &rval
);
261 spidermonkey_eval_stringback(struct ecmascript_interpreter
*interpreter
,
268 if (!js_module_init_ok
) return NULL
;
269 ctx
= interpreter
->backend_data
;
270 setup_safeguard(interpreter
, ctx
);
271 interpreter
->ret
= NULL
;
272 if (JS_EvaluateScript(ctx
, JS_GetGlobalObject(ctx
),
273 code
->source
, code
->length
, "", 0, &rval
)
277 if (JSVAL_IS_VOID(rval
)) {
278 /* Undefined value. */
282 return stracpy(jsval_to_string(ctx
, &rval
));
287 spidermonkey_eval_boolback(struct ecmascript_interpreter
*interpreter
,
296 if (!js_module_init_ok
) return 0;
297 ctx
= interpreter
->backend_data
;
298 setup_safeguard(interpreter
, ctx
);
299 interpreter
->ret
= NULL
;
300 fun
= JS_CompileFunction(ctx
, NULL
, "", 0, NULL
, code
->source
,
301 code
->length
, "", 0);
305 ret
= JS_CallFunction(ctx
, NULL
, fun
, 0, NULL
, &rval
);
306 if (ret
== 2) { /* onClick="history.back()" */
309 if (ret
== JS_FALSE
) {
312 if (JSVAL_IS_VOID(rval
)) {
313 /* Undefined value. */
317 return jsval_to_boolean(ctx
, &rval
);
320 struct module spidermonkey_module
= struct_module(
321 /* name: */ N_("SpiderMonkey"),
324 /* submodules: */ NULL
,
326 /* init: */ spidermonkey_init
,
327 /* done: */ spidermonkey_done