144a87f08Sstephan<!doctype html>
244a87f08Sstephan<html lang="en-us">
344a87f08Sstephan  <head>
444a87f08Sstephan    <meta charset="utf-8">
544a87f08Sstephan    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
644a87f08Sstephan    <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
744a87f08Sstephan    <link rel="stylesheet" href="common/emscripten.css"/>
844a87f08Sstephan    <link rel="stylesheet" href="common/testing.css"/>
944a87f08Sstephan    <title>speedtest1.wasm Worker</title>
1044a87f08Sstephan  </head>
1144a87f08Sstephan  <body>
1244a87f08Sstephan    <header id='titlebar'>speedtest1.wasm Worker</header>
1344a87f08Sstephan    <div>See also: <a href='speedtest1.html'>A main-thread variant of this page.</a></div>
1444a87f08Sstephan    <!-- emscripten bits -->
1544a87f08Sstephan    <figure id="module-spinner">
1644a87f08Sstephan      <div class="spinner"></div>
1744a87f08Sstephan      <div class='center'><strong>Initializing app...</strong></div>
1844a87f08Sstephan      <div class='center'>
1944a87f08Sstephan        On a slow internet connection this may take a moment.  If this
2044a87f08Sstephan        message displays for "a long time", intialization may have
2144a87f08Sstephan        failed and the JavaScript console may contain clues as to why.
2244a87f08Sstephan      </div>
2344a87f08Sstephan    </figure>
2444a87f08Sstephan    <div class="emscripten" id="module-status">Downloading...</div>
2544a87f08Sstephan    <div class="emscripten">
2644a87f08Sstephan      <progress value="0" max="100" id="module-progress" hidden='1'></progress>
2744a87f08Sstephan    </div><!-- /emscripten bits -->
2844a87f08Sstephan    <fieldset id='ui-controls' class='hidden'>
2944a87f08Sstephan      <legend>Options</legend>
3044a87f08Sstephan      <div id='toolbar'>
3144a87f08Sstephan        <div id='toolbar-select'>
3244a87f08Sstephan          <select id='select-flags' size='10' multiple></select>
33*b5ae85ecSstephan          <div>The following flags can be passed as URL parameters:
34*b5ae85ecSstephan            vfs=NAME, size=N
35*b5ae85ecSstephan          </div>
3644a87f08Sstephan        </div>
37e66b2681Sstephan        <div class='toolbar-inner-vertical'>
38e66b2681Sstephan          <div id='toolbar-selected-flags'></div>
3928ef9bddSstephan          <div class='toolbar-inner-vertical'>
4028ef9bddSstephan            <span>&rarr; <a id='link-main-thread' href='#' target='speedtest-main'
41e66b2681Sstephan                            title='Start speedtest1.html with the selected flags'>speedtest1.html</a>
42e66b2681Sstephan            </span>
4328ef9bddSstephan            <span>&rarr; <a id='link-wasmfs' href='#' target='speedtest-wasmfs'
4428ef9bddSstephan                            title='Start speedtest1-wasmfs.html with the selected flags'>speedtest1-wasmfs.html</a>
4528ef9bddSstephan            </span>
460144a848Sstephan            <span>&rarr; <a id='link-kvvfs' href='#' target='speedtest-kvvfs'
470144a848Sstephan                            title='Start speedtest1-kvvfs.html with the selected flags'>speedtest1-kvvfs.html</a>
480144a848Sstephan            </span>
4928ef9bddSstephan          </div>
5044a87f08Sstephan        </div>
5144a87f08Sstephan        <div class='toolbar-inner-vertical' id='toolbar-runner-controls'>
5244a87f08Sstephan          <button id='btn-reset-flags'>Reset Flags</button>
5344a87f08Sstephan          <button id='btn-output-clear'>Clear output</button>
5444a87f08Sstephan          <button id='btn-run'>Run</button>
5544a87f08Sstephan        </div>
5644a87f08Sstephan      </div>
5744a87f08Sstephan    </fieldset>
5844a87f08Sstephan    <div>
5944a87f08Sstephan      <span class='input-wrapper'>
6044a87f08Sstephan        <input type='checkbox' class='disable-during-eval' id='cb-reverse-log-order' checked></input>
6144a87f08Sstephan        <label for='cb-reverse-log-order' id='lbl-reverse-log-order'>Reverse log order</label>
6244a87f08Sstephan      </span>
6344a87f08Sstephan    </div>
641174c23eSstephan    <div id='test-output'>
651174c23eSstephan    </div>
661174c23eSstephan    <div id='tips'>
671174c23eSstephan      <strong>Tips:</strong>
681174c23eSstephan      <ul>
691174c23eSstephan        <li>Control-click the flags to (de)select multiple flags.</li>
70f5bf66c8Sstephan        <li>The <tt>--big-transactions</tt> flag is important for two
71f5bf66c8Sstephan          of the bigger tests. Without it, those tests create a
72f5bf66c8Sstephan          combined total of 140k implicit transactions, reducing their
73f5bf66c8Sstephan          speed to an absolute crawl, especially when WASMFS is
74f5bf66c8Sstephan          activated.
75f5bf66c8Sstephan        </li>
761174c23eSstephan        <li>The easiest way to try different optimization levels is,
771174c23eSstephan          from this directory:
781174c23eSstephan          <pre>$ rm -f speedtest1.js; make -e emcc_opt='-O2' speedtest1.js</pre>
791174c23eSstephan          Then reload this page. -O2 seems to consistently produce the fastest results.
801174c23eSstephan        </li>
811174c23eSstephan        </ul>
821174c23eSstephan    </div>
8344a87f08Sstephan    <style>
8444a87f08Sstephan      #test-output {
8544a87f08Sstephan          white-space: break-spaces;
8644a87f08Sstephan          overflow: auto;
8744a87f08Sstephan      }
881174c23eSstephan      div#tips { margin-top: 1em; }
8944a87f08Sstephan      #toolbar {
9044a87f08Sstephan          display: flex;
9144a87f08Sstephan          flex-direction: row;
9244a87f08Sstephan          flex-wrap: wrap;
9344a87f08Sstephan      }
9444a87f08Sstephan      #toolbar > * {
9544a87f08Sstephan          margin: 0 0.5em;
9644a87f08Sstephan      }
9744a87f08Sstephan      .toolbar-inner-vertical {
9844a87f08Sstephan          display: flex;
9944a87f08Sstephan          flex-direction: column;
10044a87f08Sstephan          justify-content: space-between;
10144a87f08Sstephan      }
10244a87f08Sstephan      #toolbar-select {
10344a87f08Sstephan          display: flex;
10444a87f08Sstephan          flex-direction: column;
10544a87f08Sstephan      }
10644a87f08Sstephan      .toolbar-inner-vertical > *, #toolbar-select > * {
10744a87f08Sstephan          margin: 0.2em 0;
10844a87f08Sstephan      }
10944a87f08Sstephan      #select-flags > option {
11044a87f08Sstephan          white-space: pre;
11144a87f08Sstephan          font-family: monospace;
11244a87f08Sstephan      }
11344a87f08Sstephan      fieldset {
11444a87f08Sstephan          border-radius: 0.5em;
11544a87f08Sstephan      }
11644a87f08Sstephan      #toolbar-runner-controls { flex-grow: 1 }
11744a87f08Sstephan      #toolbar-runner-controls > * { flex: 1 0 auto }
11844a87f08Sstephan      #toolbar-selected-flags::before {
11944a87f08Sstephan        font-family: initial;
12044a87f08Sstephan        content:"Selected flags: ";
12144a87f08Sstephan      }
12244a87f08Sstephan      #toolbar-selected-flags {
123e66b2681Sstephan        display: flex;
124e66b2681Sstephan        flex-direction: column;
12544a87f08Sstephan        font-family: monospace;
12644a87f08Sstephan        justify-content: flex-start;
12744a87f08Sstephan      }
12844a87f08Sstephan    </style>
129*b5ae85ecSstephan    <script src="common/SqliteTestUtil.js"></script>
13044a87f08Sstephan    <script>(function(){
13144a87f08Sstephan      'use strict';
13244a87f08Sstephan      const E = (sel)=>document.querySelector(sel);
13344a87f08Sstephan      const eOut = E('#test-output');
13444a87f08Sstephan      const log2 = function(cssClass,...args){
13544a87f08Sstephan        let ln;
13644a87f08Sstephan        if(1 || cssClass){
13744a87f08Sstephan          ln = document.createElement('div');
13844a87f08Sstephan          if(cssClass) ln.classList.add(cssClass);
13944a87f08Sstephan          ln.append(document.createTextNode(args.join(' ')));
14044a87f08Sstephan        }else{
14144a87f08Sstephan          // This doesn't work with the "reverse order" option!
14244a87f08Sstephan          ln = document.createTextNode(args.join(' ')+'\n');
14344a87f08Sstephan        }
14444a87f08Sstephan        eOut.append(ln);
14544a87f08Sstephan      };
14644a87f08Sstephan      const log = (...args)=>{
14744a87f08Sstephan        //console.log(...args);
14844a87f08Sstephan        log2('', ...args);
14944a87f08Sstephan      };
15044a87f08Sstephan      const logErr = function(...args){
15144a87f08Sstephan        //console.error(...args);
15244a87f08Sstephan        log2('error', ...args);
15344a87f08Sstephan      };
15444a87f08Sstephan      const logWarn = function(...args){
15544a87f08Sstephan        //console.warn(...args);
15644a87f08Sstephan        log2('warning', ...args);
15744a87f08Sstephan      };
15844a87f08Sstephan
159e66b2681Sstephan      const spacePad = function(str,len=21){
16044a87f08Sstephan        if(str.length===len) return str;
16144a87f08Sstephan        else if(str.length>len) return str.substr(0,len);
16244a87f08Sstephan        const a = []; a.length = len - str.length;
16344a87f08Sstephan        return str+a.join(' ');
16444a87f08Sstephan      };
16544a87f08Sstephan      // OPTION elements seem to ignore white-space:pre, so do this the hard way...
166e66b2681Sstephan      const nbspPad = function(str,len=21){
16744a87f08Sstephan        if(str.length===len) return str;
16844a87f08Sstephan        else if(str.length>len) return str.substr(0,len);
16944a87f08Sstephan        const a = []; a.length = len - str.length;
17044a87f08Sstephan        return str+a.join('&nbsp;');
17144a87f08Sstephan      };
17244a87f08Sstephan
173*b5ae85ecSstephan      const W = new Worker("speedtest1-worker.js"+self.location.search);
17444a87f08Sstephan      const mPost = function(msgType,payload){
17544a87f08Sstephan        W.postMessage({type: msgType, data: payload});
17644a87f08Sstephan      };
17744a87f08Sstephan
17844a87f08Sstephan      const eFlags = E('#select-flags');
17944a87f08Sstephan      const eSelectedFlags = E('#toolbar-selected-flags');
180e66b2681Sstephan      const eLinkMainThread = E('#link-main-thread');
18128ef9bddSstephan      const eLinkWasmfs = E('#link-wasmfs');
1820144a848Sstephan      const eLinkKvvfs = E('#link-kvvfs');
183*b5ae85ecSstephan      const urlParams = new URL(self.location.href).searchParams;
184*b5ae85ecSstephan      const getSelectedFlags = ()=>{
185*b5ae85ecSstephan          const f = Array.prototype.map.call(eFlags.selectedOptions, (v)=>v.value);
186*b5ae85ecSstephan          [
187*b5ae85ecSstephan              'size', 'vfs'
188*b5ae85ecSstephan          ].forEach(function(k){
189*b5ae85ecSstephan              if(urlParams.has(k)) f.push('--'+k, urlParams.get(k));
190*b5ae85ecSstephan          });
191*b5ae85ecSstephan          return f;
192*b5ae85ecSstephan      };
19344a87f08Sstephan      const updateSelectedFlags = function(){
19444a87f08Sstephan        eSelectedFlags.innerText = '';
195e66b2681Sstephan        const flags = getSelectedFlags();
196e66b2681Sstephan        flags.forEach(function(f){
19744a87f08Sstephan          const e = document.createElement('span');
19844a87f08Sstephan          e.innerText = f;
19944a87f08Sstephan          eSelectedFlags.appendChild(e);
20044a87f08Sstephan        });
201e66b2681Sstephan        const rxStripDash = /^(-+)?/;
202e66b2681Sstephan        const comma = flags.map((v)=>v.replace(rxStripDash,'')).join(',');
20328ef9bddSstephan        eLinkMainThread.setAttribute('target', 'speedtest1-main-'+comma);
204e66b2681Sstephan        eLinkMainThread.href = 'speedtest1.html?flags='+comma;
20528ef9bddSstephan        eLinkWasmfs.setAttribute('target', 'speedtest1-wasmfs-'+comma);
20628ef9bddSstephan        eLinkWasmfs.href = 'speedtest1-wasmfs.html?flags='+comma;
2070144a848Sstephan        eLinkKvvfs.setAttribute('target', 'speedtest1-kvvfs-'+comma);
2080144a848Sstephan        eLinkKvvfs.href = 'speedtest1-kvvfs.html?flags='+comma;
20944a87f08Sstephan      };
21044a87f08Sstephan      eFlags.addEventListener('change', updateSelectedFlags );
21144a87f08Sstephan      {
21244a87f08Sstephan        const flags = Object.create(null);
21344a87f08Sstephan        /* TODO? Flags which require values need custom UI
21444a87f08Sstephan           controls and some of them make little sense here
21544a87f08Sstephan           (e.g. --script FILE). */
21644a87f08Sstephan        flags["autovacuum"] = "Enable AUTOVACUUM mode";
217dd628ed5Sstephan        flags["big-transactions"] = "Important for tests 410 and 510!";
21844a87f08Sstephan        //flags["cachesize"] = "N       Set the cache size to N";
21944a87f08Sstephan        flags["checkpoint"] = "Run PRAGMA wal_checkpoint after each test case";
22044a87f08Sstephan        flags["exclusive"] = "Enable locking_mode=EXCLUSIVE";
22144a87f08Sstephan        flags["explain"] = "Like --sqlonly but with added EXPLAIN keywords";
22244a87f08Sstephan        //flags["heap"] = "SZ MIN       Memory allocator uses SZ bytes & min allocation MIN";
22344a87f08Sstephan        flags["incrvacuum"] = "Enable incremenatal vacuum mode";
22444a87f08Sstephan        //flags["journal"] = "M         Set the journal_mode to M";
22544a87f08Sstephan        //flags["key"] = "KEY           Set the encryption key to KEY";
22644a87f08Sstephan        //flags["lookaside"] = "N SZ    Configure lookaside for N slots of SZ bytes each";
22744a87f08Sstephan        flags["memdb"] = "Use an in-memory database";
22844a87f08Sstephan        //flags["mmap"] = "SZ           MMAP the first SZ bytes of the database file";
22944a87f08Sstephan        flags["multithread"] = "Set multithreaded mode";
23044a87f08Sstephan        flags["nomemstat"] = "Disable memory statistics";
2311174c23eSstephan        flags["nomutex"] = "Open db with SQLITE_OPEN_NOMUTEX";
23244a87f08Sstephan        flags["nosync"] = "Set PRAGMA synchronous=OFF";
23344a87f08Sstephan        flags["notnull"] = "Add NOT NULL constraints to table columns";
23444a87f08Sstephan        //flags["output"] = "FILE       Store SQL output in FILE";
23544a87f08Sstephan        //flags["pagesize"] = "N        Set the page size to N";
23644a87f08Sstephan        //flags["pcache"] = "N SZ       Configure N pages of pagecache each of size SZ bytes";
23744a87f08Sstephan        //flags["primarykey"] = "Use PRIMARY KEY instead of UNIQUE where appropriate";
23844a87f08Sstephan        //flags["repeat"] = "N          Repeat each SELECT N times (default: 1)";
23944a87f08Sstephan        flags["reprepare"] = "Reprepare each statement upon every invocation";
24044a87f08Sstephan        //flags["reserve"] = "N         Reserve N bytes on each database page";
24144a87f08Sstephan        //flags["script"] = "FILE       Write an SQL script for the test into FILE";
24244a87f08Sstephan        flags["serialized"] = "Set serialized threading mode";
24344a87f08Sstephan        flags["singlethread"] = "Set single-threaded mode - disables all mutexing";
24444a87f08Sstephan        flags["sqlonly"] = "No-op.  Only show the SQL that would have been run.";
24544a87f08Sstephan        flags["shrink"] = "memory     Invoke sqlite3_db_release_memory() frequently.";
24644a87f08Sstephan        //flags["size"] = "N            Relative test size.  Default=100";
24744a87f08Sstephan        flags["strict"] = "Use STRICT table where appropriate";
24844a87f08Sstephan        flags["stats"] = "Show statistics at the end";
24944a87f08Sstephan        //flags["temp"] = "N            N from 0 to 9.  0: no temp table. 9: all temp tables";
25044a87f08Sstephan        //flags["testset"] = "T         Run test-set T (main, cte, rtree, orm, fp, debug)";
25144a87f08Sstephan        flags["trace"] = "Turn on SQL tracing";
25244a87f08Sstephan        //flags["threads"] = "N         Use up to N threads for sorting";
25344a87f08Sstephan        /*
25444a87f08Sstephan          The core API's WASM build does not support UTF16, but in
25544a87f08Sstephan          this app it's not an issue because the data are not crossing
25644a87f08Sstephan          JS/WASM boundaries.
25744a87f08Sstephan        */
25844a87f08Sstephan        flags["utf16be"] = "Set text encoding to UTF-16BE";
25944a87f08Sstephan        flags["utf16le"] = "Set text encoding to UTF-16LE";
26044a87f08Sstephan        flags["verify"] = "Run additional verification steps.";
26144a87f08Sstephan        flags["without"] = "rowid     Use WITHOUT ROWID where appropriate";
26244a87f08Sstephan        const preselectedFlags = [
263dd628ed5Sstephan          'big-transactions',
264dd628ed5Sstephan          'memdb',
265dd628ed5Sstephan          'singlethread'
26644a87f08Sstephan        ];
26744a87f08Sstephan        Object.keys(flags).sort().forEach(function(f){
26844a87f08Sstephan          const opt = document.createElement('option');
26944a87f08Sstephan          eFlags.appendChild(opt);
27044a87f08Sstephan          const lbl = nbspPad('--'+f)+flags[f];
27144a87f08Sstephan          //opt.innerText = lbl;
27244a87f08Sstephan          opt.innerHTML = lbl;
27344a87f08Sstephan          opt.value = '--'+f;
27444a87f08Sstephan          if(preselectedFlags.indexOf(f) >= 0) opt.selected = true;
27544a87f08Sstephan        });
27644a87f08Sstephan
27744a87f08Sstephan        const cbReverseLog = E('#cb-reverse-log-order');
27844a87f08Sstephan        const lblReverseLog = E('#lbl-reverse-log-order');
27944a87f08Sstephan        if(cbReverseLog.checked){
28044a87f08Sstephan          lblReverseLog.classList.add('warning');
28144a87f08Sstephan          eOut.classList.add('reverse');
28244a87f08Sstephan        }
28344a87f08Sstephan        cbReverseLog.addEventListener('change', function(){
28444a87f08Sstephan          if(this.checked){
28544a87f08Sstephan            eOut.classList.add('reverse');
28644a87f08Sstephan            lblReverseLog.classList.add('warning');
28744a87f08Sstephan          }else{
28844a87f08Sstephan            eOut.classList.remove('reverse');
28944a87f08Sstephan            lblReverseLog.classList.remove('warning');
29044a87f08Sstephan          }
29144a87f08Sstephan        }, false);
29244a87f08Sstephan        updateSelectedFlags();
29344a87f08Sstephan      }
29444a87f08Sstephan      E('#btn-output-clear').addEventListener('click', ()=>{
29544a87f08Sstephan        eOut.innerText = '';
29644a87f08Sstephan      });
29744a87f08Sstephan      E('#btn-reset-flags').addEventListener('click',()=>{
29844a87f08Sstephan        eFlags.value = '';
29944a87f08Sstephan        updateSelectedFlags();
30044a87f08Sstephan      });
30144a87f08Sstephan      E('#btn-run').addEventListener('click',function(){
30244a87f08Sstephan        log("Running speedtest1. UI controls will be disabled until it completes.");
30344a87f08Sstephan        mPost('run', getSelectedFlags());
30444a87f08Sstephan      });
30544a87f08Sstephan
30644a87f08Sstephan      const eControls = E('#ui-controls');
30744a87f08Sstephan      /** Update Emscripten-related UI elements while loading the module. */
30844a87f08Sstephan      const updateLoadStatus = function f(text){
30944a87f08Sstephan        if(!f.last){
31044a87f08Sstephan          f.last = { text: '', step: 0 };
31144a87f08Sstephan          const E = (cssSelector)=>document.querySelector(cssSelector);
31244a87f08Sstephan          f.ui = {
31344a87f08Sstephan            status: E('#module-status'),
31444a87f08Sstephan            progress: E('#module-progress'),
31544a87f08Sstephan            spinner: E('#module-spinner')
31644a87f08Sstephan          };
31744a87f08Sstephan        }
31844a87f08Sstephan        if(text === f.last.text) return;
31944a87f08Sstephan        f.last.text = text;
32044a87f08Sstephan        if(f.ui.progress){
32144a87f08Sstephan          f.ui.progress.value = f.last.step;
32244a87f08Sstephan          f.ui.progress.max = f.last.step + 1;
32344a87f08Sstephan        }
32444a87f08Sstephan        ++f.last.step;
32544a87f08Sstephan        if(text) {
32644a87f08Sstephan          f.ui.status.classList.remove('hidden');
32744a87f08Sstephan          f.ui.status.innerText = text;
32844a87f08Sstephan        }else{
32944a87f08Sstephan          if(f.ui.progress){
33044a87f08Sstephan            f.ui.progress.remove();
33144a87f08Sstephan            f.ui.spinner.remove();
33244a87f08Sstephan            delete f.ui.progress;
33344a87f08Sstephan            delete f.ui.spinner;
33444a87f08Sstephan          }
33544a87f08Sstephan          f.ui.status.classList.add('hidden');
33644a87f08Sstephan        }
33744a87f08Sstephan      };
33844a87f08Sstephan
33944a87f08Sstephan      W.onmessage = function(msg){
34044a87f08Sstephan        msg = msg.data;
34144a87f08Sstephan        switch(msg.type){
3421174c23eSstephan            case 'ready':
3431174c23eSstephan              log("Worker is ready.");
3441174c23eSstephan              eControls.classList.remove('hidden');
3451174c23eSstephan              break;
34644a87f08Sstephan            case 'stdout': log(msg.data); break;
34744a87f08Sstephan            case 'stdout': logErr(msg.data); break;
34844a87f08Sstephan            case 'run-start':
34944a87f08Sstephan              eControls.disabled = true;
35044a87f08Sstephan              log("Running speedtest1 with argv =",msg.data.join(' '));
35144a87f08Sstephan              break;
3521174c23eSstephan            case 'run-end':
3531174c23eSstephan              log("speedtest1 finished.");
35444a87f08Sstephan              eControls.disabled = false;
35544a87f08Sstephan              // app output is in msg.data
35644a87f08Sstephan              break;
35744a87f08Sstephan            case 'error': logErr(msg.data); break;
35844a87f08Sstephan            case 'load-status': updateLoadStatus(msg.data); break;
35944a87f08Sstephan            default:
360dd628ed5Sstephan              logErr("Unhandled worker message type:",msg);
36144a87f08Sstephan              break;
36244a87f08Sstephan        }
36344a87f08Sstephan      };
36444a87f08Sstephan    })();</script>
36544a87f08Sstephan  </body>
36644a87f08Sstephan</html>
367