Skip to content

Latest commit

 

History

History
113 lines (83 loc) · 3.75 KB

07-handleable.md

File metadata and controls

113 lines (83 loc) · 3.75 KB

Handleable

There are currently two types of handlers in Quiver.js: stream handler and http handler. Handler types are differentiated based on their function signature, and there is no class hierarchy or any common feature shared among handlers. There are times when one might want to create a handler that is usable as both stream and http handler, or write filters or middlewares that can be applied to both types of handlers.

We might also want to have way to attach meta information about a handler, such as serializing it to URL or filesystem path. How about the problem of ensuring filters or middlewares are only applicable to the right handler type? The answer of all these is that Quiver.js adopt the same pattern of creating streamable and use it to create handleable

Like streamable, a handleable is a plain Javascript object that has toXXX() methods to convert it to the right handler type. But unlike streamable, handleable convertion function return in synchronous style.

var streamHandler = function(args, inputStreamable, callback) { ... }

var handleable = {
  toStreamHandler: function() {
    return streamHandler
  }
}

Handleable makes it possible to create "handlers" that are both stream handler and http handler.

var streamHandler = function(args, inputStreamable, callback) { ... }
var httpHandler = function(requestHead, requestStreamable, callback) { ... }

var handleable = {
  toStreamHandler: function() {
    return streamHandler
  },
  toHttpHandler: function() {
    return httpHandler
  }
}

Handleable Builder

Since handleable is just simple wrapper around handler, it is trivial to convert a handler builder into handleable builder.

var streamHandlerBuilder = function(config, callback) { ... }

var handleableBuilder = function(config, callback) {
  streamHandlerBuilder(config, function(err, streamHandler) {
    if(err) return callback(err)

    var handleable = {
      toStreamHandler: function() {
        return streamHandler
      }
    }

    return handleable
  })
}

Handleable Middleware

To ensure that filters and middlewares are applied on the right handler type, Quiver.js provides tools to convert filter and middleware into handleable middleware.

var myStreamFilter = function(config, handler, callback) { ... }

var myStreamFilterMiddleware = function(config, handleableBuilder, callback) {
  handleableBuilder(config, function(err, handleable) {
    if(err) return callback(err)

    if(!handleable.toStreamHandler) return callback(error(500, 'mismatch handler type'))

    myStreamFilter(config, handleable.toStreamHandler(), function(err, filteredHandler) {
      if(err) return callback(err)

      var filteredHandleable = {
        toStreamHandler: function() {
          return filteredHandler
        }
      }
      callback(null, filteredHandleable)
    })
  })
}

Handleable Extension

The design of handleable also enable possibility for one to "serialize" a handler by sending its location to some client. For example a file handler may have a toFilePath() method on its handleable so that local clients can make optimization in accessing the handler content.

var fileHandleableBuilder = function(config, callback) {
  var filePath = config.filePath

  var handler = function(args, inputStreamable, callback) {
    ...
  }

  var handleable = {
    toStreamHandler: function() {
      return handler
    },
    toFilePath: function() {
      return filePath
    }
  }

  callback(null, handleable)
}

The handleable extension is currently still in experimental design. The protocol for how extension methods should behave is still in development and not available for general usage.

Next: Component