實現一個Promise(基於Promise/A+規範)

前言

相信你們常常使用Promise,或者使用Generatorasnyc/await等異步解決方案,網上的Promise原理也遍地開花。
一直以來想抽出時間也寫一寫Promise實現,可是日常工做也是忙的不可開交,正好元旦放了3天假期,休息了2天半,抽出半天時間來看一看Promisejavascript

如何使用Promise

new Promise((resolve, reject) => {
  setTimeout(() => {
    resolve(1);
  }, 1000)
}).then((data) => {
  console.log(data);
  return new Promise((res) => {
    setTimeout(() => {
      res(2);
    },1000)
  })

}).then((res) => {
  console.log(res);
})

複製代碼

術語

  • Promise是一個包含了兼容promise規範then方法的對象或函數。
  • thenable 是一個包含了then方法的對象或函數。
  • value 是任何Javascript值。 (包括 undefined, thenable, Promise等)。
  • exception 是由throw表達式拋出來的值。
  • reason 是一個用於描述Promise被拒絕緣由的值。

因爲Promise/A+規範並不包括catchraceall等方法的實現,因此這裏也不會去詳細解釋。java

要求

一個Promise必須處在其中之一的狀態:pending, fulfilledrejected。 若是是pending狀態,則promisegit

能夠轉換到fulfilledrejected狀態。 若是是fulfilled狀態,則promisegithub

  • 不能轉換成任何其它狀態。
  • 必須有一個值,且這個值不能被改變。

若是是rejected狀態,則promise能夠:segmentfault

  • 不能轉換成任何其它狀態。
  • 必須有一個緣由,且這個值不能被改變。
function MyPromise(callback) {

  let that = this;
  //定義初始狀態
  //Promise狀態
  that.status = 'pending';
  //value
  that.value = 'undefined';
  //reason 是一個用於描述Promise被拒絕緣由的值。
  that.reason = 'undefined';

  //定義resolve
  function resolve(value) {
    //當status爲pending時,定義Javascript值,定義其狀態爲fulfilled
    if(that.status === 'pending') {
      that.value = value;
      that.status = 'resolved';
    }
  }

  //定義reject
  function reject(reason) {
    //當status爲pending時,定義reason值,定義其狀態爲rejected
    if(that.status === 'pending') {
      that.reason = reason;
      that.status = 'rejected';
    }
  }

  //捕獲callback是否報錯
  try {
    callback(resolve, reject);
  } catch (error) {
    reject(error);
  }
}
複製代碼

Promise對象有一個then方法,用來註冊在這個Promise狀態肯定後的回調,then方法接受兩個參數: Promise.then(onFulfilled,onRejected)
咱們把then函數寫在原型上。數組

MyPromise.prototype.then = function(onFulfilled, onRejected) {
  let that = this;

  if(that.status === 'resolved') {
    onFulfilled(that.value);
  }

  if(that.status === 'rejected') {
    onRejected(that.reason);
  }
}
複製代碼

上述代碼只是實現了Promise的最基本邏輯,若是直接調用then是能夠執行的,可是並不支持異步,而Promise最大的特色就是解決callback異步回調地獄的問題。
因此咱們來改造下。promise

function MyPromise(callback) {

  let that = this;
  //定義初始狀態
  //Promise狀態
  that.status = 'pending';
  //value
  that.value = 'undefined';
  //reason 是一個用於描述Promise被拒絕緣由的值。
  that.reason = 'undefined';
  //用來解決異步問題的數組
  that.onFullfilledArray = [];
  that.onRejectedArray = [];

  //定義resolve
  function resolve(value) {
    //當status爲pending時,定義Javascript值,定義其狀態爲fulfilled
    if(that.status === 'pending') {
      that.value = value;
      that.status = 'resolved';
      that.onFullfilledArray.forEach((func) => {
        func(that.value);
      });
    }
  }

  //定義reject
  function reject(reason) {
    //當status爲pending時,定義reason值,定義其狀態爲rejected
    if(that.status === 'pending') {
      that.reason = reason;
      that.status = 'rejected';
      that.onRejectedArray.forEach((func) => {
        func(that.reason);
      });
    }
  }

  //捕獲callback是否報錯
  try {
    callback(resolve, reject);
  } catch (error) {
    reject(error);
  }
}
複製代碼

then函數的改造bash

