|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +if (typeof Map == 'undefined' || !Object.entries) { |
| 4 | + module.exports = function compress(value) { |
| 5 | + return value; |
| 6 | + }; |
| 7 | + return; |
| 8 | +} |
| 9 | + |
| 10 | +/** |
| 11 | + * @param {array} value |
| 12 | + * @returns {Boolean} is this an array where all fields are numbers (including the empty array). |
| 13 | + */ |
| 14 | +function isNumericArray(value) { |
| 15 | + for (var i = 0; i < value.length; i++) { |
| 16 | + if (typeof (value[i]) !== 'number') { |
| 17 | + return false; |
| 18 | + } |
| 19 | + } |
| 20 | + return true; |
| 21 | +} |
| 22 | + |
| 23 | +/** |
| 24 | + * Compress data returned by geobuf's decode function. |
| 25 | + * Objects are modified in place. |
| 26 | + * |
| 27 | + * This is useful in cases where the polygons will be used for a long time. |
| 28 | + * By default, arrays are reserved with extra capacity that won't be used. |
| 29 | + * (The empty array starts with a capacity of 16 elements by now, |
| 30 | + * which is inefficient for decoded points of length 2) |
| 31 | + * |
| 32 | + * This has an optional option to deduplicate identical points, |
| 33 | + * which may be useful for collections of polygons sharing points as well |
| 34 | + * as for calling compress multiple times with different objects. |
| 35 | + * |
| 36 | + * @param {any} value the value to compress. |
| 37 | + * @param {Map} [cache] by default, a new cache is created each time for external calls to compress. |
| 38 | + * Must support get/has/set. |
| 39 | + * @param {null|Map} [numericArrayCache] if non-null, this will be used to deduplicate |
| 40 | + * numeric arrays of any length, including empty arrays. |
| 41 | + * |
| 42 | + * This deduplication may be unsafe if callers would modify arrays. |
| 43 | + * @return {any} value with all fields compressed. |
| 44 | + */ |
| 45 | +function compress(value, cache = new Map(), numericArrayCache = null) { |
| 46 | + var i; |
| 47 | + if (cache.has(value)) { |
| 48 | + return cache.get(value); |
| 49 | + } |
| 50 | + if (Array.isArray(value)) { |
| 51 | + // By default, v8 allocates an array with a capacity of 16 elements. |
| 52 | + // This wastes memory for small arrays such as Points of length 2. |
| 53 | + // |
| 54 | + // The function slice is used because it was available in older JS versions |
| 55 | + // and experimentally appears to reduce capacity used. |
| 56 | + var result = value.slice(); |
| 57 | + if (numericArrayCache && isNumericArray(result)) { |
| 58 | + var cacheKey = JSON.stringify(result); |
| 59 | + var cachedEntry = numericArrayCache.get(cacheKey); |
| 60 | + if (cachedEntry) { |
| 61 | + cache.set(value, cachedEntry); |
| 62 | + return cachedEntry; |
| 63 | + } |
| 64 | + // Reuse array instances such as [], [1.5, 1.5] |
| 65 | + numericArrayCache.set(cacheKey, result); |
| 66 | + cache.set(value, result); |
| 67 | + // Nothing left to compress. |
| 68 | + return result; |
| 69 | + } |
| 70 | + // Store this in the cache immediately to guard against infinite recursion on |
| 71 | + // invalid inputs. |
| 72 | + cache.set(value, result); |
| 73 | + for (i = 0; i < result.length; i++) { |
| 74 | + result[i] = compress(result[i], cache, numericArrayCache); |
| 75 | + } |
| 76 | + return result; |
| 77 | + } else if (value && typeof value === 'object') { |
| 78 | + // Compress fields of the object in place. |
| 79 | + // Set this to the cache immediately to prevent infinite recursion on invalid data. |
| 80 | + cache.set(value, value); |
| 81 | + var entries = Object.entries(value); |
| 82 | + for (i = 0; i < entries.length; i++) { |
| 83 | + var entry = entries[i]; |
| 84 | + var field = entry[1]; |
| 85 | + var compressedValue = compress(field, cache, numericArrayCache); |
| 86 | + if (field !== compressedValue) { |
| 87 | + // Replace object field for this key with the compressed version |
| 88 | + value[entry[0]] = compressedValue; |
| 89 | + } |
| 90 | + } |
| 91 | + } else if (typeof value === 'string') { |
| 92 | + // Deduplicate strings. |
| 93 | + cache.set(value, value); |
| 94 | + } |
| 95 | + return value; |
| 96 | +} |
| 97 | +module.exports = compress; |
0 commit comments