This repository was archived by the owner on Apr 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
105 lines (90 loc) · 2.08 KB
/
Copy pathindex.js
File metadata and controls
105 lines (90 loc) · 2.08 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const cacheMap = new Map()
const defaultTTL = -1
const cleanupMsec = 3600000 // 1h default cleanup
const jsonfile = require('jsonfile')
const { version } = require('./package.json')
const cacheFile = `./.tmpSmC_${version}_cache.json`
jsonfile.readFile(cacheFile)
.then(cachedJson => {
fillCacheFromJson(cachedJson)
}).catch(() => {
saveCacheToDisk()
})
// CleanUp function.
setInterval(() => {
const nowts = Date.now()
cacheMap.forEach((value, key) => {
if (value.ttl !== -1 && (nowts - value.ts) > value.ttl) {
cacheMap.delete(key)
}
})
saveCacheToDisk()
}, cleanupMsec)
const checkStr = val => typeof (val) === 'string'
const getTTL = ttl => ttl || defaultTTL
function fillCacheFromJson (jsonOjb) {
jsonOjb.forEach(x => {
const [key, payload] = x
cacheMap.set(key, payload)
})
}
function saveCacheToDisk () {
jsonfile.writeFile(cacheFile, [...cacheMap]).catch(() => {
// Skipping step of writing to the disk
})
}
function getEncodedStr (str) {
const value = checkStr(str) ? str : JSON.stringify(str)
return Buffer.from(value).toString('base64')
}
function getDecoded (enc) {
return Buffer.from(enc, 'base64').toString()
}
function checkTTlVal (entry, k) {
if (!entry) return { val: undefined, isStr: undefined }
const { val, isStr, ts, ttl } = entry
if (ttl === -1 || (Date.now() - ts) < ttl) {
return { val, isStr }
} else {
del(k)
}
}
function markTtlVal (v, ttl) {
const isStr = checkStr(v)
return {
val: getEncodedStr(v),
ttl: getTTL(ttl),
ts: Date.now(),
isStr
}
}
function set (k, v, ttl) {
if (!k || !v) {
return
}
cacheMap.set(getEncodedStr(k), markTtlVal(v, ttl))
saveCacheToDisk()
}
function get (k) {
try {
const { val, isStr } = checkTTlVal(cacheMap.get(getEncodedStr(k)), k)
if (val) {
return isStr ? getDecoded(val) : JSON.parse(getDecoded(val))
}
} catch (e) {
console.log(e.message)
}
}
function del (k) {
cacheMap.delete(getEncodedStr(k))
saveCacheToDisk()
}
function clear () {
cacheMap.clear()
}
module.exports = {
set,
get,
del,
clear
}