aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack-sources/lib/CachedSource.js
blob: 50732aebdb7382e22a4efb7b756d7b50428966e6 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
function CachedSource(source) {
	this._source = source;
	this._cachedSource = undefined;
	this._cachedSize = undefined;
	this._cachedMaps = {};

	if(source.node) this.node = function(options) {
		return this._source.node(options);
	};

	if(source.listMap) this.listMap = function(options) {
		return this._source.listMap(options);
	};
}
module.exports = CachedSource;

CachedSource.prototype.source = function() {
	if(typeof this._cachedSource !== "undefined") return this._cachedSource;
	return this._cachedSource = this._source.source();
};

CachedSource.prototype.size = function() {
	if(typeof this._cachedSize !== "undefined") return this._cachedSize;
	if(typeof this._cachedSource !== "undefined")
		return this._cachedSize = this._cachedSource.length;
	return this._cachedSize = this._source.size();
};

CachedSource.prototype.sourceAndMap = function(options) {
	var key = JSON.stringify(options);
	if(typeof this._cachedSource !== "undefined" && key in this._cachedMaps)
		return {
			source: this._cachedSource,
			map: this._cachedMaps[key]
		};
	else if(typeof this._cachedSource !== "undefined") {
		return {
			source: this._cachedSource,
			map: this._cachedMaps[key] = this._source.map(options)
		};
	} else if(key in this._cachedMaps) {
		return {
			source: this._cachedSource = this._source.source(),
			map: this._cachedMaps[key]
		};
	}
	var result = this._source.sourceAndMap(options);
	this._cachedSource = result.source;
	this._cachedMaps[key] = result.map;
	return {
		source: this._cachedSource,
		map: this._cachedMaps[key]
	};
};

CachedSource.prototype.map = function(options) {
	if(!options) options = {};
	var key = JSON.stringify(options);
	if(key in this._cachedMaps)
		return this._cachedMaps[key];
	return this._cachedMaps[key] = this._source.map();
};

CachedSource.prototype.updateHash = function(hash) {
	this._source.updateHash(hash);
};