-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtabHotReload.lua
More file actions
408 lines (348 loc) · 11.3 KB
/
tabHotReload.lua
File metadata and controls
408 lines (348 loc) · 11.3 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
--author cs
--04nycs@gmail.com
--
--https://github.com/ThinEureka/tabMachine
--created on Oct 21, 2023
--
local tabHotReload = {}
tabHotReload.enableLog = false
local raw_pairs = function(x)
return next, x, nil
end
tabHotReload.baseExcludes = {
"_G",
"package",
"string",
"coroutine",
"os",
"io",
"debug",
"math",
"table",
"utf8",
"socket.*",
"crypt",
"lpeg",
"cjson",
"util.xvar",
"framework.*",
"tabMachine.*",
"luaconfig",
"CS.*",
"config.*",
"sproto.*",
"libs.sproto.*",
"LuaPanda",
"cscommon.*",
"config.static.*",
"languages.i18n.*",
"gameFlow.itemTree",
"gameFlow.timeMaster",
"gameFlow.debugMgr.debugModules.tabTreeDebugModule.tabTreeClient",
"gameFlow.propTree",
"gameFlow.contextTree",
}
function tabHotReload.hotReload(rootContext, extraExcludes, includes, isQuickMode)
tabHotReload.logs = {
-- reload_packages = {},
reload_tabs = {},
non_reload_tabs = {}
}
local packages = tabHotReload.getReloadPackages(extraExcludes, includes)
if tabHotReload.enableLog then
tabHotReload.logs.reload_packages = packages
end
local tabMap, rTabMap = tabHotReload.buildTabMap(packages)
local contextMap = tabHotReload.buildContextMap(rTabMap, rootContext)
local oldPackakges = tabHotReload.reloadPackage(packages)
tabMap, rTabMap = tabHotReload.buildTabMap(packages)
tabHotReload.reloadTabForContexts(contextMap, tabMap)
if isQuickMode then
--quick but dirty
tabHotReload.replaceFields(oldPackakges, packages)
else
--slower but more rigour
tabHotReload.replaceUpValues(oldPackakges, packages)
end
tabHotReload.hotReloadPatch(rootContext)
end
function tabHotReload.replaceUpValues(oldPackakges, packages)
local visited = {}
local unvisited = {}
local fs = {}
local index = 1
table.insert(unvisited, _G)
while index <= #unvisited do
local value = unvisited[index]
visited[value] = true
index = index + 1
for k, v in raw_pairs(value) do
if type(v) == "function" then
table.insert(fs, v)
elseif type(v) == "table" then
if visited[v] == nil then
table.insert(unvisited, v)
end
end
end
end
local oldPackToPath = {}
for path, oldPack in pairs(oldPackakges) do
for k, v in pairs(oldPack) do
oldPackToPath[v] = k
end
end
for _, f in ipairs(fs) do
local i = 1
while true do
local name, value = debug.getupvalue(f, i)
if not name then break end
if type(value) == "table" then
local path = oldPackToPath[value]
if path then
local newPack = packages[path]
if newPack ~= nil then
debug.setupvalue(f, i, newPack)
end
end
end
i = i + 1
end
end
end
function tabHotReload.replaceFields(oldPackakges, packages)
for path, oldPack in pairs(oldPackakges) do
for k, v in pairs(oldPack) do
oldPack[k] = nil
end
end
for path, pack in pairs(packages) do
local oldPack = oldPackakges[path]
local newPack = packages[path]
for k, v in pairs(newPack) do
oldPack[k] = v
end
end
end
function tabHotReload.isPackageInList(packPath, list)
for _, path in ipairs(list) do
local plain = path:find("*", 1, true) == nil
if plain then
if packPath == path then
return true
end
else
local index, endIndex = packPath:find(path, 1)
if index == 1 and endIndex == #packPath then
return true
end
end
end
end
function tabHotReload.getReloadPackages(extraExcludes, includes)
local baseExcludes = tabHotReload.baseExcludes
local packages = {}
for packPath, pack in pairs(package.loaded) do
if type(pack) == "table" then
local isIncluded = true
if includes ~= nil then
isIncluded = tabHotReload.isPackageInList(packPath, includes)
end
if isIncluded then
isIncluded = not tabHotReload.isPackageInList(packPath, baseExcludes)
end
if isIncluded and extraExcludes ~= nil then
isIncluded = not tabHotReload.isPackageInList(packPath, extraExcludes)
end
if isIncluded then
packages[packPath] = pack
end
end
end
return packages
end
function tabHotReload.buildTabMap(packages)
local tabMap = {}
local uniqueMap = {}
local addTable = nil
addTable = function(path, table)
if uniqueMap[table] == nil then
uniqueMap[table] = table
if rawget(table, "__hooked") then
tabMap[path] = table
end
for k, v in raw_pairs(table) do
local tk = type(k)
local tv = type(v)
if tv == "table" and (tk == "number" or tk == "string") and k ~= "super" and k~= "__index" then
local newPath = path .. ".@" .. k
addTable(newPath, v)
end
end
end
end
for packPath, pack in pairs(packages) do
addTable(packPath, pack)
end
local rTabMap = {}
for path, tab in pairs(tabMap) do
rTabMap[tab] = path
end
return tabMap, rTabMap
end
function tabHotReload.reloadPackage(packages)
local oldPackakges = {}
for path, _ in pairs(packages) do
oldPackakges[path] = package.loaded[path]
package.loaded[path] = nil
end
for path, _ in pairs(packages) do
pcall(function()
packages[path] = require(path)
end)
end
return oldPackakges
end
function tabHotReload.buildContextMap(rTabMap, rootContext)
local contextMap = {}
local function addContext(c)
local tab = c.__tab
if tab ~= nil then
local tabPath = rTabMap[tab]
if tabPath ~= nil then
contextMap[c] = tabPath
else
if tabHotReload.enableLog then
local log = {
context_path = c:getDetailedPath(),
reason = "dynamic tab can not be reloaded",
}
table.insert(tabHotReload.logs.non_reload_tabs, log)
end
end
else
if tabHotReload.enableLog then
local log = {
context_path = c:getDetailedPath(),
reason = "no tab",
}
table.insert(tabHotReload.logs.non_reload_tabs, log)
end
end
if c.__subContexts ~= nil then
for _, subContext in ipairs(c.__subContexts) do
addContext(subContext)
end
end
end
addContext(rootContext)
return contextMap
end
function tabHotReload.reloadTabForContexts(contextMap, tabMap)
for context, tabPath in pairs(contextMap) do
local newTab = tabMap[tabPath]
if newTab ~= nil then
tabHotReload.reloadTabForContext(context, newTab)
if tabHotReload.enableLog then
local log = {
context_path = context:getDetailedPath(),
tab_path = tabPath
}
table.insert(tabHotReload.logs.reload_tabs, log)
end
else
if tabHotReload.enableLog then
local log = {
context_path = context:getDetailedPath(),
tab_path = tabPath,
reason = "can not find tab path",
}
table.insert(tabHotReload.logs.non_reload_tabs, log)
end
end
end
end
function tabHotReload.reloadTabForContext(context, newTab)
local tm = g_tm
tm.compileTab(newTab)
local oldMetatable = getmetatable(context)
if oldMetatable == context.__tab then
setmetatable(context, newTab)
end
context.__tab = newTab
context.__finalFun = newTab.final
context.__event = newTab.event
context.__catchFun = newTab.catch
-- local oldUpdateFun = context.__updateFun
context.__updateFun = newTab.update
context.__updateInterval = newTab.updateInterval
context.__updateTimerMgr = newTab.updateTimerMgr
-- if oldUpdateFun ~= nil then
-- tabHotReload.reloadUpdateFun(context, oldUpdateFun, context.__updateFun)
-- end
local selfTab = newTab
if context.__subContexts ~= nil then
for _, subContext in ipairs(context.__subContexts) do
if subContext.__tab == nil then
local subUpdateFunEx
local subUpdateIntevalEx
local subUpdateTimerMgrEx
local eventEx
local subFinalFunEx
local subCatchFunEx
local commonLabels = tm.__commonLabelCache[subContext.__name]
if commonLabels then
subUpdateFunEx = selfTab[commonLabels.update]
local dynamics = context.__dynamics
if dynamics ~= nil then
local dynamicLabels = dynamics[scName]
if dynamicLabels ~= nil then
subUpdateIntevalEx = dynamicLabels.updateInterval
end
end
if subUpdateIntevalEx == nil then
subUpdateIntevalEx = selfTab[commonLabels.updateInterval]
end
subUpdateTimerMgrEx = selfTab[commonLabels.updateTimerMgr]
eventEx = selfTab[commonLabels.event]
subFinalFunEx = selfTab[commonLabels.final]
subCatchFunEx = selfTab[commonLabels.catch]
end
-- local oldUpdate = subContext.__updateFunEx
subContext.__updateFunEx = subUpdateFunEx
subContext.__updateIntervalEx = subUpdateIntevalEx
subContext.__updateTimerMgrEx = subUpdateTimerMgrEx
subContext.__eventEx = eventEx
subContext.__finalFunEx = subFinalFunEx
subContext.__catchFunEx = subCatchFunEx
-- if oldUpdate ~= nil then
-- tabHotReload.reloadUpdateFun(subContext, oldUpdate, newUpdate)
-- end
end
end
end
end
function tabHotReload.hotReloadPatch(rootContext)
local patchFun = rootContext.__hotReloadPatch
if patchFun ~= nil then
patchFun(rootContext)
end
local subContexts = rootContext.__subContexts
if subContexts == nil then
return
end
for _, subContext in ipairs(subContexts) do
tabHotReload.hotReloadPatch(subContext)
end
end
--reload updateFun
-- function tabHotReload.reloadUpdateFun(context, oldUpdate, newUpdate)
-- local timerMgr = g_timerMgr
--
-- for k, v in ipairs(timerMgr.timerList) do
-- if v.target == context and v.callBack == oldUpdate then
-- v.callBack = newUpdate
-- end
-- end
-- end
return tabHotReload