Examples

How to throw reject

If you have a function that is a promise, and want to end it and throw a reject, you can throw an Error.

Components.utils.import("resource://gre/modules/osfile.jsm")

let path = OS.Path.join(OS.Constants.Path.tmpDir, "file.txt");

let promise = OS.File.exists(path);

let newPromise = promise.then(function onFulfill(aExists) {
  if (aExists) {
    console.log("You have file.txt in your temporary directory.");
  } else {
    throw new Error("You don't have file.txt in your temporary directory.");
  }
});

// Unexpected errors should always be reported at the end of a promise chain.
let lastPromise = newPromise.then(function onFulfill(){

})
.catch(function onReject(aRejectReason) {
     console.warn('newPromise failed with reason: ', aRejectReason);
});

Using a promise returned by a function (verbose)

This example uses a verbose syntax, showing all the involved promises.

Components.utils.import("resource://gre/modules/osfile.jsm")

let path = OS.Path.join(OS.Constants.Path.tmpDir, "file.txt");

let promise = OS.File.exists(path);

let newPromise = promise.then(function onFulfill(aExists) {
  if (aExists) {
    console.log("You have file.txt in your temporary directory.");
  } else {
    console.log("You don't have file.txt in your temporary directory.");
  }
});

// Unexpected errors should always be reported at the end of a promise chain.
let lastPromise = newPromise.then(null, Components.utils.reportError);

In this case, if the file existence check succeeds, the onFulfill callback is invoked. When the callback finishes execution, newPromise will be fulfilled with an undefined fulfillment value, because the callback does not return any value. When newPromise is fulfilled, nothing happens, because no fulfillment callback is specified and the return value of the last then method is ignored.

If the file existence check fails, for example because access is denied, promise is rejected with an OS.File.Error instance. This state will propagate to newPomise, and Components.utils.reportError will report all the details of the exception to the console.

Using a promise returned by a function (compact)

The same code as the previous example is usually written with a more compact syntax:

Components.utils.import("resource://gre/modules/osfile.jsm")

let path = OS.Path.join(OS.Constants.Path.tmpDir, "file.txt");

OS.File.exists(path).then(exists => {
  console.log(exists ? "You have file.txt in your temporary directory."
                     : "You don't have file.txt in your temporary directory.");
}).then(null, Components.utils.reportError);

Chaining promises

The promise returned by then eventually assumes the state of the promise returned by the callback. This can be used for chaining:

Components.utils.import("resource://gre/modules/osfile.jsm")

OS.File.getCurrentDirectory().then(currentDir => {
  let path = OS.Path.join(currentDir, ".mozconfig");

  return OS.File.exists(path).then(exists => {
    console.log(exists ? "You have .mozconfig in " + currentDir
                       : "You don't have .mozconfig in " + currentDir);
  });
}).then(null, Components.utils.reportError);

Parallel promise (THIS EXAMPLE NEEDS MORE WORK)

So when chaining promises, consequent promises run after the previous promise completes. Now what if we want to run multiple promises and then return when all are done? This is accomplished by using Promise.all, this feature requires Promise.jsm.

const {Cu} = require("chrome");
const {TextDecoder, TextEncoder, OS} = Cu.import("resource://gre/modules/osfile.jsm", {});

/* files: An array of file paths */
function readTextFiles(files) {
  let promises = [],
      decoder = new TextDecoder();
  for (let i = 0; i < files.length; i++) {
    let promise = OS.File.read(files[i])
    promise = promise.then(function onSuccess(array) {
      return decoder.decode(array);
    });
    promises.push(promise);
  }
  return Promise.all(promises);
}

let folder = "/path/to/folder";
let promise = readTextFiles([
  OS.Path.join(folder, "read.me"),
  Os.Path.join(folder, "home.html")
]);
promise.then(
  function onSuccess(filesContent) {
    // filesContent is an array of strings; each string is the content of one file.
    console.log(filesContent);
  },
  function onFail() {
    console.error("Failed to load all files");
  }
);

See also the ask.m.o topic: Doing multiple promises in function in pareallel, how return when last done?

Simple Example User Defined Promise Function 2

Whenever you want to make a function a promise. Always wrap that function in a try catch and make that catch return Promise.reject(ex) otherwise it will not trigger the rejection function of the promise.then. This way if any error happens it will reject the promise. In the example below we try alerting an undefined variable.

Components.utils.import("resource://gre/modules/Promise.jsm");

