// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. function moduleDidLoad() { common.hideModule(); } function $(id) { return document.getElementById(id); } /* * file system functions * */ window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem; function errorHandler(e,callback,name) { var msg = ''; switch (e.code) { case FileError.QUOTA_EXCEEDED_ERR: msg = 'QUOTA_EXCEEDED_ERR'; break; case FileError.NOT_FOUND_ERR: msg = 'NOT_FOUND_ERR'; if(callback){ callback(name);} break; case FileError.SECURITY_ERR: msg = 'SECURITY_ERR'; break; case FileError.INVALID_MODIFICATION_ERR: msg = 'INVALID_MODIFICATION_ERR'; break; case FileError.INVALID_STATE_ERR: msg = 'INVALID_STATE_ERR'; break; default: msg = 'Unknown Error'; break; }; console.log('Error: ' + msg); } var fileSystem=null; var files={}; function onInitFs(fs) { console.log('Opened file system: ' + fs.name); fileSystem = fs; } // Called by the common.js module. function domContentLoaded(name, tc, config, width, height) { navigator.webkitPersistentStorage.requestQuota(10000000000, function(bytes){ window.requestFileSystem(PERSISTENT, bytes, onInitFs, errorHandler); common.updateStatus( 'Allocated ' + bytes + ' bytes of persistent storage. Running the first time will take 17 seconds to load'); common.attachDefaultListeners(); common.createNaClModule(name, tc, config, width, height); }, function(e){ console.log('Error', e); }); } var check_files=function(){ var coins= coinManagement.getCoinSymbols(); var files=["_hdrs.txt","_peers.txt"]; for(var i=0;i option'); for (var i = 0; i < optionEls.length; ++i) { var optionEl = optionEls[i]; if (optionEl.value == handle) { var selectEl = optionEl.parentNode; selectEl.removeChild(optionEl); } } } var funcToCallback = {}; function postCall(func) { var callback = arguments[arguments.length - 1]; funcToCallback[func] = callback; nacl_module.postMessage({ cmd: func, args: Array.prototype.slice.call(arguments, 1, -1) }); } function ArrayBufferToString(buf) { return String.fromCharCode.apply(null, new Uint16Array(buf)); } // Called by the common.js module. function handleMessage(message_event) { var data = message_event.data; if ((typeof(data) === 'string' || data instanceof String)) { check_if_pexe_7778_working(data); common.logMessage(data); } else if (data instanceof Object) { var pipeName = data['pipe'] if ( pipeName !== undefined ) { // Message for JavaScript I/O pipe var operation = data['operation']; if (operation == 'write') { $('pipe_output').value += ArrayBufferToString(data['payload']); } else if (operation == 'ack') { common.logMessage(pipeName + ": ack:" + data['payload']); } else { common.logMessage('Got unexpected pipe operation: ' + operation); } } else { // Result from a function call. var params = data.args; var funcName = data.cmd; var callback = funcToCallback[funcName]; if (!callback) { common.logMessage('Error: Bad message ' + funcName + ' received from NaCl module.'); return; } delete funcToCallback[funcName]; callback.apply(null, params); } } else { common.logMessage('Error: Unknow message `' + data + '` received from NaCl module.'); } } var APPLICATION={pexe:"not loaded",port7778:"Not binded"}; var check_if_pexe_7778_working=function(string){ var if_changed=0; if(string.indexOf("iguana_rpcloop")>-1 && string.indexOf("bind sock")>-1 ){ APPLICATION.port7778="successfully binded"; setTimeout(initialization_commands,3000); if_changed=1; }else if(string.indexOf("finished DidCreate iguana")>-1){ APPLICATION.pexe="Loaded"; if_changed=1; setTimeout(initialization_commands,3000); }else if(string.indexOf("ERROR BINDING PORT.7778")>-1){ //APPLICATION.state="Loading.."; APPLICATION.port7778="Retrying"; /*if(APPLICATION.pexe.indexOf("not loaded")>-1 || APPLICATION.pexe.indexOf("crashed")>-1){ APPLICATION.state="not working"; }*/ if_changed=1; }else if(string.indexOf("NaCl module crashed")>-1){ APPLICATION.pexe="crashed"; if_changed=1; }else if(string.indexOf("try again: Address already in use")>-1){ APPLICATION.port7778="bind failed"; if_changed=1; } if(if_changed){change_app_status();} //finished DidCreate iguana // ERROR BINDING PORT.7778. will exit. wait up to a minute and try again. dont worry, this is normal // NativeClient: NaCl module crashed //string.indexOf(substring) > -1 //bind(127.0.0.1) port.7778 try again: Address already in use sock.4. errno.98 }; var change_app_status=function(){ var html="ParameterStatus"; //html=html+"Application state:"+APPLICATION.state+""; html=html+"Pexe state:"+APPLICATION.pexe+""; html=html+"Port 7778 state:"+APPLICATION.port7778+""; $("#appstatus").html(html); }; var initialization_commands=function(){ addInitCoins(); load_peers_to_pool(); ListAllExchanges(); };