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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
local sourceMgr = require 'vm.source'
local Sort = 0
local mt = {}
mt.__index = mt
mt.type = 'local'
mt._close = math.maxinteger
mt._infoCount = 0
mt._infoLimit = 10
function mt:setValue(value)
if self.value then
self.value:mergeValue(value)
else
self.value = value
end
end
function mt:getValue()
return self.value
end
function mt:addInfo(tp, source)
if not source then
error('No source')
end
local id = source.id
if not id then
error('Not instanted source')
end
if self._info[id] then
return
end
Sort = Sort + 1
local info = {
type = tp,
source = id,
_sort = Sort,
}
self._info[id] = info
self._infoCount = self._infoCount + 1
if self._infoCount > self._infoLimit then
for srcId in pairs(self._info) do
local src = sourceMgr.list[srcId]
if not src then
self._info[srcId] = nil
self._infoCount = self._infoCount - 1
end
end
self._infoLimit = self._infoCount * 2
if self._infoLimit < 10 then
self._infoLimit = 10
end
end
end
function mt:eachInfo(callback)
local list = {}
for srcId, info in pairs(self._info) do
local src = sourceMgr.list[srcId]
if src then
list[#list+1] = info
else
self._info[srcId] = nil
self._infoCount = self._infoCount - 1
end
end
table.sort(list, function (a, b)
return a._sort < b._sort
end)
for i = 1, #list do
local info = list[i]
local res = callback(info, sourceMgr.list[info.source])
if res ~= nil then
return res
end
end
return nil
end
function mt:set(name, v)
if not self._flag then
self._flag = {}
end
self._flag[name] = v
end
function mt:get(name)
if not self._flag then
return nil
end
return self._flag[name]
end
function mt:getName()
return self.name
end
function mt:shadow(old)
if not old then
if not self._shadow then
return nil
end
for i = #self._shadow, 1, -1 do
local loc = self._shadow[i]
if not loc:getSource() then
table.remove(self._shadow, i)
end
end
return self._shadow
end
local group = old._shadow
if not group then
group = {}
group[#group+1] = old
end
group[#group+1] = self
self._shadow = group
old:close(self:getSource().start - 1)
end
function mt:close(pos)
if pos then
self._close = pos
else
return self._close
end
end
function mt:getSource()
return sourceMgr.list[self.source]
end
return function (name, source, value)
if not value then
error('Local must has a value')
end
if not source then
error('No source')
end
local id = source.id
if not id then
error('Not instanted source')
end
local self = setmetatable({
name = name,
source = id,
value = value,
_info = {},
}, mt)
return self
end
|