No.61、不要阻塞I/O事件队列
Tips:
- 异步API使用回调函数来延缓处理代价高昂的操作以避免阻塞主应用程序
- JavaScript并发的接收事件,但会使用一个事件队列按序地处理事件处理程序
- 在应用程序事件队列中绝不要使用阻塞的I/O
JavaScript程序是构建在事件之上的。在其他一些语言中,我们可能常常会实现如下代码:
var result = downFileSync('http://xxx.com');
console.log(result);
以上代码,如果downFileSync需要5分钟,那么程序就会停下来等待5分钟。这样的函数就被称为同步函数(或阻塞函数)。如果在浏览器中实现这样的函数,那么结果就是浏览器卡住,等待下载完成后,再继续响应。那么,这将极大的影响体验。所以,在JavaScript中,一般使用如下方式:
downFileAsync('http://xxx.com', function(result){
console.log(result);
});
console.log('async');
以上代码执行中,就算下载文件要5分钟,那么程序也会立马打印出“async”,然后在下载完成的时候,打印result出来。这样才能保证执行环境能正确响应客户的操作。
JavaScript并发的一个最重要的规则是绝不要在应用程序事件队列中使用阻塞I/O的API。在浏览器中,甚至基本没有任何阻塞的API是可用的。其中XMLHttpRequest库有一个同步版本的实现,被认为是一种不好的实现,影响Web应用程序的交互性。
在现代浏览器(IE10+(含)、Chrome、FireFox)中,提供了Worker的API,该API使得产生大量的并行计算称为可能。
如何使用?
首先,编写两个文件,第一个是task.js,如下:
//task.js
console.time('t1');
var sum = 0;
for(var i = 0; i < 500000000; i++){
sum += i;
}
console.log('test');
console.timeEnd('t1');
postMessage('worker result:' + sum);
然后是index.html,用于调用worker,代码如下:
// index.html
<button onclick="alert('aa')">Test</button>
<script>
var worker = new Worker('test.js');
worker.onmessage = function(evt){
console.log(evt.data);
};
</script>
在index.html的JavaScript脚本中。使用var worker = new Worker('test.js');
来实例化一个Worker,Worker的构造为:new Worker([string] url),然后注册一个onmessage事件,用于处理test.js的通知,就是test.js中的postMessage函数。test.js中的每一次执行postMessage函数都会触发一次Worker的onmessage回调。
在静态服务器中访问index.html,可以看到输出为:
test
t1: 2348.633ms
worker result:124999999567108900
再来看看Worker的优缺点,我们可以做什么:
- 可以加载一个JS进行大量的复杂计算而不挂起主进程,并通过postMessage,onmessage进行通信
- 可以在worker中通过importScripts(url)加载另外的脚本文件
- 可以使用 setTimeout(), clearTimeout(), setInterval(), and clearInterval()
- 可以使用XMLHttpRequest来发送请求
- 可以访问navigator的部分属性
有那些局限性:
- 不能跨域加载JS
- worker内代码不能访问DOM
- 各个浏览器对Worker的实现不大一致,例如FF里允许worker中创建新的worker,而Chrome中就不行
- 不是每个浏览器都支持这个新特性
更多信息,请参考:
- https://developer.mozilla.org/zh-CN/docs/Web/Guide/Performance/Usingwebworkers
- http://www.cnblogs.com/feng_013/archive/2011/09/20/2175007.html
No.62、在异步序列中使用嵌套或命名的回调函数
Tips:
- 使用嵌套或命名的回调函数按顺序地执行多个异步操作
- 尝试在过多的嵌套的回调函数和尴尬的命名的非嵌套回调函数之间取得平衡
- 避免将可被并行执行的操作顺序化
想象一下如下需求,异步请数据库查找一个地址,并异步下载。由于是异步,我们不可能发起两个连续请求,那么js代码很可能是这样的:
db.lookupAsync('url', function(url){
downloadAsync(url, function(result){
console.log(result);
});
});
我们使用嵌套,成功解决了这个问题,但是当这样的依赖很多时,我们的代码可能是这样:
db.lookupAsync('url', function(url){
downloadAsync('1.txt', function(){
downloadAsync('2.txt', function(){
downloadAsync('3.txt', function(){
//do something...
});
});
});
});
这样就陷入了回调地狱。要减少过多的嵌套的方法之一就是将回调函数作为命名的函数,并将它们需要的附加数据作为额外的参数传递。比如:
db.lookupAsync('url', downloadUrl);
function downloadUrl(url){
downloadAsync(url, printResult);
}
function printResult(result){
console.log(result);
}
这样能控制嵌套回调的规模,但是还是不够直观。实际上,在node中解决此类问题是用现有的模块,如async。
No.63、当心丢弃错误
Tips:
- 通过编写共享的错误处理函数来避免复制和粘贴错误处理代码
- 确保明确地处理所有的错误条件以避免丢弃错误
一般情况下,我们的错误处理代码如下:
try{
a();
b();
c();
}catch(ex){
//处理错误
}
对于异步的代码,不可能将错误包装在一个try中,事实上,异步的API甚至根本不可能抛出异常。异步的API倾向于将错误表示为回调函数的特定参数,或使用一个附加的错误处理回调函数(有时被称为errbacks)。代码如下:
downloadAsync(url, function(result){
console.log(result);
}, function(err){ //提供一个单独的错误处理函数
console.log('Error:' + err);
});
多次嵌套时,错误处理函数会被多次复制,所以可以将错误处理函数提取出来,减少重复代码,代码如下:
downloadAsync('1.txt', function(result){
downloadAsync('2.txt', function(result2){
console.log(result + result2);
}, onError);
}, onError);
在node中,异步API的回调函数第一个参数表示err,这已经成为一个大众标准
No.64、对异步循环使用递归
Tips:
- 循环不能是异步的
- 使用递归函数在时间循环的单独轮次中执行迭代
- 在事件循环的单独伦次中执行递归,并不会导致调用栈溢出
针对异步下载文件,如果要使用循环,大概是如下代码:
function downloadFilesSync(urls){
for(var i = 0, len = urls.length; i < len; i++){
try{
return downloadSync(urls[i]);
}catch(ex){
}
}
}
以上代码并不能正确工作,因为方法一调用,就会启动所有的下载,并不能等待一个完成,再继续下一个。
要实现功能,看看下面的递归代码:
function downloadFilesSync(urls){
var len = urls.length;
function tryNextURL(i) {
if (i >= n) {
console.log('Error');
return; //退出
}
downloadAsync(urls[i], function(result){
console.log(result);
//下载成功后,尝试下一个。
tryNextURL(i + 1);
});
}
tryNextURL(0);// 启动递归
}
类似这样的实现,就能解决批量下载的问题了。
No.65、不要再计算时阻塞事件队列
Tips:
- 避免在主事件队列中执行代码高昂的算法
- 在支持Worker API的平台,该API可以用来在一个独立的事件队列中运行长计算程序
- 在Worker API 不可用或代价高昂的环境中,考虑将计算程序分解到事件循环的多个轮次中
打开浏览器控制台,执行 while(true){}
,会是什么效果?
好吧,浏览器卡死了!!!
如果有这样的需求,那么优先选择使用Worker实现吧。由于有些平台不支持类似Worker的API,那么可选的方案是将算法分解为多个步骤。代码如下:
//首先,将逻辑分为几个步骤
function step1(){console.log(1);}
function step2(){console.log(2);}
function step3(){console.log(3);}
var taskArr = [step1, step2, step3];
var doWork = function(tasks){
function next(){
if(tasks.length === 0){
console.log('Tasks finished.');
return;
}
var task = tasks.shift();
if(task){
task();
setTimeout(next, 0);
}
}
setTimeout(next, 0);
}
//启动任务
doWork(taskArr);
No.66、使用计数器来执行并行操作
Tips:
- JavaScript应用程序中的事件发生是不确定的,即顺序是不可预测的
- 使用计数器避免并行操作中的数据竞争
先看一个简单的示例:
function downFiles(urls){
var result = [],len = urls.length;
if(len === 0){
console.log('urls argument is a empty array.');
return;
}
urls.forEach(function(url){
downloadAsync(url, function(text){
result.push(text);
if(result.length === len){
console.log('download all files.');
}
});
});
}
有什么问题呢?result的结果和urls是顺序并不匹配,所以,我们不知道怎么使用这个result。
如何改进?请看如下代码,使用计数器,代码如下:
function downFiles(urls){
var result = [],len = urls.length;
var count = 0;// 定义计数器
if(len === 0){
console.log('urls argument is a empty array.');
return;
}
urls.forEach(function(url, i){
downloadAsync(url, function(text){
result[i] = text;
count++;
//计数器等于url个数,那么退出
if(count === len){
console.log('download all files.');
}
});
});
}
No.67、绝不要同步地调用异步的回调函数
Tips:
- 即使可以立即得到数据,也绝不要同步地调用异步回调函数
- 同步地调用异步的回调函数扰乱了预期的操作序列,并可能导致意想不到的交错代码
- 同步地调用异步的回调函数可能导致栈溢出或错误的处理异常
- 使用异步的API,比如setTimeout函数来调用异步回调函数,使其运行于另外一个回合
如果异步下载代码,优先从缓存拿数据,那么代码很可能是:
var cache = new Dict();
function downFileWithCache(url, onsuccess){
if (cache.has(url)){
onsuccess(cache.get(url));
return;
}
return downloadAsync(url, function(text){
cache.set(url, text);
onsuccess(text);
});
}
以上代码,同步的调用了回调函数,可能会导致一些微妙的问题,异步的回调函数本质上是以空的调用栈来调用,因此将异步的循环实现为递归函数是安全的,完全没有累计赵越调用栈控件的危险。同步的调用不能保证这一点,所以,更好的代码如下:
var cache = new Dict();
function downFileWithCache(url, onsuccess){
if (cache.has(url)){
setTimeout(onsuccess.bind(null, cache.get(url)), 0)
return;
}
return downloadAsync(url, function(text){
cache.set(url, text);
onsuccess(text);
});
}
No.68、使用promise模式清洁异步逻辑
Tips:
- promise代表最终值,即并行操作完成时最终产生的结果
- 使用promise组合不同的并行操作
- 使用promise模式的API避免数据竞争
- 在要求有意的竞争条件时使用select(也被称为choose)
一直以来,JavaScript处理异步的方式都是callback,当异步任务很多的时候,维护大量的callback将是一场灾难。所以Promise规范也应运而生,http://www.ituring.com.cn/article/66566 。
Promise已经纳入了ES6,而且高版本的Chrome、Firefox都已经实现了Promise,只不过和现如今流行的类Promise类库相比少些API。
看下最简单的Promise代码(猜猜最后输出啥?):
var p1 = new Promise(function(resolve, reject){
setTimeout(function(){
console.log('1');
resolve('2');
}, 3000);
});
p1.then(function(val){
console.log(val);
});
如果代码是这样呢?
var p1 = new Promise(function(resolve, reject){
setTimeout(function(){
console.log('1');
//resolve('2');
reject('3');
}, 3000);
});
p1.then(function(val){
console.log(val);
}, function(val){
console.log(val);
});
再来看一个Promise.all的示例:
Promise.all([new Promise(function(resolve, reject){
setTimeout(function(){
console.log(1);
resolve(1);
}, 2000);
}), new Promise(function(resolve, reject){
setTimeout(function(){
console.log(2);
resolve(2);
}, 1000);
}), Promise.reject(3)])
.then(function(values){
console.log(values);
});
Promise.all([]).then(fn)
只有当所有的异步任务执行完成之后,才会执行then。
接着看一个Promise.race的示例:
Promise.race([new Promise(function(resolve, reject){
setTimeout(function(){
console.log('p1');
resolve(1);
}, 2000);
}), new Promise(function(resolve, reject){
setTimeout(function(){
console.log('p2');
resolve(2);
}, 1000);
})])
.then(function(value){
console.log('value = ' + value);
});
结果是:
p2
value = 2
p1
Promise.race([]).then(fn)
会同时执行所有的异步任务,但是只要完成一个异步任务,那么就调用then。
promise.catch(onRejected)是promise.then(undefined, onRejected) 的语法糖。
更多关于Promise的资料请参考:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
第三方Promise库有许多,如:Q, when.js 等
*:first-child {
margin-top: 0 !important;
}
body>*:last-child {
margin-bottom: 0 !important;
}
/* BLOCKS
=============================================================================*/
p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}
/* HEADERS
=============================================================================*/
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}
h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}
h1 {
font-size: 28px;
color: #000;
}
h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
color: #777;
font-size: 14px;
}
body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}
/* LINKS
=============================================================================*/
a {
color: #4183C4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* LISTS
=============================================================================*/
ul, ol {
padding-left: 30px;
}
ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}
ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}
dl {
padding: 0;
}
dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}
dl dt:first-child {
padding: 0;
}
dl dt>:first-child {
margin-top: 0px;
}
dl dt>:last-child {
margin-bottom: 0px;
}
dl dd {
margin: 0 0 15px;
padding: 0 15px;
}
dl dd>:first-child {
margin-top: 0px;
}
dl dd>:last-child {
margin-bottom: 0px;
}
/* CODE
=============================================================================*/
pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}
code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}
pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}
pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}
pre code, pre tt {
background-color: transparent;
border: none;
}
kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}
/* QUOTES
=============================================================================*/
blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}
blockquote>:first-child {
margin-top: 0px;
}
blockquote>:last-child {
margin-bottom: 0px;
}
/* HORIZONTAL RULES
=============================================================================*/
hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}
/* IMAGES
=============================================================================*/
img {
max-width: 100%
}
-->