summaryrefslogtreecommitdiff
path: root/server/src/vm/chain.lua
blob: 23b38a752fad3a78c5b14111a75f9a804cf98998 (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
local valueMgr = require 'vm.value'
local sourceMgr = require 'vm.source'

local mt = {}
mt.__index = mt
mt.type = 'chain'

mt.min = 100
mt.max = 100
mt.count = 0

function mt:clearCache()
    if self.count <= self.max then
        return
    end
    local n = 0
    for uri, value in pairs(self.cache) do
        local ok = value:eachInfo(function ()
            return true
        end)
        if ok then
            n = n + 1
        else
            self.cache[uri] = nil
        end
    end
    self.count = n
    self.max = self.count * 2
    if self.max < self.min then
        self.max = self.min
    end
end

function mt:get(uri)
    if not self.cache[uri] then
        self.count = self.count + 1
        self:clearCache()
        self.cache[uri] = valueMgr.create('any', sourceMgr.dummy())
        self.cache[uri]:markGlobal()
        self.cache[uri].uri = uri
    end
    return self.cache[uri]
end

return function ()
    return setmetatable({
        cache = {},
    }, mt)
end