oxjs/source/Ox/js/Function.js

122 lines
3.6 KiB
JavaScript
Raw Normal View History

'use strict';
2012-05-25 11:42:33 +00:00
2012-01-07 07:20:02 +00:00
/*@
Ox.cache <f> Memoize a function
fn <f> function
options <o>
async <b|false> function is async, last argument must be callback
key <f|JSON.stringify> return key for arguments
2012-01-07 07:20:02 +00:00
<script>
Ox.test.fn = Ox.cache(function(n) { return n * Math.random(); });
2012-01-07 07:20:02 +00:00
</script>
> Ox.test.fn(10) == Ox.test.fn(10);
2012-01-07 07:20:02 +00:00
true
> Ox.test.fn(10) == Ox.test.fn.clear()(10);
2012-01-07 07:20:02 +00:00
false
@*/
2012-06-21 11:47:52 +00:00
// TODO: add async test
Ox.cache = function(fn, options) {
2012-01-07 07:20:02 +00:00
var cache = {},
ret = function() {
options = Ox.extend({
async: false,
key: JSON.stringify
}, options || {});
2012-06-21 11:47:52 +00:00
var args = Ox.toArray(arguments), key = options.key(args);
function callback() {
// cache all arguments passed to callback
cache[key] = Ox.toArray(arguments);
// call the original callback
Ox.last(args).apply(this, arguments);
}
if (options.async) {
if (!(key in cache)) {
// call function with patched callback
2012-05-24 07:45:33 +00:00
fn.apply(this, args.slice(0, -1).concat(callback));
} else {
// call callback with cached arguments
setTimeout(function() {
callback.apply(this, cache[key]);
});
}
} else {
if (!(key in cache)) {
cache[key] = fn.apply(this, args);
}
return cache[key];
}
2012-01-07 07:20:02 +00:00
};
ret.clear = function() {
if (arguments.length == 0) {
cache = {};
} else {
Ox.makeArray(arguments).forEach(function(key) {
2012-01-07 07:20:02 +00:00
delete cache[key];
});
}
return ret;
2012-06-21 11:47:52 +00:00
};
2012-01-07 07:20:02 +00:00
return ret;
};
2012-04-08 12:19:53 +00:00
2012-05-24 16:20:22 +00:00
/*@
Ox.identity <f> Returns its first argument
This can be used as a default iterator
2012-05-27 21:14:59 +00:00
> Ox.identity(Infinity)
Infinity
2012-05-24 16:20:22 +00:00
@*/
Ox.identity = function(value) {
return value;
2012-05-19 08:09:48 +00:00
};
2012-04-08 12:19:53 +00:00
/*@
2012-05-24 16:20:22 +00:00
Ox.noop <f> Returns undefined and calls optional callback without arguments
This can be used as a default iterator in an asynchronous loop, or to
combine a synchronous and an asynchronous code path.
2012-05-27 21:14:59 +00:00
> Ox.noop(1, 2, 3)
undefined
2012-05-28 13:52:27 +00:00
> Ox.noop(1, 2, 3, function() { Ox.test(arguments.length, 0); })
2012-05-27 21:14:59 +00:00
undefined
2012-04-08 12:19:53 +00:00
@*/
Ox.noop = function() {
var callback = Ox.last(arguments);
2012-04-08 12:19:53 +00:00
Ox.isFunction(callback) && callback();
};
2013-07-09 23:27:25 +00:00
/*@
Ox.queue <f> Queue of asynchronous function calls with cached results
The results are cached based on all but the last argument, which is the
callback.
fn <f> function
maxThreads <n> Number of parallel function calls
callback <f> Callback function
result <*> Result
@*/
Ox.queue = function(fn, maxThreads) {
var maxThreads = maxThreads || 10,
queue = [],
threads = 0;
function process() {
var n = Math.min(queue.length, maxThreads - threads);
if (n) {
threads += n;
Ox.parallelForEach(queue.splice(0, n), function(args, index, array, callback) {
fn.apply(this, args.slice(0, -1).concat(function(result) {
threads--;
args.slice(-1)[0](result);
callback();
}));
}, process);
}
}
return Ox.cache(function() {
queue.push(Ox.toArray(arguments));
process();
}, {
async: true,
key: function(args) {
return JSON.stringify(args.slice(0, -1));
}
});
};