-
Notifications
You must be signed in to change notification settings - Fork 7
/
CachedMap.js
51 lines (47 loc) · 1.49 KB
/
CachedMap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Owner: [email protected]
* @license MPL 2.0
* @copyright Famous Industries, Inc. 2014
*/
define(function(require, exports, module) {
/**
* A simple in-memory object cache. Used as a helper for Views with
* provider functions.
* @class CachedMap
* @constructor
*/
function CachedMap(mappingFunction) {
this._map = mappingFunction || null;
this._cachedOutput = null;
this._cachedInput = Number.NaN; //never valid as input
}
/**
* Creates a mapping function with a cache.
* This is the main entrypoint for this object.
* @static
* @method create
* @param {function} mappingFunction mapping
* @return {function} memoized mapping function
*/
CachedMap.create = function create(mappingFunction) {
var instance = new CachedMap(mappingFunction);
return instance.get.bind(instance);
};
/**
* Retrieve items from cache or from mapping functin.
*
* @method get
* @param {Object} input input key
*/
CachedMap.prototype.get = function get(input) {
if (input !== this._cachedInput) {
this._cachedInput = input;
this._cachedOutput = this._map(input);
}
return this._cachedOutput;
};
module.exports = CachedMap;
});