-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTranscriptor.lua
More file actions
730 lines (664 loc) · 20.2 KB
/
Copy pathTranscriptor.lua
File metadata and controls
730 lines (664 loc) · 20.2 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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
local _, ns = ...
-------------------------------------------------------------------------------
-- Module Declaration
--
local plugin = BigWigs:NewPlugin("Transcriptor")
if not plugin then return end
-------------------------------------------------------------------------------
-- Locals
--
local ipairs, next, print, split, trim = ipairs, next, print, string.split, string.trim
local sort, concat, tinsert, tremove, wipe = table.sort, table.concat, table.insert, table.remove, table.wipe
local tonumber, ceil, floor = tonumber, math.ceil, math.floor
local logging = nil
local timer = nil
local temp = {}
local function quartiles(t)
wipe(temp)
for i = 1, #t do
local v = tonumber(t[i])
if v then
temp[#temp+1] = v
elseif t[i]:find("/", nil, true) then
v = tonumber(trim(t[i]):match("^%d+.*/(.-)$")) -- just use the last value
if v then
temp[#temp+1] = v
end
end
end
sort(temp)
local count = #temp
-- stupid small data sets
if count == 0 then
return 0, 0, 0, 0, 0
elseif count == 1 then
local a = temp[1]
return a, a, a, a, 1
elseif count == 2 then
local a, b = temp[1], temp[2]
return a, b, a, b, 2
end
local q1, q3
if count % 2 == 0 then -- should i average or just use the inner indexes?
q1 = (temp[ceil(count / 4)] + temp[ceil(count / 4) + 1]) / 2
q3 = (temp[floor(count * .75)] + temp[floor(count * .75) + 1]) / 2
else
q1 = temp[ceil(count / 4)]
q3 = temp[ceil(count * .75)]
end
return q1, q3, temp[1], temp[count], count
end
local diffShort = {
[1] = "5N",
[2] = "5H",
[3] = "10N",
[4] = "25N",
[5] = "10H",
[6] = "25H",
[7] = "25LFR",
[8] = "5M+",
[14] = "N",
[15] = "H",
[16] = "M",
[17] = "LFR",
[18] = "40E",
[19] = "5E",
[23] = "5M",
[24] = "5TW",
[198] = "10N",
[215] = "20N",
}
local function parseLogInfo(logName, log)
-- logNameFormat = "[2026-02-23]@[22:08:08] - Zone#2915 (Nexus-Point Xenas)#Difficulty#8 (Mythic+)#Type#party#WoWVer#12.0.1.66017#TSVer#v12.0.5"
local year, month, day, hour, min, sec, map, diff, version = logName:match("^%[(%d+)-(%d+)-(%d+)%]@%[(%d+):(%d+):(%d+)%] %- Zone#(%d+).+#Difficulty#(%d+).+#Type#.+#WoWVer#(.+)#TSVer#(.+)$")
if not version then
-- try previous format
-- logNameFormat = "[%s]@[%s] - Zone:%d Difficulty:%d,%s Type:%s " .. format("Version: %s.%s", wowVersion, buildRevision)
-- "[2018-09-04]@[18:11:58] - Zone:1763 Difficulty:8,5Challenge Type:party Version: 8.0.1.27547"
year, month, day, hour, min, sec, map, diff, _, _, version = logName:match("^%[(%d+)-(%d+)-(%d+)%]@%[(%d+):(%d+):(%d+)%] %- Zone:(%d+) Difficulty:(%d+),(.+) Type:(.+) Version: (.+)$")
end
if not version then return end
local killed, encounter, duration = false, nil, 0
if log.COMBAT then
-- should probably handle multiple encounters in one log, but meh
for _, line in next, log.COMBAT do
if line:find("ENCOUNTER_START", nil, true) then
-- "<1.94 23:38:46> [ENCOUNTER_START] 2051#Kil'jaeden#15#24"
encounter = line:match("%d+#(.-)#%d+#%d+")
elseif line:find("ENCOUNTER_END", nil, true) then
-- "<524.88 23:47:29> [ENCOUNTER_END] 2051#Kil'jaeden#15#24#1"
local e, k = line:match("%d+#(.-)#%d+#%d+#(%d)")
encounter = e
killed = tonumber(k) == 1
break
elseif line:find("BOSS_KILL", nil, true) then
-- "<524.88 23:47:29> [BOSS_KILL] 2051#Kil'jaeden"
encounter = line:match("#(.-)$")
killed = true
break
end
end
end
if log.total and #log.total > 0 then
duration = tonumber(log.total[#log.total]:match("^<(.-)%s")) or 0
end
local diffName = diffShort[tonumber(diff)] or GetDifficultyInfo(diff) or diff
local zone = GetRealZoneText(map)
if not zone or zone == "" then zone = tostring(map) end
local info = ("%s - |cffffffff%s|r (%s)"):format(zone, encounter or UNKNOWN, diffName)
local timestamp = time({day=day,month=month,year=year,hour=hour,min=min,sec=sec})
-- I should probably cache this stuff
return info, timestamp, zone, encounter, killed, duration
end
-------------------------------------------------------------------------------
-- Locale
--
local L = setmetatable({}, { __newindex = function(t, k, v) rawset(t, k, v == true and k or v) end })
ns.L = L
L["Transcriptor"] = true
L["Automatically start Transcriptor logging when you pull a boss and stop when you win or wipe."] = true
L["Your Transcriptor DB has been reset! You can still view the contents of the DB in your SavedVariables folder until you exit the game or reload your UI."] = true
L["Transcriptor is currently using %.01f MB of memory. You should clear some logs or risk losing them."] = true
L["Log deleted."] = true
L["Raid only"] = true
L["Only enable logging while in a raid instance."] = true
L["Start with pull timer"] = true
L["Start Transcriptor logging from a pull timer at two seconds remaining."] = true
L["Show spell cast details"] = true
L["Include some spell stats and the time between casts in the log tooltip when available."] = true
L["Delete short logs"] = true
L["Automatically delete logs shorter than 30 seconds."] = true
L["Keep one log per fight"] = true
L["Only keep a log for the longest attempt or latest kill of an encounter."] = true
L["Stored logs (%s / %s) - Click to delete"] = true
L["No logs recorded"] = true
L["%d stored events over %.01f seconds. %s"] = true
L["Ignored Events"] = true
L["Clear All"] = true
L["In Raids"] = true
L["In Dungeons"] = true
L["Specific Instances"] = true
L.win = " |cff20ff20" .. _G.WIN .. "|r"
L.failed = " |cffff2020" .. _G.FAILED .. "|r"
-------------------------------------------------------------------------------
-- Options
--
plugin.defaultDB = {
enable = "none",
instances = {},
onpull = false,
details = false,
delete = false,
keepone = false,
}
local GetOptions
do
local sorted = {}
local timerEvents = {"SPELL_CAST_START", "SPELL_CAST_SUCCESS", "SPELL_AURA_APPLIED"}
local function GetDescription(info)
local log = Transcriptor:Get(info.arg)
if not log then return end
local numEvents = log.total and #log.total or 0
if numEvents == 0 then return end
local duration = tonumber(log.total[numEvents]:match("^<(.-)%s")) or 0
local desc = L["%d stored events over %.01f seconds. %s"]:format(numEvents, duration, "")
if not log.TIMERS or not plugin.db.profile.details then
return desc
end
desc = ("%s\n"):format(desc)
for _, event in ipairs(timerEvents) do
if log.TIMERS[event] then
desc = ("%s\n%s\n"):format(desc, event)
for k, v in next, log.TIMERS[event] do sorted[k] = v end
sort(sorted, function(a, b) return a:match("^(.+)-%d+") < b:match("^(.+)-%d+") end) -- sort by spell name
for _, spell in ipairs(sorted) do
local text, times = split("=", spell, 2)
local spellName, spellId, npc = text:match("^(.+)-(%d+)-(npc:%d+)")
if npc == "npc:1" then
npc = ""
else
npc = " "..npc
end
local values = {split(",", (times:gsub("%b[]","")))}
local _, pull = split(":", tremove(values, 1))
local sincePull, sincePreviousEvent = pull:match("^(.+)/(.+/.+)")
-- use the lower and upper quartiles to find outliers
local q1, q3, low, high, count = quartiles(values)
if count == 0 then
desc = ("%s|cfffed000%s (%d)%s|r | Count: |cff20ff20%d|r | From pull: |cff20ff20%s|r\n"):format(desc, spellName, spellId, npc, count + 1, sincePull or pull)
if sincePull then
desc = ("%s |cffffff9a(%s)|r\n"):format(desc, sincePreviousEvent:gsub("/", "+", 1))
end
elseif low == high then
desc = ("%s|cfffed000%s (%d)%s|r | Count: |cff20ff20%d|r | From pull: |cff20ff20%s|r | CD: |cff20ff20%.01f|r\n"):format(desc, spellName, spellId, npc, count + 1, sincePull or pull, low)
else
if sincePull then
pull = tonumber(sincePull)
tinsert(values, 1, sincePreviousEvent)
end
local iqr = q3 - q1
local lower = q1 - (1.5 * iqr)
local upper = q3 + (1.5 * iqr)
count = 0
local total = 0
local list = {}
for i = 1, #values do
local v = tonumber(values[i])
if not v then -- handle special events
local stageValues = { split("/", values[i]) }
if #stageValues > 1 then
local fromStage, fromLast = trim(stageValues[1]), trim(stageValues[#stageValues])
if not tonumber(fromStage) then -- special event name
if fromStage == "TooManyStages" then -- actually a set of ending values
v = tonumber(fromLast)
elseif #stageValues == 2 then -- special event values (sanity check)
list[#list + 1] = ("|cffffff9a(%s+%s)|r"):format(fromStage, fromLast)
end
else -- ending values, just use the time since last value
v = tonumber(fromLast)
end
end
end
if v then
if lower <= v and v <= upper then
count = count + 1
total = total + v
else
v = ("|cffff7f3f%s|r"):format(v) -- outlier
end
local num = #list + 1
list[num] = num % 24 == 0 and ("\n %s"):format(v) or v -- simple wrapping
end
end
local avg = total / count
desc = ("%s|cfffed000%s (%d)%s|r | Count: |cff20ff20%d|r | Avg: |cff20ff20%.01f|r | Min: |cff20ff20%.01f|r | Max: |cff20ff20%.01f|r | From pull: |cff20ff20%.01f|r\n %s\n"):format(desc, spellName, spellId, npc, count + 1, avg, low, high, pull, concat(list, ", "))
end
end
wipe(sorted)
end
end
return desc
end
local function get(info)
return plugin.db.profile[info[#info]]
end
local function set(info, value)
plugin.db.profile[info[#info]] = value
end
local function set_reboot(info, value)
plugin.db.profile[info[#info]] = value
plugin:Disable()
plugin:Enable()
end
local function delete(info)
if info.arg then
Transcriptor:Clear(info.arg)
else
Transcriptor:ClearAll()
end
GameTooltip:Hide()
--collectgarbage()
end
local function disabled()
return InCombatLockdown()
end
function GetOptions()
local logs = Transcriptor:GetAll()
local count = 0
for _ in next, logs do
count = count + 1
end
UpdateAddOnMemoryUsage()
local mem = GetAddOnMemoryUsage("Transcriptor") / 1000
mem = ("|cff%s%.01f MB|r"):format(mem > 60 and "ff2020" or "ffd200", mem)
local options = {
name = L["Transcriptor"],
type = "group",
args = {
heading = {
type = "description",
name = L["Automatically start Transcriptor logging when you pull a boss and stop when you win or wipe."].."\n",
fontSize = "medium",
width = "full",
order = 1,
},
enable = {
type = "select",
name = ENABLE,
get = get,
set = set_reboot,
values = {
none = _G.NEVER,
all = _G.ALWAYS,
raid = L["In Raids"],
party = L["In Dungeons"],
instance = L["Specific Instances"],
},
sorting = { "none", "all", "raid", "party", "instance" },
order = 2,
},
instances = {
type = "multiselect",
name = L["Specific Instances"],
get = function(_, key)
if plugin.db.profile.enable == "instance" then
return plugin.db.profile.instances[key]
end
end,
set = function(_, key, value)
plugin.db.profile.instances[key] = value or nil
end,
values = function()
local values = {}
if not Transcriptor.INSTANCES then
return values
end
for id in next, Transcriptor.INSTANCES do
local zone = GetRealZoneText(id)
if zone and zone ~= "" then
values[id] = zone -- or id
end
end
return values
end,
disabled = function()
return plugin.db.profile.enable ~= "instance"
end,
control = "Dropdown",
order = 3,
},
onpull = {
type = "toggle",
name = L["Start with pull timer"],
desc = L["Start Transcriptor logging from a pull timer at two seconds remaining."],
get = get,
set = set_reboot,
order = 4,
},
delete = {
type = "toggle",
name = L["Delete short logs"],
desc = L["Automatically delete logs shorter than 30 seconds."],
get = get,
set = set,
order = 5,
},
keepone = {
type = "toggle",
name = L["Keep one log per fight"],
desc = L["Only keep a log for the longest attempt or latest kill of an encounter."],
get = get,
set = set,
order = 6,
},
details = {
type = "toggle",
name = L["Show spell cast details"],
desc = L["Include some spell stats and the time between casts in the log tooltip when available."],
get = get,
set = set,
order = 7,
},
clear = {
type = "execute",
name = L["Clear All"],
func = delete,
width = "full",
disabled = disabled,
hidden = function() return not next(logs) end,
order = 8,
},
size = {
type = "description",
name = L["Stored logs (%s / %s) - Click to delete"]:format(count, mem),
fontSize = "medium",
width = "full",
hidden = function() return not next(logs) end,
order = 9,
},
-- part of the zone tree
ignoredEvents = {
type = "group",
name = "|cffffffff"..L["Ignored Events"].."|r",
get = function(info)
local key = info[#info]
return TranscriptIgnore[key]
end,
set = function(info, value)
local key = info[#info]
TranscriptIgnore[key] = value or nil
end,
order = -1,
args = {
reset = {
type = "execute",
name = RESET,
func = function()
TranscriptIgnore = {}
end,
width = "full",
order = 0,
},
},
},
},
}
local ignoredEvents = options.args.ignoredEvents.args
for _, event in next, Transcriptor.events do
local cat = Transcriptor.EventCategories[event] or "GENERAL"
if cat == "NONE" then cat = "GENERAL" end
if not ignoredEvents[cat] then
ignoredEvents[cat] = {
type = "group", inline = true,
name = cat,
args = {},
}
end
ignoredEvents[cat].args[event] = {
type = "toggle",
name = event,
width = "full",
}
end
for key, log in next, logs do
local info, ts, zone, encounter, killed = parseLogInfo(key, log)
local name
if info then
local result = killed and L.win or encounter and L.failed or ""
name = ("[%s] %s%s"):format(date("%F %T", ts), info:gsub("^.- %- ", ""), result)
else
name = key
zone = UNKNOWN
end
if not options.args[zone] then
options.args[zone] = {
type = "group",
name = zone,
order = 10,
args = {},
}
end
options.args[zone].args[key] = {
type = "execute",
name = name,
desc = GetDescription,
func = delete,
arg = key,
disabled = disabled,
width = "full",
order = ts,
}
end
return options
end
end
plugin.subPanelOptions = {
key = "BigWigs: Transcriptor",
name = L["Transcriptor"],
options = GetOptions,
}
-------------------------------------------------------------------------------
-- Initialization
--
local function Refresh()
local ACR = LibStub("AceConfigRegistry-3.0", true)
if ACR then -- make sure it's loaded (provided by BigWigs_Options)
ACR:NotifyChange("BigWigs")
end
end
function plugin:BigWigs_ProfileUpdate(reboot)
local db = self.db.profile
-- upgrade
if db.enabled ~= nil then
if db.enabled then
db.enable = db.raid and "raid" or "all"
end
end
-- cleanup
db.enabled = nil
db.raid = nil
if db.game_version ~= WOW_PROJECT_ID then
wipe(db.instances)
end
db.game_version = WOW_PROJECT_ID
-- reboot if not OnRegister
if reboot then
self:Disable()
self:Enable()
Refresh()
end
end
function plugin:OnRegister()
self:BigWigs_ProfileUpdate()
end
function plugin:OnPluginEnable()
-- try to fix memory overflow error
if Transcriptor and TranscriptDB == nil then
print("\n|cffff2020" .. L["Your Transcriptor DB has been reset! You can still view the contents of the DB in your SavedVariables folder until you exit the game or reload your UI."])
TranscriptDB = {}
end
self:RegisterMessage("BigWigs_ProfileUpdate")
if self.db.profile.enable ~= "none" then
if self.db.profile.onpull then
self:RegisterMessage("BigWigs_StartPull")
self:RegisterMessage("BigWigs_StopPull")
end
self:RegisterEvent("ENCOUNTER_START")
self:RegisterEvent("ENCOUNTER_END")
-- catch fights that have a module but don't use ENCOUNTER events
self:RegisterMessage("BigWigs_OnBossEngage")
self:RegisterMessage("BigWigs_OnBossWin")
self:RegisterMessage("BigWigs_OnBossWipe")
end
self:RegisterEvent("PLAYER_REGEN_DISABLED", Refresh)
self:RegisterEvent("PLAYER_REGEN_ENABLED", Refresh)
end
function plugin:OnPluginDisable()
if logging then
self:Stop()
end
timer = nil
end
BigWigsAPI.RegisterSlashCommand("/bwts", function()
LibStub("AceConfigDialog-3.0"):Open("BigWigs", "BigWigs: Transcriptor")
end)
-------------------------------------------------------------------------------
-- Event Handlers
--
do
local function Start() plugin:Start() end
function plugin:BigWigs_StartPull(_, _, seconds)
if seconds > 2 then
if timer then
self:CancelTimer(timer)
end
timer = self:ScheduleTimer(Start, seconds-2)
else
self:Start()
end
end
end
function plugin:BigWigs_StopPull()
if timer then
self:CancelTimer(timer)
timer = nil
end
end
function plugin:BigWigs_OnBossEngage(_, module)
if not module:GetEncounterID() then
self:Start()
end
end
do
local function Stop() plugin:Stop() end
function plugin:BigWigs_OnBossWipe(_, module)
if not module:GetEncounterID() then
self:ScheduleTimer(Stop, 5) -- catch the end events
end
end
function plugin:BigWigs_OnBossWin(_, module)
if not module:GetEncounterID() then
self:ScheduleTimer(Stop, 12) -- catch the end events
end
end
function plugin:ENCOUNTER_END(_, _, _, _, _, status)
self:ScheduleTimer(Stop, status == 0 and 5 or 12) -- catch the end events
end
end
function plugin:ENCOUNTER_START()
self:Start()
end
function plugin:Start()
local enable = self.db.profile.enable
if enable == "none" then
return
elseif enable ~= "all" then
local _, instanceType, diff, _, _, _, _, instanceId = GetInstanceInfo()
if diff == 198 or diff == 215 then -- 10/20 player SoD instances (marked as party dungeon/normal)
instanceType = "raid"
end
if enable == "instance" then
if not self.db.profile.instances[instanceId] then
return
end
elseif enable ~= instanceType then
return
end
end
if timer then
self:CancelTimer(timer)
timer = nil
end
-- stop your non-bwts log and start a new one
if Transcriptor:IsLogging() and not logging then
self:Stop(true)
end
if not Transcriptor:IsLogging() then
Transcriptor:StartLog()
logging = true
end
end
local function PrintMemory()
if not Transcriptor:IsLogging() then -- Make sure we didn't start logging during the delay
UpdateAddOnMemoryUsage()
local mem = GetAddOnMemoryUsage("Transcriptor") / 1000
if mem > 60 then
print("\n|cffff2020" .. L["Transcriptor is currently using %.01f MB of memory. You should clear some logs or risk losing them."]:format(mem))
end
end
end
function plugin:Stop(silent)
logging = nil
if not Transcriptor:IsLogging() then return end
local logName = Transcriptor:StopLog()
if self.db.profile.delete and logName then
local log = Transcriptor:Get(logName)
if #log.total == 0 or tonumber(log.total[#log.total]:match("^<(.-)%s")) < 30 then
Transcriptor:Clear(logName)
print("|cffff2020" .. L["Log deleted."])
logName = nil
end
end
if self.db.profile.keepone and logName then
local log = Transcriptor:Get(logName)
local encounter, _, _, _, isWin = parseLogInfo(logName, log)
if isWin then
-- delete previous logs
for name, storedLog in next, Transcriptor:GetAll() do
local e = parseLogInfo(name, storedLog)
if name ~= logName and e == encounter then
Transcriptor:Clear(name)
end
end
else
-- keep the longest attempt or last kill
local encounterLogs = {}
local lastWin, lastWinTime = nil, nil
local longLog, longLogTime = nil, nil
for name, storedLog in next, Transcriptor:GetAll() do
local e, t, _, _, k, d = parseLogInfo(name, storedLog)
if e == encounter then
encounterLogs[name] = true
if k and (not lastWin or t > lastWinTime) then
lastWin = name
lastWinTime = t
end
if not longLog or d > longLogTime then
longLog = name
longLogTime = d
end
end
end
local winner = lastWin or longLog
for name in next, encounterLogs do
if name ~= winner then
Transcriptor:Clear(name)
end
end
end
end
if not silent then
-- check memory
C_Timer.After(30, PrintMemory) -- Delay to allow time for garbage to collect
end
end