annotate Platforms/Wasm/wasm-application-runner.ts @ 435:e641d3978856 am-vsol-upgrade

WasmWebService now using BaseWebService and supporting cache
author am@osimis.io
date Tue, 04 Dec 2018 11:52:43 +0100
parents 26b90b110719
children 5055031f4a06
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
1 ///<reference path='stone-framework-loader.ts'/>
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
2 ///<reference path='wasm-viewport.ts'/>
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
3
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
4 if (!('WebAssembly' in window)) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
5 alert('Sorry, your browser does not support WebAssembly :(');
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
6 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
7
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
8 declare var StoneFrameworkModule : Stone.Framework;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
9
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
10 // global functions
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
11 var WasmWebService_NotifyError: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
12 var WasmWebService_NotifySuccess: Function = null;
435
e641d3978856 WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents: 431
diff changeset
13 var WasmWebService_NotifyCachedSuccess: Function = null;
431
26b90b110719 added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents: 418
diff changeset
14 var WasmDelayedCallExecutor_ExecuteCallback: Function = null;
386
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
15 var WasmDoAnimation: Function = null;
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
16 var SetStartupParameter: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
17 var CreateWasmApplication: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
18 var CreateCppViewport: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
19 var ReleaseCppViewport: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
20 var StartWasmApplication: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
21 var SendMessageToStoneApplication: Function = null;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
22
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
23
386
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
24 function DoAnimationThread() {
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
25 if (WasmDoAnimation != null) {
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
26 WasmDoAnimation();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
27 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
28
386
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
29 setTimeout(DoAnimationThread, 100); // Update the viewport content every 100ms if need be
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
30 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
31
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
32
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
33 function GetUriParameters(): Map<string, string> {
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
34 var parameters = window.location.search.substr(1);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
35
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
36 if (parameters != null &&
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
37 parameters != '') {
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
38 var result = new Map<string, string>();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
39 var tokens = parameters.split('&');
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
40
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
41 for (var i = 0; i < tokens.length; i++) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
42 var tmp = tokens[i].split('=');
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
43 if (tmp.length == 2) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
44 result[tmp[0]] = decodeURIComponent(tmp[1]);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
45 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
46 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
47
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
48 return result;
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
49 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
50 else {
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
51 return new Map<string, string>();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
52 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
53 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
54
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
55 // function UpdateWebApplication(statusUpdateMessage: string) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
56 // console.log(statusUpdateMessage);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
57 // }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
58
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
59 function _InitializeWasmApplication(orthancBaseUrl: string): void {
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
60
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
61 CreateWasmApplication();
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
62
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
63 // parse uri and transmit the parameters to the app before initializing it
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
64 let parameters = GetUriParameters();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
65
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
66 for (let key in parameters) {
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
67 if (parameters.hasOwnProperty(key)) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
68 SetStartupParameter(key, parameters[key]);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
69 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
70 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
71
418
c23df8b3433b refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 386
diff changeset
72 StartWasmApplication(orthancBaseUrl);
313
8bdc6112bc2e initial resize of canvas
am@osimis.io
parents: 303
diff changeset
73
418
c23df8b3433b refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 386
diff changeset
74 // trigger a first resize of the canvas that has just been initialized
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
75 Stone.WasmViewport.ResizeAll();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
76
386
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
77 DoAnimationThread();
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
78 }
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
79
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
80 function InitializeWasmApplication(wasmModuleName: string, orthancBaseUrl: string) {
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
81
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
82 Stone.Framework.Configure(wasmModuleName);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
83
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
84 // Wait for the Orthanc Framework to be initialized (this initializes
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
85 // the WebAssembly environment) and then, create and initialize the Wasm application
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
86 Stone.Framework.Initialize(true, function () {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
87
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
88 console.log("Connecting C++ methods to JS methods");
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
89
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
90 SetStartupParameter = StoneFrameworkModule.cwrap('SetStartupParameter', null, ['string', 'string']);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
91 CreateWasmApplication = StoneFrameworkModule.cwrap('CreateWasmApplication', null, ['number']);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
92 CreateCppViewport = StoneFrameworkModule.cwrap('CreateCppViewport', 'number', []);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
93 ReleaseCppViewport = StoneFrameworkModule.cwrap('ReleaseCppViewport', null, ['number']);
418
c23df8b3433b refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 386
diff changeset
94 StartWasmApplication = StoneFrameworkModule.cwrap('StartWasmApplication', null, ['string']);
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
95
435
e641d3978856 WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents: 431
diff changeset
96 WasmWebService_NotifyCachedSuccess = StoneFrameworkModule.cwrap('WasmWebService_NotifyCachedSuccess', null, ['number']);
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
97 WasmWebService_NotifySuccess = StoneFrameworkModule.cwrap('WasmWebService_NotifySuccess', null, ['number', 'string', 'array', 'number', 'number']);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
98 WasmWebService_NotifyError = StoneFrameworkModule.cwrap('WasmWebService_NotifyError', null, ['number', 'string', 'number']);
431
26b90b110719 added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents: 418
diff changeset
99 WasmDelayedCallExecutor_ExecuteCallback = StoneFrameworkModule.cwrap('WasmDelayedCallExecutor_ExecuteCallback', null, ['number']);
386
e33659decec5 renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 314
diff changeset
100 WasmDoAnimation = StoneFrameworkModule.cwrap('WasmDoAnimation', null, []);
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
101
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
102 SendMessageToStoneApplication = StoneFrameworkModule.cwrap('SendMessageToStoneApplication', 'string', ['string']);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
103
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
104 console.log("Connecting C++ methods to JS methods - done");
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
105
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
106 // Prevent scrolling
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
107 document.body.addEventListener('touchmove', function (event) {
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
108 event.preventDefault();
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
109 }, false);
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
110
314
97f16214dc5e cleanup
am@osimis.io
parents: 313
diff changeset
111 _InitializeWasmApplication(orthancBaseUrl);
287
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
112 });
2038d76bf13f interaction with HTML/JS
am@osimis.io
parents:
diff changeset
113 }