MyPromise.prototype.then = function(onFulfilled, onRejected) {
  let that = this;
  //須要修改下,解決異步問題,即當Promise調用resolve以後再調用then執行onFulfilled(that.value)。
  //用兩個數組保存下onFulfilledArray
  if(that.status === 'pending') {
    that.onFullfilledArray.push((value) => {
      onFulfilled(value);
    });

    that.onRejectedArray.push((reason) => {
      onRejected(reason);
    });
  }

  if(that.status === 'resolved') {
    onFulfilled(that.value);
  }

  if(that.status === 'rejected') {
    onRejected(that.reason);
  }
}
複製代碼

因爲Promise/A+規範規定一個Promise必須處在其中之一的狀態:pending, fulfilledrejected,因此在用戶使用Promise時,寫的是異步代碼的話,那麼此時Promise必定是處於pending狀態,反之正常調用。
所以,初始化Promise時,定義兩個數組爲onFullfilledArrayonRejectedArray,用來保存then函數的兩個回調函數onFulfilledonRejected。同時咱們在then函數中判斷status是不是pending,而後將onFulfilledonRejected分別傳入對應數組中。當用戶調用resolvereject時,更改狀態,遍歷數組,執行onFulfilled或者onRejected,從而異步調用。markdown

then函數的鏈式調用

Promise/A+規範中:異步

對於一個promise,它的then方法能夠調用屢次

  • promise fulfilled後,全部onFulfilled都必須按照其註冊順序執行。
  • promise rejected後,全部OnRejected都必須按照其註冊順序執行。

then 必須返回一個promise

  • 若是onFulfilledonRejected 返回了值x, 則執行Promise 解析流程[[Resolve]](promise2, x)
  • 若是onFulfilledonRejected拋出了異常e, 則promise2應當以ereason被拒絕。
  • 若是 onFulfilled 不是一個函數且promise1已經fulfilled,則promise2必須以promise1的值fulfilled
  • 若是OnReject 不是一個函數且promise1已經rejected, 則promise2必須以相同的reason被拒絕。
MyPromise.prototype.then = function(onFulfilled, onRejected) {
  let that = this;
  let promise2;

  // 根據標準,若是then的參數不是function,則咱們須要忽略它
  onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : function(f) {};
  onRejected = typeof onRejected === 'function' ? onRejected : function(r) {};
  //須要修改下,解決異步問題,即當Promise調用resolve以後再調用then執行onFulfilled(that.value)。
  //用兩個數組保存下onFulfilledArray
  if(that.status === 'pending') {

    return promise2 = new Promise(function(resolve, reject) {
      that.onFullfilledArray.push((value) => {
      try {
        let x = onFulfilled(that.value);
        //判斷onFulfilled是不是一個Promise,若是是,那麼就直接把MyPromise中的resolve和reject傳給then;
        //返回值是一個Promise對象,直接取它的結果作爲promise2的結果
        if(x instanceof MyPromise) {
          x.then(resolve, reject);
        }
        //不然,以它的返回值作爲promise2的結果
        resolve(x);
      } catch (error) {
        reject(error);
      }
      });

      that.onRejectedArray.push((value) => {
          try {
            let x = onRejected(that.value);
            //判斷onRejected是不是一個Promise,若是是,那麼就直接把MyPromise中的resolve和reject傳給then;
            //返回值是一個Promise對象,直接取它的結果作爲promise2的結果
            if(x instanceof MyPromise) {
              x.then(resolve, reject);
            }
            //不然,以它的返回值作爲promise2的結果
            resolve(x);
          } catch (error) {
            reject(error);
          }
      });

    })
  }

  if(that.status === 'fulfilled') {
    return promise2 = new MyPromise(function(resolve, reject) {
      try {
        let x = onFulfilled(that.value);
        //判斷onFulfilled是不是一個Promise,若是是,那麼就直接把MyPromise中的resolve和reject傳給then;
        //返回值是一個Promise對象,直接取它的結果作爲promise2的結果
        if(x instanceof MyPromise) {
          x.then(resolve, reject);
        }
        //不然,以它的返回值作爲promise2的結果
        resolve(x);
      } catch (error) {
        reject(error);
      }
      
    })
  }

  if(that.status === 'rejected') {
    return new MyPromise(function(resolve, reject) {
      try {
        let x = onRejected(that.value);
        //判斷onRejected是不是一個Promise,若是是,那麼就直接把MyPromise中的resolve和reject傳給then;
        //返回值是一個Promise對象,直接取它的結果作爲promise2的結果
        if(x instanceof MyPromise) {
          x.then(resolve, reject);
        }
        //不然,以它的返回值作爲promise2的結果
        resolve(x);
      } catch (error) {
        reject(error);
      }
      
    })
    
  }
}

