mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-01 02:48:44 +01:00
203 lines
6.5 KiB
JavaScript
203 lines
6.5 KiB
JavaScript
(function(){
|
|
"use strict";
|
|
|
|
function byteArrayToHex(arrayBuffer){
|
|
const chunks = [];
|
|
(new Uint32Array(arrayBuffer)).forEach(function(num){
|
|
chunks.push(num.toString(16));
|
|
});
|
|
return chunks.map(function(chunk){
|
|
return "0".repeat(8 - chunk.length) + chunk;
|
|
}).join("");
|
|
}
|
|
|
|
const container = document.getElementById("test");
|
|
const hashContainer = container.querySelector(".hashes");
|
|
const sumsContainer = container.querySelector(".sums");
|
|
let hashSets = Object.create(null);
|
|
|
|
function createSet(set){
|
|
if (!hashSets[set]){
|
|
const setContainer = document.createElement("tbody");
|
|
hashContainer.appendChild(setContainer);
|
|
const nameRow = document.createElement("tr");
|
|
setContainer.appendChild(nameRow);
|
|
const nameContainer = document.createElement("th");
|
|
nameRow.appendChild(nameContainer);
|
|
nameContainer.colSpan = 2;
|
|
nameContainer.textContent = set;
|
|
hashSets[set] = {firstHash: false, failed: false, hashes: [], setContainer};
|
|
}
|
|
}
|
|
|
|
async function displayData(data, set, title){
|
|
createSet(set);
|
|
const storage = hashSets[set];
|
|
|
|
function addLine(title, hash){
|
|
const container = document.createElement("tr");
|
|
|
|
const titleNode = document.createElement("td");
|
|
titleNode.textContent = title;
|
|
container.appendChild(titleNode);
|
|
|
|
const hashNode = document.createElement("td");
|
|
hashNode.textContent = hash;
|
|
container.appendChild(hashNode);
|
|
|
|
storage.setContainer.appendChild(container);
|
|
return container;
|
|
}
|
|
const hash = byteArrayToHex(await crypto.subtle.digest("SHA-256", data));
|
|
storage.hashes.push({title, hash});
|
|
|
|
if (!storage.firstHash){
|
|
storage.firstHash = hash;
|
|
storage.allLine = addLine("all tests equal", hash);
|
|
}
|
|
else {
|
|
if (storage.failed){
|
|
addLine(title, hash);
|
|
}
|
|
else if (hash !== storage.firstHash){
|
|
storage.setContainer.removeChild(storage.allLine);
|
|
storage.hashes.forEach(function(hash){
|
|
addLine(hash.title, hash.hash);
|
|
});
|
|
storage.failed = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
function getAudioContext(frequency = 1e4, type = "triangle", useDelayedValues = false){
|
|
function set(obj, value){
|
|
if (useDelayedValues){
|
|
obj.setTargetAtTime(value, 0, 0.01);
|
|
}
|
|
else {
|
|
obj.value = value;
|
|
}
|
|
}
|
|
const context = new window.OfflineAudioContext(2, 44100, 44100);
|
|
|
|
// Create oscillator
|
|
const pxi_oscillator = context.createOscillator();
|
|
pxi_oscillator.type = type;
|
|
set(pxi_oscillator.frequency, frequency);
|
|
|
|
// Create and configure compressor
|
|
const pxi_compressor = context.createDynamicsCompressor();
|
|
pxi_compressor.threshold && set(pxi_compressor.threshold, -50);
|
|
pxi_compressor.knee && set(pxi_compressor.knee, 40);
|
|
pxi_compressor.ratio && set(pxi_compressor.ratio, 12);
|
|
pxi_compressor.reduction && set(pxi_compressor.reduction, -20);
|
|
pxi_compressor.attack && set(pxi_compressor.attack, 0);
|
|
pxi_compressor.release && set(pxi_compressor.release, .25);
|
|
|
|
// Connect nodes
|
|
pxi_oscillator.connect(pxi_compressor);
|
|
pxi_compressor.connect(context.destination);
|
|
|
|
pxi_oscillator.start(0);
|
|
|
|
return context;
|
|
}
|
|
|
|
function createEmptyData(){
|
|
const emptyArray = new Float32Array(44100);
|
|
displayData(emptyArray, "empty buffer", "no API involved");
|
|
|
|
const emptyContext = new OfflineAudioContext(1, 44100, 44100);
|
|
const emptyBuffer = emptyContext.createBuffer(1, 44100, 44100);
|
|
|
|
const emptyCopy = new Float32Array(44100);
|
|
emptyBuffer.copyFromChannel(emptyCopy, 0);
|
|
displayData(emptyCopy, "empty buffer", "copyFromChannel - first");
|
|
|
|
const emptyData = emptyBuffer.getChannelData(0);
|
|
displayData(emptyData, "empty buffer", "getChannelData - first");
|
|
displayData(emptyBuffer.getChannelData(0), "empty buffer", "getChannelData - second");
|
|
|
|
const emptyCopy2 = new Float32Array(44100);
|
|
emptyBuffer.copyFromChannel(emptyCopy2, 0);
|
|
displayData(emptyCopy2, "empty buffer", "copyFromChannel - second");
|
|
}
|
|
|
|
function getIframeWindow(){
|
|
const l = window.length;
|
|
const iframe = document.createElement("iframe");
|
|
document.body.appendChild(iframe);
|
|
const iframeWindow = window[l];
|
|
document.body.removeChild(iframe);
|
|
return iframeWindow;
|
|
}
|
|
|
|
function createHashData(frequency = 1e4, type = "triangle", useDelayedValues = false){
|
|
|
|
const context = getAudioContext(frequency, type, useDelayedValues);
|
|
|
|
const setName = type + " (" + frequency + " Hz)" + (useDelayedValues? " delayed": "");
|
|
createSet(setName);
|
|
|
|
const sumRow = document.createElement("tr");
|
|
const nameCell = document.createElement("td");
|
|
nameCell.textContent = setName;
|
|
sumRow.appendChild(nameCell);
|
|
const sumCell = document.createElement("td");
|
|
sumRow.appendChild(sumCell);
|
|
sumsContainer.appendChild(sumRow);
|
|
|
|
// Start audio processing
|
|
context.startRendering();
|
|
context.oncomplete = function(event){
|
|
const copyTestIframe = new (getIframeWindow().Float32Array)(44100);
|
|
getIframeWindow().AudioBuffer.prototype.copyFromChannel.call(event.renderedBuffer, copyTestIframe, 0);
|
|
displayData(copyTestIframe, setName, "copyFromChannel - iframe");
|
|
|
|
const chunkTest = new Float32Array(44100);
|
|
const number = new Float32Array(100);
|
|
for (let chunkI = 0; chunkI < 44100; chunkI += number.length){
|
|
event.renderedBuffer.copyFromChannel(number, 0, chunkI);
|
|
chunkTest.set(number, chunkI);
|
|
}
|
|
displayData(chunkTest, setName, "copyFromChannel - chunks");
|
|
|
|
const copyTest = new Float32Array(44100);
|
|
event.renderedBuffer.copyFromChannel(copyTest, 0);
|
|
displayData(copyTest, setName, "copyFromChannel - first");
|
|
|
|
|
|
const getTest = event.renderedBuffer.getChannelData(0);
|
|
displayData(getTest, setName, "getChannelData - first");
|
|
displayData(event.renderedBuffer.getChannelData(0), setName, "getChannelData - second readout");
|
|
displayData(event.renderedBuffer.getChannelData(1), setName, "getChannelData - second channel");
|
|
|
|
const copyTest2 = new Float32Array(44100);
|
|
event.renderedBuffer.copyFromChannel(copyTest2, 0);
|
|
displayData(copyTest2, setName, "copyFromChannel - second");
|
|
|
|
let sum = 0;
|
|
for (let i = 4500; i < 5000; i += 1) {
|
|
sum += Math.abs(getTest[i]);
|
|
}
|
|
sumCell.textContent = sum;
|
|
};
|
|
}
|
|
|
|
function createAllHashData(){
|
|
hashContainer.innerHTML = "";
|
|
sumsContainer.innerHTML = "";
|
|
hashSets = Object.create(null);
|
|
createEmptyData();
|
|
createHashData(1e4);
|
|
createHashData(2e4);
|
|
createHashData(1e4, "sine");
|
|
createHashData(2e4, "sine");
|
|
createHashData(1e4, undefined, true);
|
|
createHashData(2e4, undefined, true);
|
|
createHashData(1e4, "sine", true);
|
|
createHashData(2e4, "sine", true);
|
|
}
|
|
createAllHashData();
|
|
container.querySelector("button").addEventListener("click", createAllHashData);
|
|
}()); |