Interceptor.js
Interceptor.js is a JavaScript framework that provides the ability to intercept a JavaScript function call.
Installation
Latest version: v0.2.0
With npm
npm install interceptor.jsWith bower
bower install interceptor.jsWhat does it do?
Let's go over the hello world example first
var hi = function(name){ return "Hello " + name ;}//
hi.call();
// => "Hello undefined" because we didn't pass in any arguments
//We can fix this by intercepting before the function call
Interceptor.intercept(hi, function(thisArg, targetFunc, argList){
//If no argument or the first argument is undefined we replace the first argument with "guest"
if(argList.length == 0 || argList[0] == undefined){
argList[0] = "guest" ;
}
});
hi.call();
// => "Hello guest" !
hi.call(null, "World");
// => "Hello World" Prerequisite and limitation
As you can see from the example above, the hi function was called through its call method.
Indeed Interceptor.js intercepts a function by overwriting its call and apply methods.
Therefore, in order for the interception to be effective,
- it requires the caller to call the target function through its
callorapplymethod.
Programming APIs
Interceptor
Interceptor.intercept-function(targetFunc, preFunc, postFunc)targetFunc- The target function that will be intercepted. One function can be intercepted as many times as desired and the last interception will be invoked first.preFunc-function(thisArg, targetFunc, argList)- The function that will be 'pluged in' and will run before the target function runs.thisArg- Thethisobject in the context of the target function.targetFunc- Points to the target function.argList- An array of objects that will be the arguments to invoke the target function.
postFunc-function(thisArg, targetFunc, argList, returnVal)- The function that will run after the target function runs.thisArg,targetFunc,argList- Same as above.returnVal- The return value from the target function. If you want to return a different value to the caller, usethis.doReturn(myNewReturnValue).
Interceptor.revert-function(targetFunc)targetFunc- Revert the last interception ontargetFunc.
Interceptor.revertAll-function(targetFunc)targetFunc- Revert all interceptions ontargetFunc.
Interceptor.noConflict-function()Restore the global variableInterceptorto its previous value and returns the reference of Interceptor.js
Interceptor.prototype
The preFunc and postFunc will be assigned to an instance of Interceptor class. Therefore within the context of these two functions you have access to the methods inherits from Interceptor.prototype.
Interceptor.prototype.doReturn-function(returnVal)- Force to return the valuereturnValinstead of the one from target function. If called withinpreFunc, the call to the target function will be skipped. ThepostFuncwill still run.reutrnVal- The value to return.
Interceptor.prototype.doSkip-function()- Skip the call to the target function. ThepostFuncwill still run.
Another brief example
var square = function(x){ return x * x ;};
square.call();
// => NaN
Interceptor.intercept(square, function(thisArg, targetFunc, argList){
if(typeof argList[0] !== "number"){
this.doReturn(undefined);
}
});
square.call();
// => undefined
square.call(null, 2);
// => 4
// Now we intercept the return value
Interceptor.intercept(square, null, function(thisArg, targetFunc, argList, ret){
if(typeof ret !== "number"){
this.doReturn(0);
}
});
square.call();
// => 0
square.call(null, 2);
// => 4