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> 3344a87f08Sstephan <div>TODO? Options which require values are not represented here.</div> 3444a87f08Sstephan </div> 35e66b2681Sstephan <div class='toolbar-inner-vertical'> 36e66b2681Sstephan <div id='toolbar-selected-flags'></div> 37e66b2681Sstephan <span>→ <a id='link-main-thread' href='#' target='main-thread' 38e66b2681Sstephan title='Start speedtest1.html with the selected flags'>speedtest1.html</a> 39e66b2681Sstephan </span> 4044a87f08Sstephan </div> 4144a87f08Sstephan <div class='toolbar-inner-vertical' id='toolbar-runner-controls'> 4244a87f08Sstephan <button id='btn-reset-flags'>Reset Flags</button> 4344a87f08Sstephan <button id='btn-output-clear'>Clear output</button> 4444a87f08Sstephan <button id='btn-run'>Run</button> 4544a87f08Sstephan </div> 4644a87f08Sstephan </div> 4744a87f08Sstephan </fieldset> 4844a87f08Sstephan <div> 4944a87f08Sstephan <span class='input-wrapper'> 5044a87f08Sstephan <input type='checkbox' class='disable-during-eval' id='cb-reverse-log-order' checked></input> 5144a87f08Sstephan <label for='cb-reverse-log-order' id='lbl-reverse-log-order'>Reverse log order</label> 5244a87f08Sstephan </span> 5344a87f08Sstephan </div> 541174c23eSstephan <div id='test-output'> 551174c23eSstephan </div> 561174c23eSstephan <div id='tips'> 571174c23eSstephan <strong>Tips:</strong> 581174c23eSstephan <ul> 591174c23eSstephan <li>Control-click the flags to (de)select multiple flags.</li> 60*f5bf66c8Sstephan <li>The <tt>--big-transactions</tt> flag is important for two 61*f5bf66c8Sstephan of the bigger tests. Without it, those tests create a 62*f5bf66c8Sstephan combined total of 140k implicit transactions, reducing their 63*f5bf66c8Sstephan speed to an absolute crawl, especially when WASMFS is 64*f5bf66c8Sstephan activated. 65*f5bf66c8Sstephan </li> 661174c23eSstephan <li>The easiest way to try different optimization levels is, 671174c23eSstephan from this directory: 681174c23eSstephan <pre>$ rm -f speedtest1.js; make -e emcc_opt='-O2' speedtest1.js</pre> 691174c23eSstephan Then reload this page. -O2 seems to consistently produce the fastest results. 701174c23eSstephan </li> 711174c23eSstephan </ul> 721174c23eSstephan </div> 7344a87f08Sstephan <style> 7444a87f08Sstephan #test-output { 7544a87f08Sstephan white-space: break-spaces; 7644a87f08Sstephan overflow: auto; 7744a87f08Sstephan } 781174c23eSstephan div#tips { margin-top: 1em; } 7944a87f08Sstephan #toolbar { 8044a87f08Sstephan display: flex; 8144a87f08Sstephan flex-direction: row; 8244a87f08Sstephan flex-wrap: wrap; 8344a87f08Sstephan } 8444a87f08Sstephan #toolbar > * { 8544a87f08Sstephan margin: 0 0.5em; 8644a87f08Sstephan } 8744a87f08Sstephan .toolbar-inner-vertical { 8844a87f08Sstephan display: flex; 8944a87f08Sstephan flex-direction: column; 9044a87f08Sstephan justify-content: space-between; 9144a87f08Sstephan } 9244a87f08Sstephan #toolbar-select { 9344a87f08Sstephan display: flex; 9444a87f08Sstephan flex-direction: column; 9544a87f08Sstephan } 9644a87f08Sstephan .toolbar-inner-vertical > *, #toolbar-select > * { 9744a87f08Sstephan margin: 0.2em 0; 9844a87f08Sstephan } 9944a87f08Sstephan #select-flags > option { 10044a87f08Sstephan white-space: pre; 10144a87f08Sstephan font-family: monospace; 10244a87f08Sstephan } 10344a87f08Sstephan fieldset { 10444a87f08Sstephan border-radius: 0.5em; 10544a87f08Sstephan } 10644a87f08Sstephan #toolbar-runner-controls { flex-grow: 1 } 10744a87f08Sstephan #toolbar-runner-controls > * { flex: 1 0 auto } 10844a87f08Sstephan #toolbar-selected-flags::before { 10944a87f08Sstephan font-family: initial; 11044a87f08Sstephan content:"Selected flags: "; 11144a87f08Sstephan } 11244a87f08Sstephan #toolbar-selected-flags { 113e66b2681Sstephan display: flex; 114e66b2681Sstephan flex-direction: column; 11544a87f08Sstephan font-family: monospace; 11644a87f08Sstephan justify-content: flex-start; 11744a87f08Sstephan } 11844a87f08Sstephan </style> 11944a87f08Sstephan <script>(function(){ 12044a87f08Sstephan 'use strict'; 12144a87f08Sstephan const E = (sel)=>document.querySelector(sel); 12244a87f08Sstephan const eOut = E('#test-output'); 12344a87f08Sstephan const log2 = function(cssClass,...args){ 12444a87f08Sstephan let ln; 12544a87f08Sstephan if(1 || cssClass){ 12644a87f08Sstephan ln = document.createElement('div'); 12744a87f08Sstephan if(cssClass) ln.classList.add(cssClass); 12844a87f08Sstephan ln.append(document.createTextNode(args.join(' '))); 12944a87f08Sstephan }else{ 13044a87f08Sstephan // This doesn't work with the "reverse order" option! 13144a87f08Sstephan ln = document.createTextNode(args.join(' ')+'\n'); 13244a87f08Sstephan } 13344a87f08Sstephan eOut.append(ln); 13444a87f08Sstephan }; 13544a87f08Sstephan const log = (...args)=>{ 13644a87f08Sstephan //console.log(...args); 13744a87f08Sstephan log2('', ...args); 13844a87f08Sstephan }; 13944a87f08Sstephan const logErr = function(...args){ 14044a87f08Sstephan //console.error(...args); 14144a87f08Sstephan log2('error', ...args); 14244a87f08Sstephan }; 14344a87f08Sstephan const logWarn = function(...args){ 14444a87f08Sstephan //console.warn(...args); 14544a87f08Sstephan log2('warning', ...args); 14644a87f08Sstephan }; 14744a87f08Sstephan 148e66b2681Sstephan const spacePad = function(str,len=21){ 14944a87f08Sstephan if(str.length===len) return str; 15044a87f08Sstephan else if(str.length>len) return str.substr(0,len); 15144a87f08Sstephan const a = []; a.length = len - str.length; 15244a87f08Sstephan return str+a.join(' '); 15344a87f08Sstephan }; 15444a87f08Sstephan // OPTION elements seem to ignore white-space:pre, so do this the hard way... 155e66b2681Sstephan const nbspPad = function(str,len=21){ 15644a87f08Sstephan if(str.length===len) return str; 15744a87f08Sstephan else if(str.length>len) return str.substr(0,len); 15844a87f08Sstephan const a = []; a.length = len - str.length; 15944a87f08Sstephan return str+a.join(' '); 16044a87f08Sstephan }; 16144a87f08Sstephan 16244a87f08Sstephan const W = new Worker("speedtest1-worker.js"); 16344a87f08Sstephan const mPost = function(msgType,payload){ 16444a87f08Sstephan W.postMessage({type: msgType, data: payload}); 16544a87f08Sstephan }; 16644a87f08Sstephan 16744a87f08Sstephan const eFlags = E('#select-flags'); 16844a87f08Sstephan const eSelectedFlags = E('#toolbar-selected-flags'); 169e66b2681Sstephan const eLinkMainThread = E('#link-main-thread'); 17044a87f08Sstephan const getSelectedFlags = ()=>Array.prototype.map.call(eFlags.selectedOptions, (v)=>v.value); 17144a87f08Sstephan const updateSelectedFlags = function(){ 17244a87f08Sstephan eSelectedFlags.innerText = ''; 173e66b2681Sstephan const flags = getSelectedFlags(); 174e66b2681Sstephan flags.forEach(function(f){ 17544a87f08Sstephan const e = document.createElement('span'); 17644a87f08Sstephan e.innerText = f; 17744a87f08Sstephan eSelectedFlags.appendChild(e); 17844a87f08Sstephan }); 179e66b2681Sstephan const rxStripDash = /^(-+)?/; 180e66b2681Sstephan const comma = flags.map((v)=>v.replace(rxStripDash,'')).join(','); 181e66b2681Sstephan eLinkMainThread.setAttribute('target', 'main-thread-'+comma); 182e66b2681Sstephan eLinkMainThread.href = 'speedtest1.html?flags='+comma; 18344a87f08Sstephan }; 18444a87f08Sstephan eFlags.addEventListener('change', updateSelectedFlags ); 18544a87f08Sstephan { 18644a87f08Sstephan const flags = Object.create(null); 18744a87f08Sstephan /* TODO? Flags which require values need custom UI 18844a87f08Sstephan controls and some of them make little sense here 18944a87f08Sstephan (e.g. --script FILE). */ 19044a87f08Sstephan flags["autovacuum"] = "Enable AUTOVACUUM mode"; 191dd628ed5Sstephan flags["big-transactions"] = "Important for tests 410 and 510!"; 19244a87f08Sstephan //flags["cachesize"] = "N Set the cache size to N"; 19344a87f08Sstephan flags["checkpoint"] = "Run PRAGMA wal_checkpoint after each test case"; 19444a87f08Sstephan flags["exclusive"] = "Enable locking_mode=EXCLUSIVE"; 19544a87f08Sstephan flags["explain"] = "Like --sqlonly but with added EXPLAIN keywords"; 19644a87f08Sstephan //flags["heap"] = "SZ MIN Memory allocator uses SZ bytes & min allocation MIN"; 19744a87f08Sstephan flags["incrvacuum"] = "Enable incremenatal vacuum mode"; 19844a87f08Sstephan //flags["journal"] = "M Set the journal_mode to M"; 19944a87f08Sstephan //flags["key"] = "KEY Set the encryption key to KEY"; 20044a87f08Sstephan //flags["lookaside"] = "N SZ Configure lookaside for N slots of SZ bytes each"; 20144a87f08Sstephan flags["memdb"] = "Use an in-memory database"; 20244a87f08Sstephan //flags["mmap"] = "SZ MMAP the first SZ bytes of the database file"; 20344a87f08Sstephan flags["multithread"] = "Set multithreaded mode"; 20444a87f08Sstephan flags["nomemstat"] = "Disable memory statistics"; 2051174c23eSstephan flags["nomutex"] = "Open db with SQLITE_OPEN_NOMUTEX"; 20644a87f08Sstephan flags["nosync"] = "Set PRAGMA synchronous=OFF"; 20744a87f08Sstephan flags["notnull"] = "Add NOT NULL constraints to table columns"; 20844a87f08Sstephan //flags["output"] = "FILE Store SQL output in FILE"; 20944a87f08Sstephan //flags["pagesize"] = "N Set the page size to N"; 21044a87f08Sstephan //flags["pcache"] = "N SZ Configure N pages of pagecache each of size SZ bytes"; 21144a87f08Sstephan //flags["primarykey"] = "Use PRIMARY KEY instead of UNIQUE where appropriate"; 21244a87f08Sstephan //flags["repeat"] = "N Repeat each SELECT N times (default: 1)"; 21344a87f08Sstephan flags["reprepare"] = "Reprepare each statement upon every invocation"; 21444a87f08Sstephan //flags["reserve"] = "N Reserve N bytes on each database page"; 21544a87f08Sstephan //flags["script"] = "FILE Write an SQL script for the test into FILE"; 21644a87f08Sstephan flags["serialized"] = "Set serialized threading mode"; 21744a87f08Sstephan flags["singlethread"] = "Set single-threaded mode - disables all mutexing"; 21844a87f08Sstephan flags["sqlonly"] = "No-op. Only show the SQL that would have been run."; 21944a87f08Sstephan flags["shrink"] = "memory Invoke sqlite3_db_release_memory() frequently."; 22044a87f08Sstephan //flags["size"] = "N Relative test size. Default=100"; 22144a87f08Sstephan flags["strict"] = "Use STRICT table where appropriate"; 22244a87f08Sstephan flags["stats"] = "Show statistics at the end"; 22344a87f08Sstephan //flags["temp"] = "N N from 0 to 9. 0: no temp table. 9: all temp tables"; 22444a87f08Sstephan //flags["testset"] = "T Run test-set T (main, cte, rtree, orm, fp, debug)"; 22544a87f08Sstephan flags["trace"] = "Turn on SQL tracing"; 22644a87f08Sstephan //flags["threads"] = "N Use up to N threads for sorting"; 22744a87f08Sstephan /* 22844a87f08Sstephan The core API's WASM build does not support UTF16, but in 22944a87f08Sstephan this app it's not an issue because the data are not crossing 23044a87f08Sstephan JS/WASM boundaries. 23144a87f08Sstephan */ 23244a87f08Sstephan flags["utf16be"] = "Set text encoding to UTF-16BE"; 23344a87f08Sstephan flags["utf16le"] = "Set text encoding to UTF-16LE"; 23444a87f08Sstephan flags["verify"] = "Run additional verification steps."; 23544a87f08Sstephan flags["without"] = "rowid Use WITHOUT ROWID where appropriate"; 23644a87f08Sstephan const preselectedFlags = [ 237dd628ed5Sstephan 'big-transactions', 238dd628ed5Sstephan 'memdb', 239dd628ed5Sstephan 'singlethread' 24044a87f08Sstephan ]; 24144a87f08Sstephan Object.keys(flags).sort().forEach(function(f){ 24244a87f08Sstephan const opt = document.createElement('option'); 24344a87f08Sstephan eFlags.appendChild(opt); 24444a87f08Sstephan const lbl = nbspPad('--'+f)+flags[f]; 24544a87f08Sstephan //opt.innerText = lbl; 24644a87f08Sstephan opt.innerHTML = lbl; 24744a87f08Sstephan opt.value = '--'+f; 24844a87f08Sstephan if(preselectedFlags.indexOf(f) >= 0) opt.selected = true; 24944a87f08Sstephan }); 25044a87f08Sstephan 25144a87f08Sstephan const cbReverseLog = E('#cb-reverse-log-order'); 25244a87f08Sstephan const lblReverseLog = E('#lbl-reverse-log-order'); 25344a87f08Sstephan if(cbReverseLog.checked){ 25444a87f08Sstephan lblReverseLog.classList.add('warning'); 25544a87f08Sstephan eOut.classList.add('reverse'); 25644a87f08Sstephan } 25744a87f08Sstephan cbReverseLog.addEventListener('change', function(){ 25844a87f08Sstephan if(this.checked){ 25944a87f08Sstephan eOut.classList.add('reverse'); 26044a87f08Sstephan lblReverseLog.classList.add('warning'); 26144a87f08Sstephan }else{ 26244a87f08Sstephan eOut.classList.remove('reverse'); 26344a87f08Sstephan lblReverseLog.classList.remove('warning'); 26444a87f08Sstephan } 26544a87f08Sstephan }, false); 26644a87f08Sstephan updateSelectedFlags(); 26744a87f08Sstephan } 26844a87f08Sstephan E('#btn-output-clear').addEventListener('click', ()=>{ 26944a87f08Sstephan eOut.innerText = ''; 27044a87f08Sstephan }); 27144a87f08Sstephan E('#btn-reset-flags').addEventListener('click',()=>{ 27244a87f08Sstephan eFlags.value = ''; 27344a87f08Sstephan updateSelectedFlags(); 27444a87f08Sstephan }); 27544a87f08Sstephan E('#btn-run').addEventListener('click',function(){ 27644a87f08Sstephan log("Running speedtest1. UI controls will be disabled until it completes."); 27744a87f08Sstephan mPost('run', getSelectedFlags()); 27844a87f08Sstephan }); 27944a87f08Sstephan 28044a87f08Sstephan const eControls = E('#ui-controls'); 28144a87f08Sstephan /** Update Emscripten-related UI elements while loading the module. */ 28244a87f08Sstephan const updateLoadStatus = function f(text){ 28344a87f08Sstephan if(!f.last){ 28444a87f08Sstephan f.last = { text: '', step: 0 }; 28544a87f08Sstephan const E = (cssSelector)=>document.querySelector(cssSelector); 28644a87f08Sstephan f.ui = { 28744a87f08Sstephan status: E('#module-status'), 28844a87f08Sstephan progress: E('#module-progress'), 28944a87f08Sstephan spinner: E('#module-spinner') 29044a87f08Sstephan }; 29144a87f08Sstephan } 29244a87f08Sstephan if(text === f.last.text) return; 29344a87f08Sstephan f.last.text = text; 29444a87f08Sstephan if(f.ui.progress){ 29544a87f08Sstephan f.ui.progress.value = f.last.step; 29644a87f08Sstephan f.ui.progress.max = f.last.step + 1; 29744a87f08Sstephan } 29844a87f08Sstephan ++f.last.step; 29944a87f08Sstephan if(text) { 30044a87f08Sstephan f.ui.status.classList.remove('hidden'); 30144a87f08Sstephan f.ui.status.innerText = text; 30244a87f08Sstephan }else{ 30344a87f08Sstephan if(f.ui.progress){ 30444a87f08Sstephan f.ui.progress.remove(); 30544a87f08Sstephan f.ui.spinner.remove(); 30644a87f08Sstephan delete f.ui.progress; 30744a87f08Sstephan delete f.ui.spinner; 30844a87f08Sstephan } 30944a87f08Sstephan f.ui.status.classList.add('hidden'); 31044a87f08Sstephan } 31144a87f08Sstephan }; 31244a87f08Sstephan 31344a87f08Sstephan W.onmessage = function(msg){ 31444a87f08Sstephan msg = msg.data; 31544a87f08Sstephan switch(msg.type){ 3161174c23eSstephan case 'ready': 3171174c23eSstephan log("Worker is ready."); 3181174c23eSstephan eControls.classList.remove('hidden'); 3191174c23eSstephan break; 32044a87f08Sstephan case 'stdout': log(msg.data); break; 32144a87f08Sstephan case 'stdout': logErr(msg.data); break; 32244a87f08Sstephan case 'run-start': 32344a87f08Sstephan eControls.disabled = true; 32444a87f08Sstephan log("Running speedtest1 with argv =",msg.data.join(' ')); 32544a87f08Sstephan break; 3261174c23eSstephan case 'run-end': 3271174c23eSstephan log("speedtest1 finished."); 32844a87f08Sstephan eControls.disabled = false; 32944a87f08Sstephan // app output is in msg.data 33044a87f08Sstephan break; 33144a87f08Sstephan case 'error': logErr(msg.data); break; 33244a87f08Sstephan case 'load-status': updateLoadStatus(msg.data); break; 33344a87f08Sstephan default: 334dd628ed5Sstephan logErr("Unhandled worker message type:",msg); 33544a87f08Sstephan break; 33644a87f08Sstephan } 33744a87f08Sstephan }; 33844a87f08Sstephan })();</script> 33944a87f08Sstephan </body> 34044a87f08Sstephan</html> 341