web.cpp
16.1 KB
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
/*
TE4 - T-Engine 4
Copyright (C) 2009, 2010, 2011, 2012, 2013 Nicolas Casalini
No permission to copy or replicate in any ways, awesomium is not gpl so we cant link directly
*/
extern "C" {
#include <stdio.h>
#include <stdlib.h>
#include "../web-external.h"
}
#include "web.h"
#include "web-internal.h"
#include <Awesomium/WebCore.h>
#include <Awesomium/BitmapSurface.h>
#include <Awesomium/DataSource.h>
#include <Awesomium/STLHelpers.h>
#include "gl_texture_surface.h"
void *(*web_mutex_create)();
void (*web_mutex_destroy)(void *mutex);
void (*web_mutex_lock)(void *mutex);
void (*web_mutex_unlock)(void *mutex);
void *(*web_make_texture)(int w, int h);
void (*web_del_texture)(void *tex);
void (*web_texture_update)(void *tex, int w, int h, const void* buffer);
static void (*web_key_mods)(bool *shift, bool *ctrl, bool *alt, bool *meta);
static void (*web_instant_js)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret);
using namespace Awesomium;
class TE4DataSource;
static WebCore *web_core = NULL;
static WebSession *web_session = NULL;
static TE4DataSource *web_data_source = NULL;
class WebListener;
static char *webstring_to_buf(const WebString &wstr, size_t *flen) {
char *buf;
unsigned int len = 0;
len = wstr.ToUTF8(NULL, 0);
buf = (char*)malloc(len + 1);
wstr.ToUTF8(buf, len);
buf[len] = '\0';
if (flen) *flen = (size_t)len;
return buf;
}
class WebListener :
public WebViewListener::View,
public WebViewListener::Download,
public WebViewListener::Load,
public JSMethodHandler
{
private:
int handlers;
public:
JSObject te4_js;
WebListener(int handlers) { this->handlers = handlers; }
virtual void OnChangeTitle(Awesomium::WebView* caller, const Awesomium::WebString& title) {
char *cur_title = webstring_to_buf(title, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_TITLE_CHANGE;
event->handlers = handlers;
event->data.title = cur_title;
push_event(event);
}
virtual void OnChangeAddressBar(Awesomium::WebView* caller, const Awesomium::WebURL& url) {
}
virtual void OnChangeTooltip(Awesomium::WebView* caller, const Awesomium::WebString& tooltip) {
}
virtual void OnChangeTargetURL(Awesomium::WebView* caller, const Awesomium::WebURL& url) {
}
virtual void OnChangeCursor(Awesomium::WebView* caller, Awesomium::Cursor cursor) {
}
virtual void OnChangeFocus(Awesomium::WebView* caller, Awesomium::FocusedElementType focused_type) {
}
virtual void OnAddConsoleMessage(Awesomium::WebView* caller, const Awesomium::WebString& message, int line_number, const Awesomium::WebString& source) {
char *msg = webstring_to_buf(message, NULL);
char *src = webstring_to_buf(source, NULL);
printf("[WEBCORE:console %s:%d] %s\n", src, line_number, msg);
free(msg);
free(src);
}
virtual void OnShowCreatedWebView(Awesomium::WebView* caller, Awesomium::WebView* new_view, const Awesomium::WebURL& opener_url, const Awesomium::WebURL& target_url, const Awesomium::Rect& initial_pos, bool is_popup) {
new_view->Destroy();
WebString rurl = target_url.spec();
char *url = webstring_to_buf(rurl, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_REQUEST_POPUP_URL;
event->handlers = handlers;
event->data.popup.url = url;
event->data.popup.w = initial_pos.width;
event->data.popup.h = initial_pos.height;
push_event(event);
printf("[WEBCORE] stopped popup to %s (%dx%d), pushing event...\n", url, event->data.popup.w, event->data.popup.h);
}
void OnRequestDownload(WebView* caller, int download_id, const WebURL& wurl, const WebString& suggested_filename, const WebString& mime_type) {
WebString rurl = wurl.spec();
const char *mime = webstring_to_buf(mime_type, NULL);
const char *url = webstring_to_buf(rurl, NULL);
const char *name = webstring_to_buf(suggested_filename, NULL);
printf("[WEBCORE] Download request [name: %s] [mime: %s] [url: %s]\n", name, mime, url);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_REQUEST;
event->handlers = handlers;
event->data.download_request.url = url;
event->data.download_request.name = name;
event->data.download_request.mime = mime;
event->data.download_request.id = download_id;
push_event(event);
}
void OnUpdateDownload(WebView* caller, int download_id, int64 total_bytes, int64 received_bytes, int64 current_speed) {
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_UPDATE;
event->handlers = handlers;
event->data.download_update.id = download_id;
event->data.download_update.got = received_bytes;
event->data.download_update.total = total_bytes;
event->data.download_update.percent = 100 * ((double)received_bytes / (double)total_bytes);
event->data.download_update.speed = current_speed;
push_event(event);
}
void OnFinishDownload(WebView* caller, int download_id, const WebURL& url, const WebString& saved_path) {
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_FINISH;
event->handlers = handlers;
event->data.download_finish.id = download_id;
push_event(event);
}
/// This event occurs when the page begins loading a frame.
virtual void OnBeginLoadingFrame(Awesomium::WebView* caller, int64 frame_id, bool is_main_frame, const Awesomium::WebURL& wurl, bool is_error_page) {
WebString rurl = wurl.spec();
const char *url = webstring_to_buf(rurl, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOADING;
event->handlers = handlers;
event->data.loading.url = url;
event->data.loading.status = 0;
push_event(event);
}
/// This event occurs when a frame fails to load. See error_desc
/// for additional information.
virtual void OnFailLoadingFrame(Awesomium::WebView* caller, int64 frame_id, bool is_main_frame, const Awesomium::WebURL& wurl, int error_code, const Awesomium::WebString& error_desc) {
WebString rurl = wurl.spec();
const char *url = webstring_to_buf(rurl, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOADING;
event->handlers = handlers;
event->data.loading.url = url;
event->data.loading.status = -1;
push_event(event);
}
/// This event occurs when the page finishes loading a frame.
/// The main frame always finishes loading last for a given page load.
virtual void OnFinishLoadingFrame(Awesomium::WebView* caller, int64 frame_id, bool is_main_frame, const Awesomium::WebURL& wurl) {
}
/// This event occurs when the DOM has finished parsing and the
/// window object is available for JavaScript execution.
virtual void OnDocumentReady(Awesomium::WebView* caller, const Awesomium::WebURL& wurl) {
WebString rurl = wurl.spec();
const char *url = webstring_to_buf(rurl, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOADING;
event->handlers = handlers;
event->data.loading.url = url;
event->data.loading.status = 1;
push_event(event);
}
virtual void OnMethodCall(WebView* caller, unsigned int remote_object_id, const WebString& method_name, const JSArray& args) {
if (remote_object_id == te4_js.remote_id() && method_name == WSLit("lua")) {
JSValue arg = args[0];
WebString wcode = arg.ToString();
const char *code = webstring_to_buf(wcode, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_RUN_LUA;
event->handlers = handlers;
event->data.run_lua.code = code;
push_event(event);
}
}
virtual JSValue OnMethodCallWithReturnValue(WebView* caller, unsigned int remote_object_id, const WebString& method_name, const JSArray& jsargs) {
if (remote_object_id != te4_js.remote_id()) {
JSValue ret(false);
return ret;
}
const char *fct = webstring_to_buf(method_name, NULL);
WebJsValue ret;
int nb_args = jsargs.size();
WebJsValue *args = new WebJsValue[nb_args];
for (int i = 0; i < nb_args; i++) {
WebJsValue *wv = &args[i];
JSValue v = jsargs[i];
if (v.IsNull()) {
wv->kind = TE4_WEB_JS_NULL;
} else if (v.IsBoolean()) {
wv->kind = TE4_WEB_JS_BOOLEAN;
wv->data.b = v.ToBoolean();
} else if (v.IsNumber()) {
wv->kind = TE4_WEB_JS_NUMBER;
wv->data.n = v.ToDouble();
} else if (v.IsString()) {
wv->kind = TE4_WEB_JS_STRING;
const char *s = webstring_to_buf(v.ToString(), NULL);
wv->data.s = s;
}
}
web_instant_js(handlers, fct, nb_args, args, &ret);
// Free the fucking strings. I love GC. I want a GC :/
for (int i = 0; i < nb_args; i++) {
WebJsValue *wv = &args[i];
JSValue v = jsargs[i];
if (v.IsString()) free((void*)wv->data.s);
}
delete args;
free((void*)fct);
if (ret.kind == TE4_WEB_JS_NULL) return JSValue::Null();
else if (ret.kind == TE4_WEB_JS_BOOLEAN) return JSValue(ret.data.b);
else if (ret.kind == TE4_WEB_JS_NUMBER) return JSValue(ret.data.n);
else if (ret.kind == TE4_WEB_JS_STRING) {
WebString s = WebString::CreateFromUTF8(ret.data.s, strlen(ret.data.s));
return JSValue(s);
}
return JSValue();
}
};
class TE4DataSource : public DataSource {
public:
virtual void OnRequest(int request_id, const WebString& wpath) {
const char *path = webstring_to_buf(wpath, NULL);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOCAL_REQUEST;
event->data.local_request.id = request_id;
event->data.local_request.path = path;
push_event(event);
}
};
class WebViewOpaque {
public:
WebView *view;
WebListener *listener;
};
void te4_web_new(web_view_type *view, int w, int h) {
WebViewOpaque *opaque = new WebViewOpaque();
view->opaque = (void*)opaque;
opaque->view = web_core->CreateWebView(w, h, web_session, kWebViewType_Offscreen);
opaque->listener = new WebListener(view->handlers);
opaque->view->set_view_listener(opaque->listener);
opaque->view->set_download_listener(opaque->listener);
opaque->view->set_load_listener(opaque->listener);
opaque->view->set_js_method_handler(opaque->listener);
view->w = w;
view->h = h;
view->closed = false;
opaque->listener->te4_js = (opaque->view->CreateGlobalJavascriptObject(WSLit("te4"))).ToObject();
opaque->listener->te4_js.SetCustomMethod(WSLit("lua"), false);
opaque->view->SetTransparent(true);
printf("Created webview: %dx%d\n", w, h);
}
bool te4_web_close(web_view_type *view) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (!view->closed) {
opaque->view->Destroy();
delete opaque->listener;
view->closed = true;
printf("Destroyed webview\n");
return true;
}
return false;
}
void te4_web_load_url(web_view_type *view, const char *url) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
size_t urllen = strlen(url);
WebURL lurl(WebString::CreateFromUTF8(url, urllen));
opaque->view->LoadURL(lurl);
}
void te4_web_set_js_call(web_view_type *view, const char *name) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
opaque->listener->te4_js.SetCustomMethod(WebString::CreateFromUTF8(name, strlen(name)), true);
}
void *te4_web_toscreen(web_view_type *view, int *w, int *h) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return NULL;
const GLTextureSurface* surface = static_cast<const GLTextureSurface*> (opaque->view->surface());
if (!surface) return NULL;
*w = (*w < 0) ? view->w : *w;
*h = (*h < 0) ? view->h : *h;
return surface->GetTexture();
}
bool te4_web_loading(web_view_type *view) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return false;
return opaque->view->IsLoading();
}
void te4_web_focus(web_view_type *view, bool focus) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
if (focus) opaque->view->Focus();
else opaque->view->Unfocus();
}
void te4_web_inject_mouse_move(web_view_type *view, int x, int y) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
opaque->view->InjectMouseMove(x, y);
}
void te4_web_inject_mouse_wheel(web_view_type *view, int x, int y) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
opaque->view->InjectMouseWheel(-y, -x);
}
void te4_web_inject_mouse_button(web_view_type *view, int kind, bool up) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
MouseButton b = kMouseButton_Left;
if (kind == 2) b = kMouseButton_Middle;
else if (kind == 3) b = kMouseButton_Right;
if (up) opaque->view->InjectMouseUp(b);
else opaque->view->InjectMouseDown(b);
}
void te4_web_inject_key(web_view_type *view, int scancode, int asymb, const char *uni, int unilen, bool up) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
WebKeyboardEvent keyEvent;
keyEvent.type = !up ? WebKeyboardEvent::kTypeKeyDown : WebKeyboardEvent::kTypeKeyUp;
char* buf = new char[20];
keyEvent.virtual_key_code = asymb;
Awesomium::GetKeyIdentifierFromVirtualKeyCode(keyEvent.virtual_key_code, &buf);
strcpy(keyEvent.key_identifier, buf);
delete[] buf;
bool shift, ctrl, alt, meta;
web_key_mods(&shift, &ctrl, &alt, &meta);
keyEvent.modifiers = 0;
if (shift) keyEvent.modifiers |= WebKeyboardEvent::kModShiftKey;
else if (ctrl) keyEvent.modifiers |= WebKeyboardEvent::kModControlKey;
else if (alt) keyEvent.modifiers |= WebKeyboardEvent::kModAltKey;
else if (meta) keyEvent.modifiers |= WebKeyboardEvent::kModMetaKey;
keyEvent.native_key_code = scancode;
if (up) {
opaque->view->InjectKeyboardEvent(keyEvent);
} else {
if (uni) {
WebString wstr = WebString::CreateFromUTF8(uni, unilen);
memcpy(keyEvent.text, wstr.data(), wstr.length() * sizeof(wchar16));
memcpy(keyEvent.unmodified_text, wstr.data(), wstr.length() * sizeof(wchar16));
}
opaque->view->InjectKeyboardEvent(keyEvent);
if (uni) {
keyEvent.type = WebKeyboardEvent::kTypeChar;
keyEvent.virtual_key_code = keyEvent.text[0];
keyEvent.native_key_code = keyEvent.text[0];
opaque->view->InjectKeyboardEvent(keyEvent);
}
}
}
void te4_web_download_action(web_view_type *view, long id, const char *path) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
if (path) {
WebString wpath = WebString::CreateFromUTF8(path, strlen(path));
opaque->view->DidChooseDownloadPath(id, wpath);
} else {
opaque->view->DidCancelDownload(id);
}
}
void te4_web_reply_local(int id, const char *mime, const char *result, size_t len) {
WebString wmime = WebString::CreateFromUTF8(mime, strlen(mime));
web_data_source->SendResponse(id, len, (unsigned char *)result, wmime);
}
void te4_web_do_update(void (*cb)(WebEvent*)) {
if (!web_core) return;
web_core->Update();
WebEvent *event;
while (event = pop_event()) {
cb(event);
switch (event->kind) {
case TE4_WEB_EVENT_TITLE_CHANGE:
free((void*)event->data.title);
break;
case TE4_WEB_EVENT_REQUEST_POPUP_URL:
free((void*)event->data.popup.url);
break;
case TE4_WEB_EVENT_DOWNLOAD_REQUEST:
free((void*)event->data.download_request.url);
free((void*)event->data.download_request.name);
free((void*)event->data.download_request.mime);
break;
case TE4_WEB_EVENT_LOADING:
free((void*)event->data.loading.url);
break;
case TE4_WEB_EVENT_LOCAL_REQUEST:
free((void*)event->data.local_request.path);
break;
case TE4_WEB_EVENT_RUN_LUA:
free((void*)event->data.run_lua.code);
break;
}
delete event;
}
}
void te4_web_setup(
int argc, char **gargv, char *spawnc,
void*(*mutex_create)(), void(*mutex_destroy)(void*), void(*mutex_lock)(void*), void(*mutex_unlock)(void*),
void *(*make_texture)(int, int), void (*del_texture)(void*), void (*texture_update)(void*, int, int, const void*),
void (*key_mods)(bool*, bool*, bool*, bool*),
void (*instant_js)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret)
) {
web_mutex_create = mutex_create;
web_mutex_destroy = mutex_destroy;
web_mutex_lock = mutex_lock;
web_mutex_unlock = mutex_unlock;
web_make_texture = make_texture;
web_del_texture = del_texture;
web_texture_update = texture_update;
web_key_mods = key_mods;
web_instant_js = instant_js;
if (!web_core) {
web_core = WebCore::Initialize(WebConfig());
web_core->set_surface_factory(new GLTextureSurfaceFactory());
web_session = web_core->CreateWebSession(WSLit(""), WebPreferences());
web_data_source = new TE4DataSource();
web_session->AddDataSource(WSLit("te4"), web_data_source);
}
}
void te4_web_initialize() {
te4_web_init_utils();
}