|
|
const utils = require("./utils");
module.exports = async function builder(code, options) {
options = options || {};
const wasmModule = await WebAssembly.compile(code);
let wc;
const instance = await WebAssembly.instantiate(wasmModule, { runtime: { exceptionHandler : function(code) { let errStr; if (code == 1) { errStr= "Signal not found. "; } else if (code == 2) { errStr= "Too many signals set. "; } else if (code == 3) { errStr= "Signal already set. "; } else if (code == 4) { errStr= "Assert Failed. "; } else if (code == 5) { errStr= "Not enough memory. "; } else { errStr= "Unknown error\n"; } // get error message from wasm
errStr += getMessage(); throw new Error(errStr); }, showSharedRWMemory: function() { printSharedRWMemory (); }
} });
const sanityCheck = options // options &&
// (
// options.sanityCheck ||
// options.logGetSignal ||
// options.logSetSignal ||
// options.logStartComponent ||
// options.logFinishComponent
// );
wc = new WitnessCalculator(instance, sanityCheck); return wc;
function getMessage() { var message = ""; var c = instance.exports.getMessageChar(); while ( c != 0 ) { message += String.fromCharCode(c); c = instance.exports.getMessageChar(); } return message; } function printSharedRWMemory () { const shared_rw_memory_size = instance.exports.getFieldNumLen32(); const arr = new Uint32Array(shared_rw_memory_size); for (let j=0; j<shared_rw_memory_size; j++) { arr[shared_rw_memory_size-1-j] = instance.exports.readSharedRWMemory(j); } console.log(utils.fromArray32(arr)); }
};
class WitnessCalculator { constructor(instance, sanityCheck) { this.instance = instance;
this.version = this.instance.exports.getVersion(); this.n32 = this.instance.exports.getFieldNumLen32();
// Not needed
// this.instance.exports.getRawPrime();
// const arr = new Array(this.n32);
// for (let i=0; i<this.n32; i++) {
// arr[this.n32-1-i] = this.instance.exports.readSharedRWMemory(i);
// }
// this.prime = utils.fromArray32(arr);
this.witnessSize = this.instance.exports.getWitnessSize();
this.sanityCheck = sanityCheck; } async _doCalculateWitness(input, sanityCheck) { //input is assumed to be a map from signals to arrays of bigints
this.instance.exports.init((this.sanityCheck || sanityCheck) ? 1 : 0); const keys = Object.keys(input); keys.forEach( (k) => { const h = utils.fnvHash(k); const hMSB = parseInt(h.slice(0,8), 16); const hLSB = parseInt(h.slice(8,16), 16); const fArr = utils.flatArray(input[k]); for (let i=0; i<fArr.length; i++) { const arrFr = utils.toArray32(fArr[i],this.n32) for (let j=0; j<this.n32; j++) { this.instance.exports.writeSharedRWMemory(j,arrFr[this.n32-1-j]); } try { this.instance.exports.setInputSignal(hMSB, hLSB,i); } catch (err) { // console.log(`After adding signal ${i} of ${k}`)
throw new Error(err); } }
}); }
async calculateWitness(input, sanityCheck) {
const w = [];
await this._doCalculateWitness(input, sanityCheck);
for (let i=0; i<this.witnessSize; i++) { this.instance.exports.getWitness(i); const arr = new Uint32Array(this.n32); for (let j=0; j<this.n32; j++) { arr[this.n32-1-j] = this.instance.exports.readSharedRWMemory(j); } w.push(utils.fromArray32(arr)); }
return w; }
async calculateBinWitness(input, sanityCheck) {
const buff32 = new Uint32Array(this.witnessSize*this.n32); const buff = new Uint8Array( buff32.buffer); await this._doCalculateWitness(input, sanityCheck);
for (let i=0; i<this.witnessSize; i++) { this.instance.exports.getWitness(i); const pos = i*this.n32; for (let j=0; j<this.n32; j++) { buff32[pos+j] = this.instance.exports.readSharedRWMemory(j); } }
return buff; }
async calculateWTNSBin(input, sanityCheck) {
const buff32 = new Uint32Array(this.witnessSize*this.n32+this.n32+11); const buff = new Uint8Array( buff32.buffer); await this._doCalculateWitness(input, sanityCheck); //"wtns"
buff[0] = "w".charCodeAt(0) buff[1] = "t".charCodeAt(0) buff[2] = "n".charCodeAt(0) buff[3] = "s".charCodeAt(0)
//version 2
buff32[1] = 2;
//number of sections: 2
buff32[2] = 2;
//id section 1
buff32[3] = 1;
const n8 = this.n32*4; //id section 1 length in 64bytes
const idSection1length = 8 + n8; const idSection1lengthHex = idSection1length.toString(16); buff32[4] = parseInt(idSection1lengthHex.slice(0,8), 16); buff32[5] = parseInt(idSection1lengthHex.slice(8,16), 16);
//this.n32
buff32[6] = n8;
//prime number
this.instance.exports.getRawPrime();
var pos = 7; for (let j=0; j<this.n32; j++) { buff32[pos+j] = this.instance.exports.readSharedRWMemory(j); } pos += this.n32;
// witness size
buff32[pos] = this.witnessSize; pos++;
//id section 2
buff32[pos] = 2; pos++;
// section 2 length
const idSection2length = n8*this.witnessSize; const idSection2lengthHex = idSection2length.toString(16); buff32[pos] = parseInt(idSection2lengthHex.slice(0,8), 16); buff32[pos+1] = parseInt(idSection2lengthHex.slice(8,16), 16);
pos += 2; for (let i=0; i<this.witnessSize; i++) { this.instance.exports.getWitness(i); for (let j=0; j<this.n32; j++) { buff32[pos+j] = this.instance.exports.readSharedRWMemory(j); } pos += this.n32; }
return buff; }
}
|