var myPromise = myUserDefinedPromise();
myPromise.then(
  function(aSuccessReason) {
    alert('myPromise was SUCCESFUL and reason was = "' + aSuccessReason + '"');
  },
  function(aRejectReason) {
    alert('myPromise FAILED for reason = "' + uneval(aRejectReason) + '"');
  }
);

function myUserDefinedPromise() {
  try {
    //var myVarIsCommented = 'hi'; // I commented this out s oit is undefined, this will cause rejected
    alert(myVarIsCommented);

    return Promise.resolve('yay success'); // this makes the success function trigger with aSuccessReason being 'yay success' but because I commented out the var 2 lines above, it will error out on the alert(myVarIsCommented) and never get to this success line. uncommet the var 2 lines above to see the promise succesfully return
  } catch(ex) {
    return Promise.reject(ex);
  }
}

Copy and paste this code and the rejection will take place. Uncomment the line `//var myVarIsCommented.....` and the promise will complete succesfully. Now replace the `alert(myVarIsCommented)` with `throw new Error('i feel like rejecting this promise')` like this:

Components.utils.import("resource://gre/modules/Promise.jsm");

var myPromise = myUserDefinedPromise();
myPromise.then(
  function(aSuccessReason) {
    alert('myPromise was SUCCESFUL and reason was = "' + aSuccessReason + '"');
  },
  function(aRejectReason) {
    alert('myPromise FAILED for reason = "' + uneval(aRejectReason) + '"');
  }
);

function myUserDefinedPromise() {
  try {
    var myVarIsCommented = 'hi';
    alert(myVarIsCommented);
    throw new Error('i feel like rejecting this promise');
    return Promise.resolve('yay success'); // this makes the success function trigger with aSuccessReason being 'yay success' but because I commented out the var 2 lines above, it will error out on the throw and never get to this success line becuase i throw an error on the line before this
  } catch(ex) {
    return Promise.reject(ex);
  }
}

In this example even though the variable is defined, the proimse is rejected because I threw an error.

This copy/paste code here will complete succesfully:

Components.utils.import("resource://gre/modules/Promise.jsm");

var myPromise = myUserDefinedPromise();
myPromise.then(
  function(aSuccessReason) {
    alert('myPromise was SUCCESFUL and reason was = "' + aSuccessReason + '"');
  },
  function(aRejectReason) {
    alert('myPromise FAILED for reason = "' + uneval(aRejectReason) + '"');
  }
);

function myUserDefinedPromise() {
  try {
    var myVarIsCommented = 'hi';
    alert(myVarIsCommented);
    // throw new Error('i feel like rejecting this promise');
    return Promise.resolve('yay success'); // this takes place
  } catch(ex) {
    return Promise.reject(ex);
  }
}

You MUST return `Promise.resolve` in order to make the promise complete successfuly. If you do not then it will not understand itis a promise. This is improper usage:

Components.utils.import("resource://gre/modules/Promise.jsm");

var myPromise = myUserDefinedPromise();
myPromise.then(
  function(aSuccessReason) {
    alert('myPromise was SUCCESFUL and reason was = "' + aSuccessReason + '"');
  },
  function(aRejectReason) {
    alert('myPromise FAILED for reason = "' + uneval(aRejectReason) + '"');
  }
);

function myUserDefinedPromise() {
  return 'i didnt do a Promise.resolve so this will not understand that myPromise is a promise';
}
// creates this error:
/*
Exception: myPromise.then is not a function
@Scratchpad/5:8:1
WCA_evalWithDebugger@resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1069:7
WCA_onEvaluateJS@resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:734:9
DSC_onPacket@resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1098:9
LDT_send/<@resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:279:11
makeInfallible/<@resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/DevToolsUtils.js:84:7
*/

Intermediate of User Defined Promise Function 1

Components.utils.import("resource://gre/modules/Promise.jsm");

// This function creates and returns a new promise.
function promiseValueAfterTimeout(aValue, aTimeout)
{
  let deferred = Promise.defer();

  try {
    // An asynchronous operation will trigger the resolution of the promise.
    // In this example, we don't have a callback that triggers a rejection.
    setTimeout(function () {
      deferred.resolve('rawr my success value');
    }, aTimeout);
  } catch (ex) {
    // Generally, functions returning promises propagate exceptions through
    // the returned promise, though they may also choose to fail early.
    deferred.reject(ex);
  }

  // We don't return the deferred to the caller, but only the contained
  // promise, so that the caller cannot accidentally change its state.
  return deferred.promise;
}

