error handling in asynchronous node.js calls

前端 未结 10 1621
感动是毒
感动是毒 2020-12-12 19:32

I\'m new to node.js although I\'m pretty familiar with JavaScript in general. My question is regarding \"best practices\" on how to handle errors in node.js.

Normall

相关标签:
10条回答
  • 2020-12-12 19:43

    Node 0.8 introduces a new concept called "Domains". They are very roughly analogousness to AppDomains in .net and provide a way of encapsulating a group of IO operations. They basically allow you to wrap your request processing calls in a context specific group. If this group throws any uncaught exceptions then they can be handled and dealt with in a manner which gives you access to all the scope and context specific information you require in order to successfully recover from the error (if possible).

    This feature is new and has only just been introduced, so use with caution, but from what I can tell it has been specifically introduced to deal with the problem which the OP is trying to tackle.

    Documentation can be found at: http://nodejs.org/api/domain.html

    0 讨论(0)
  • 2020-12-12 19:46

    One idea: You could just use a helper method to create your call backs and make it your standard practice to use it. This does put the burden on the developer still, but at least you can have a "standard" way of handling your callbacks such that the chance of forgetting one is low:

    var callWithHttpCatch = function(response, fn) {
        try {
            fn && fn();
        }
        catch {
            response.writeHead(500, {'Content-Type': 'text/plain'}); //No
        }
    }
    
    <snipped>
          var buffer = new require('buffer').Buffer(10);
          fs.read(fd, buffer, 0, 10, null,
            function(error, bytesRead, buffer) {
    
              callWithHttpCatch(response, buffer.dontTryThisAtHome());  // causes exception
    
              response.end(buffer);
            }); //fs.read
    
        }); //fs.open
    

    I know that probably isn't the answer you were looking for, but one of the nice things about ECMAScript (or functional programming in general) is how easily you can roll your own tooling for things like this.

    0 讨论(0)
  • 2020-12-12 19:47

    Two things have really helped me solve this problem in my code.

    1. The 'longjohn' module, which lets you see the full stack trace (across multiple asyncronous callbacks).
    2. A simple closure technique to keep exceptions within the standard callback(err, data) idiom (shown here in CoffeeScript).

      ferry_errors = (callback, f) ->
        return (a...) ->
          try f(a...)
          catch err
            callback(err)
      

    Now you can wrap unsafe code, and your callbacks all handle errors the same way: by checking the error argument.

    0 讨论(0)
  • 2020-12-12 19:50

    I give an answer to my own question... :)

    As it seems there is no way around to manually catch errors. I now use a helper function that itself returns a function containing a try/catch block. Additionally, my own web server class checks if either the request handling function calls response.end() or the try/catch helper function waitfor() (raising an exception otherwise). This avoids to a great extent that request are mistakenly left unprotected by the developer. It isn't a 100% error-prone solution but works well enough for me.

    handler.waitfor = function(callback) {
      var me=this;
    
      // avoid exception because response.end() won't be called immediately:
      this.waiting=true;
    
      return function() {
        me.waiting=false;
        try {
          callback.apply(this, arguments);
    
          if (!me.waiting && !me.finished)
            throw new Error("Response handler returned and did neither send a "+
              "response nor did it call waitfor()");
    
        } catch (e) {
          me.handleException(e);
        }
      }
    }
    

    This way I just have to add a inline waitfor() call to be on the safe side.

    function handleRequest(request, response, handler) {
      fs.read(fd, buffer, 0, 10, null, handler.waitfor(
        function(error, bytesRead, buffer) {
    
          buffer.unknownFunction();  // causes exception
          response.end(buffer);
        }
      )); //fs.read
    }
    

    The actual checking mechanism is a little more complex, but it should be clear how it works. If someone is interested I can post the full code here.

    0 讨论(0)
  • 2020-12-12 19:53

    At the time of this writing, the approach I am seeing is to use "Promises".

    http://howtonode.org/promises
    https://www.promisejs.org/

    These allow code and callbacks to be structured well for error management and also makes it more readable. It primarily uses the .then() function.

    someFunction().then(success_callback_func, failed_callback_func);
    

    Here's a basic example:

      var SomeModule = require('someModule');
    
      var success = function (ret) {
          console.log('>>>>>>>> Success!');
      }
    
      var failed = function (err) {
        if (err instanceof SomeModule.errorName) {
          // Note: I've often seen the error definitions in SomeModule.errors.ErrorName
          console.log("FOUND SPECIFIC ERROR");
        }
        console.log('>>>>>>>> FAILED!');
      }
    
      someFunction().then(success, failed);
      console.log("This line with appear instantly, since the last function was asynchronous.");
    
    0 讨论(0)
  • 2020-12-12 19:55

    This is one of the problems with Node right now. It's practically impossible to track down which request caused an error to be thrown inside a callback.

    You're going to have to handle your errors within the callbacks themselves (where you still have a reference to the request and response objects), if possible. The uncaughtException handler will stop the node process from exiting, but the request that caused the exception in the first place will just hang there from the user point of view.

    0 讨论(0)
提交回复
热议问题