1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2025-04-05 04:08:39 +11:00

Release time! (I hope!)

This commit is contained in:
20kdc 2018-03-29 21:06:53 +01:00
parent 8fe18f9609
commit 332cdd2fc6
2 changed files with 37 additions and 61 deletions

View File

@ -412,7 +412,7 @@ while true do
targsSD[s[3]] = nil targsSD[s[3]] = nil
if targsST[s[3]] then if targsST[s[3]] then
if s[4] then if s[4] then
pcall(targsST[s[3]]) coroutine.resume(coroutine.create(targsST[s[3]]))
end end
end end
targsST[s[3]] = nil targsST[s[3]] = nil

View File

@ -4,16 +4,14 @@
-- NOTE: local is considered unnecessary in kernel since 21 March -- NOTE: local is considered unnecessary in kernel since 21 March
-- Debugging option, turns process errors into actual errors (!)
local criticalFailure = false
-- In case of OpenComputers configuration abnormality -- In case of OpenComputers configuration abnormality
local readBufSize = 2048 readBufSize = 2048
-- A function used for logging, usable by programs. -- A function used for logging, usable by programs.
local emergencyFunction = function () end emergencyFunction = function () end
-- Comment this out if you don't want programs to have -- Comment this out if you don't want programs to have
-- access to ocemu's logger. -- access to ocemu's logger.
local ocemu = component.list("ocemu", true)() ocemu = component.list("ocemu", true)()
if ocemu then if ocemu then
ocemu = component.proxy(ocemu) ocemu = component.proxy(ocemu)
emergencyFunction = ocemu.log emergencyFunction = ocemu.log
@ -37,10 +35,10 @@ setmetatable(libraries, {__mode = "v"})
processes = {} processes = {}
-- Maps registration-accesses to function(pkg, pid) -- Maps registration-accesses to function(pkg, pid)
accesses = {} accesses = {}
local lastPID = 0 lastPID = 0
-- Kernel global "idle time" counter, useful for accurate performance data -- Kernel global "idle time" counter, useful for accurate performance data
local idleTime = 0 idleTime = 0
-- This function is critical to wide text support. -- This function is critical to wide text support.
function unicode.safeTextFormat(s, ptr) function unicode.safeTextFormat(s, ptr)
@ -86,7 +84,7 @@ function unicode.undoSafeTextFormat(s)
return res return res
end end
local function loadfile(s, e) function loadfile(s, e)
local h, er = primaryDisk.open(s) local h, er = primaryDisk.open(s)
if h then if h then
local ch = "" local ch = ""
@ -101,8 +99,8 @@ local function loadfile(s, e)
return nil, tostring(er) return nil, tostring(er)
end end
local wrapMeta = nil uniqueNEOProtectionObject = {}
local uniqueNEOProtectionObject = {}
function wrapMeta(t) function wrapMeta(t)
if type(t) == "table" then if type(t) == "table" then
local t2 = {} local t2 = {}
@ -132,20 +130,20 @@ function wrapMeta(t)
end end
end end
local function ensureType(a, t) function ensureType(a, t)
if type(a) ~= t then error("Invalid parameter, expected a " .. t) end if type(a) ~= t then error("Invalid parameter, expected a " .. t) end
if t == "table" then if t == "table" then
if getmetatable(a) then error("Invalid parameter, has metatable") end if getmetatable(a) then error("Invalid parameter, has metatable") end
end end
end end
local function ensurePathComponent(s) function ensurePathComponent(s)
if not s:match("^[a-zA-Z0-9_%-%+%,%#%~%@%'%;%[%]%(%)%&%%%$%! %=%{%}%^]+") then error("chars disallowed") end if not s:match("^[a-zA-Z0-9_%-%+%,%#%~%@%'%;%[%]%(%)%&%%%$%! %=%{%}%^]+") then error("chars disallowed") end
if s == "." then error("single dot disallowed") end if s == "." then error("single dot disallowed") end
if s == ".." then error("double dot disallowed") end if s == ".." then error("double dot disallowed") end
end end
local function ensurePath(s, r) function ensurePath(s, r)
-- Filter filename for anything "worrying". Note / is allowed, see further filters -- Filter filename for anything "worrying". Note / is allowed, see further filters
if not s:match("^[a-zA-Z0-9_%-%+%,%#%~%@%'%;%[%]%(%)%&%%%$%! %=%{%}%^%/]+") then error("chars disallowed") end if not s:match("^[a-zA-Z0-9_%-%+%,%#%~%@%'%;%[%]%(%)%&%%%$%! %=%{%}%^%/]+") then error("chars disallowed") end
if s:sub(1, r:len()) ~= r then error("base disallowed") end if s:sub(1, r:len()) ~= r then error("base disallowed") end
@ -158,23 +156,21 @@ local function ensurePath(s, r)
if s:match("/%.$") then error("/. disallowed") end if s:match("/%.$") then error("/. disallowed") end
end end
local wrapMath = wrapMeta(math) wrapMath = wrapMeta(math)
local wrapTable = wrapMeta(table) wrapTable = wrapMeta(table)
local wrapString = wrapMeta(string) wrapString = wrapMeta(string)
local wrapUnicode = wrapMeta(unicode) wrapUnicode = wrapMeta(unicode)
local wrapCoroutine = wrapMeta(coroutine) wrapCoroutine = wrapMeta(coroutine)
local wrapOs = wrapMeta({ wrapOs = wrapMeta({
totalMemory = computer.totalMemory, freeMemory = computer.freeMemory, totalMemory = computer.totalMemory, freeMemory = computer.freeMemory,
energy = computer.energy, maxEnergy = computer.maxEnergy, energy = computer.energy, maxEnergy = computer.maxEnergy,
clock = os.clock, date = os.date, difftime = os.difftime, clock = os.clock, date = os.date, difftime = os.difftime,
time = os.time, uptime = computer.uptime time = os.time, uptime = computer.uptime
}) })
local distEvent = nil
-- Use with extreme care. -- Use with extreme care.
-- (A process killing itself will actually survive until the next yield... before any of the death events have run.) -- (A process killing itself will actually survive until the next yield... before any of the death events have run.)
local function termProc(pid, reason) function termProc(pid, reason)
if processes[pid] then if processes[pid] then
-- Immediately prepare for GC, it's possible this is out of memory. -- Immediately prepare for GC, it's possible this is out of memory.
-- If out of memory, then to reduce risk of memory leak by error, memory needs to be freed ASAP. -- If out of memory, then to reduce risk of memory leak by error, memory needs to be freed ASAP.
@ -189,9 +185,6 @@ local function termProc(pid, reason)
end end
-- This finishes off that. -- This finishes off that.
dcbs = nil dcbs = nil
if reason and criticalFailure then
error(tostring(reason)) -- This is a debugging aid to give development work an easy-to-get-at outlet. Icecap is for most cases
end
if reason then if reason then
emergencyFunction("d1 " .. pkg .. "/" .. pid) emergencyFunction("d1 " .. pkg .. "/" .. pid)
emergencyFunction("d2 " .. reason) emergencyFunction("d2 " .. reason)
@ -202,7 +195,7 @@ local function termProc(pid, reason)
end end
end end
local function execEvent(k, ...) function execEvent(k, ...)
if processes[k] then if processes[k] then
local v = processes[k] local v = processes[k]
local timerA = computer.uptime() local timerA = computer.uptime()
@ -237,7 +230,18 @@ function distEvent(pid, s, ...)
end end
end end
local loadLibraryInner = nil function lister(pfx)
return function ()
local n = primaryDisk.list(pfx)
local n2 = {}
for k, v in ipairs(n) do
if v:sub(#v - 3) == ".lua" then
table.insert(n2, v:sub(1, #v - 4))
end
end
return n2
end
end
function baseProcEnv() function baseProcEnv()
return {math = wrapMath, return {math = wrapMath,
@ -275,26 +279,8 @@ function baseProcEnv()
end end
return n return n
end, end,
listApps = function () listApps = lister("apps/"),
local n = primaryDisk.list("apps/") listLibs = lister("libs/"),
local n2 = {}
for k, v in ipairs(n) do
if v:sub(#v - 3) == ".lua" then
table.insert(n2, v:sub(1, #v - 4))
end
end
return n2
end,
listLibs = function ()
local n = primaryDisk.list("libs/")
local n2 = {}
for k, v in ipairs(n) do
if v:sub(#v - 3) == ".lua" then
table.insert(n2, v:sub(1, #v - 4))
end
end
return n2
end,
totalIdleTime = function () return idleTime end, totalIdleTime = function () return idleTime end,
ensurePath = ensurePath, ensurePath = ensurePath,
ensurePathComponent = ensurePathComponent, ensurePathComponent = ensurePathComponent,
@ -447,8 +433,6 @@ function retrieveAccess(perm, pkg, pid)
end end
end end
local start = nil
function start(pkg, ...) function start(pkg, ...)
local proc = {} local proc = {}
local pid = lastPID local pid = lastPID
@ -567,12 +551,8 @@ function start(pkg, ...)
pcall(distEvent, nil, "k.procnew", pkg, pid) pcall(distEvent, nil, "k.procnew", pkg, pid)
processes[pid] = proc processes[pid] = proc
-- For processes waiting on others, this at least tries to guarantee some safety. -- For processes waiting on others, this at least tries to guarantee some safety.
if criticalFailure then if not pcall(execEvent, pid, ...) then
execEvent(pid, ...) return nil, "neocore"
else
if not pcall(execEvent, pid, ...) then
return nil, "neocore"
end
end end
return pid return pid
end end
@ -614,11 +594,7 @@ while true do
if not didAnything then break end if not didAnything then break end
end end
now = computer.uptime() -- the above probably took a while now = computer.uptime() -- the above probably took a while
local dist = nil local dist = tmr and math.max(0.05, tmr - now)
if tmr then
dist = tmr - now
if dist < 0.05 then dist = 0.05 end
end
local signal = {computer.pullSignal(dist)} local signal = {computer.pullSignal(dist)}
idleTime = idleTime + (computer.uptime() - now) idleTime = idleTime + (computer.uptime() - now)
if signal[1] then if signal[1] then