// This code uses the promise returned be the function above.
let promise = promiseValueAfterTimeout("Value", 1000);

let newPromise = promise.then(function onFulfill(aValue) {
  console.log("Fulfilled with this value: " + aValue);
}, function onReject(aReason) {
  console.log("Rejected with this reason: " + aReason);
});

// Unexpected errors should always be reported at the end of a promise chain.
newPromise.then(null, Components.utils.reportError);
Note: More examples for consuming promises are available in the Promise object documentation.

Make user defined promise return after multiple images finish loading (Promise.all and Promise.defer)

This example shows how to use Promise.all to wait to create multiple promises with Promise.defer() and return at the end of it.

Components.utils.import("resource://gre/modules/Promise.jsm");

var myPromise = myUserDefinedPromise();
myPromise.then(
  function(aSuccessReason) {
    alert('myPromise was SUCCESFUL and reason was = "' + aSuccessReason + '"');
  },
  function(aRejectReason) {
    alert('myPromise FAILED for reason = "' + uneval(aRejectReason) + '"');
  }
);

function myUserDefinedPromise() {
  try {
    var mySubPromises = [];
    
    var imagePaths = ['http://www.mozilla.org/media/img/firefox/favicon.png', 'https://developer.cdn.mozilla.net/media/redesign/img/favicon32.png'];
    [].forEach.call(imagePaths, function(path) {
      let myImage = new Image();
      let loadThisImagePromise = Promise.defer();
      mySubPromises.push(loadThisImagePromise.promise);
      myImage.onload = function() {
        loadThisImagePromise.resolve('Succesfully loaded image at path = "' + path + '" the width of this image is = "' + this.naturalWidth + '".');
        if (!this.naturalWidth) {
          loadThisImagePromise.reject('Image loaded but it has 0 width at path = "' + path + '" the naturalWidth was 0');
        }
      }
      myImage.onerror = function(e) {
        loadThisImagePromise.reject('An error occured while loading path = "' + path + '". The error = ' + uneval(e));
      }
      myImage.onabort = function(e) {
        loadThisImagePromise.reject('Image load was aborted loading path = "' + path + '".');
      }
      myImage.src = path;
    });
    
    return Promise.all(mySubPromises);
  } catch(ex) {
    return Promise.reject(ex);
  }
}

To test and see what happens when you get an error. Change the array in the code above. Change this line:

    var imagePaths = ['http://www.mozilla.org/media/img/firefox/favicon.png', 'https://developer.cdn.mozilla.net/media/redesign/img/favicon32.png'];

Change it to:

    var imagePaths = ['http://www.mozilla.org/media/img/firefox/favicon.png', 'https://developer.cdn.mozilla.net/media/redesign/img/favicon32.png', 'blah blah'];

I added 'blah blah' to that array, it will cuase the whole promise to reject.

The case of unhandled rejections

One of the difficult problems with promises is locating uncaught rejections.

Warning: When consuming promises, you should always handle or report errors (rejection reasons). See handling errors and common pitfalls.

Rejection handlers provide information about the exact error time and location, but the handlers may sometimes be forgotten. Consider the following cases:

function f() {
  return Promise.reject(new Error("BOOM!")); // If nobody catches the error, how will it be reported?
}


function g() {
  return Promise.resolve().then(function() {
    throw new Error("BOOM!"); // If nobody catches the error, how will it be reported?
  });
}

function h() {
  Promise.reject(new Error("BOOM!"); // Oops, we forgot to return the promise, nobody can catch it!
}

We adopt the following strategy: if a promise is rejected at the time of its garbage-collection and if the promise is at the end of a promise chain (i.e. thatPromise.then has never been called), then we print a warning.

Note: This warning is generated some time after the error occurred, and may provide less information about the error location. It generally indicates the need to insert a proper error handler. When a proper rejection handler is used, it effectively replaces this delayed reporting.
let deferred = Promise.defer();
let p = deferred.promise.then();
deferred.reject(new Error("I am an uncaught error"));
deferred = null;
p = null;


In this snippet, since deferred.promise is not the last in the chain, no error will be reported for that promise. However, since p is the last promise in the chain, the error will be reported for p.

Note that this may, in some cases, cause an error to be reported more than once. For instance, consider:

let deferred = Promise.defer();
let p1 = deferred.promise.then();
let p2 = deferred.promise.then();
deferred.reject(new Error("I am an uncaught error"));
p1 = p2 = deferred = null;


In this snippet, the error is reported both at p1 and at p2.