複製代碼

在調用then時,判斷onFulfilledonRejected是不是一個函數,若是不是,返回一個匿名函數,同時必須返回各參數的值,用來解決鏈式調用時Promise值的穿透問題。
例如:

new MyPromise(resolve=>resolve(8))
  .then()
  .then()
  .then(function foo(value) {
    alert(value)
  })
複製代碼

因此咱們把這塊改爲這樣:

onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : function(f) { return f};
  onRejected = typeof onRejected === 'function' ? onRejected : function(r) {throw r};
複製代碼

可是這樣每次判斷都須要從新寫這個xMyPromise的關係,因此,咱們須要將這塊代碼給抽象出來,這塊代碼在Promise/A+規範中叫作resolvePromise

function resolvePromise(promise, x, resolve, reject) {
  let then,thenCalledOrThrow = false
  //若是promise 和 x 指向相同的值, 使用 TypeError作爲緣由將promise拒絕。
  if (promise === x) {
    return reject(new TypeError('Chaining cycle detected for promise!'))
  }

  //判斷x是不是一個Promise,若是是,那麼就直接把MyPromise中的resolve和reject傳給then;
  //返回值是一個Promise對象,直接取它的結果作爲promise2的結果
  if ((x !== null) && ((typeof x === 'object') || (typeof x === 'function'))) {
    try {
      then = x.then
      if (typeof then === 'function') { // typeof 

        //x.then(resolve, reject);
        then.call(x, function rs(y) {

          if (thenCalledOrThrow) return

          thenCalledOrThrow = true

          return resolvePromise(promise, y, resolve, reject)

        }, function rj(r) {

          if (thenCalledOrThrow) return

          thenCalledOrThrow = true

          return reject(r)

        })
      } else {

        return resolve(x)
      }
    } catch(e) {
      if (thenCalledOrThrow) return

      thenCalledOrThrow = true

      return reject(e)
    }
  } else {

    return resolve(x)
  }

}
複製代碼

then函數最後修改成:

MyPromise.prototype.then = function(onFulfilled, onRejected) {
  let that = this;
  let promise2;
  // 根據標準,若是then的參數不是function,則咱們須要忽略它
  onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : function(f) { return f};
  onRejected = typeof onRejected === 'function' ? onRejected : function(r) {throw r};
  //須要修改下,解決異步問題,即當Promise調用resolve以後再調用then執行onFulfilled(that.value)。
  //用兩個數組保存下onFulfilledArray
  if(that.status === 'pending') {
    return promise2 = new Promise(function(resolve, reject) {
      that.onFullfilledArray.push((value) => {
        try {
          let x = onFulfilled(value);
          resolvePromise(promise2, x, resolve, reject)
        } catch(e) {
          return reject(e)
        }
      });
      
      that.onRejectedArray.push((value) => {
        try {
          let x = onRejected(value);
          resolvePromise(promise2, x, resolve, reject)
        } catch(e) {
          return reject(e)
        }
      });
    })
  }

  if(that.status === 'fulfilled') {
    return promise2 = new MyPromise(function(resolve, reject) {
      try {
        let x = onFulfilled(that.value);
        //處理then的多種狀況
        resolvePromise(promise2, x, resolve, reject)
      } catch (error) {
        reject(error);
      }
    })
  }

  if(that.status === 'rejected') {
    return new MyPromise(function(resolve, reject) {
      try {
        let x = onRejected(that.value);
        //處理then的多種狀況
        resolvePromise(promise2, x, resolve, reject);
      } catch (error) {
        reject(error)
      }
      
    })
    
  }
}
複製代碼

測試一下:

new MyPromise((resolve, reject) => {
  setTimeout(() => {
    resolve(1);
  }, 1000)
}).then((data) => {
  console.log(data);
  return new MyPromise((res) => {
    setTimeout(() => {
      res(2);
    },1000)
  })
}).then((res) => {
  console.log(res);
})
//1
//2
複製代碼

最後

Promise GITHUB地址
參考資料:

《Promise/A+規範》
《Promise3》
《實現一個完美符合Promise/A+規範的Promise》
《剖析Promise內部結構,一步一步實現一個完整的、能經過全部Test case的Promise類》

相關文章
相關標籤/搜索