forked from izaya/OC-PsychOS2
buffer cleanup
This commit is contained in:
parent
7974ff9702
commit
05208810d3
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
buffer = {}
|
buffer = {}
|
||||||
|
|
||||||
function buffer.new(mode, stream)
|
function buffer.new(mode, stream) -- create a new buffer in mode *mode* backed by stream object *stream*
|
||||||
local result = {
|
local result = {
|
||||||
mode = {},
|
mode = {},
|
||||||
stream = stream,
|
stream = stream,
|
||||||
@ -23,7 +23,6 @@ function buffer.new(mode, stream)
|
|||||||
return setmetatable(result, metatable)
|
return setmetatable(result, metatable)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function badFileDescriptor()
|
local function badFileDescriptor()
|
||||||
return nil, "bad file descriptor"
|
return nil, "bad file descriptor"
|
||||||
end
|
end
|
||||||
@ -44,7 +43,7 @@ function buffer:flush()
|
|||||||
if reason then
|
if reason then
|
||||||
return nil, reason
|
return nil, reason
|
||||||
else
|
else
|
||||||
return nil, "bad file descriptor"
|
return badFileDescriptor()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -105,7 +104,6 @@ function buffer:read(...)
|
|||||||
self.bufferRead = sub(self.bufferRead, left + 1)
|
self.bufferRead = sub(self.bufferRead, left + 1)
|
||||||
until len(buffer) == n
|
until len(buffer) == n
|
||||||
|
|
||||||
--kernel.io.println("buffer read: "..tostring(buffer))
|
|
||||||
return buffer
|
return buffer
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -360,7 +358,7 @@ end
|
|||||||
|
|
||||||
function buffer:write(...)
|
function buffer:write(...)
|
||||||
if self.closed then
|
if self.closed then
|
||||||
return nil, "bad file descriptor"
|
return badFileDescriptor()
|
||||||
end
|
end
|
||||||
local args = table.pack(...)
|
local args = table.pack(...)
|
||||||
for i = 1, args.n do
|
for i = 1, args.n do
|
||||||
|
@ -12,7 +12,7 @@ function os.spawnfile(p,n,...) -- spawns a new process from file *p* with name *
|
|||||||
return os.spawn(function() local res={pcall(loadfile(p), table.unpack(tA))} computer.pushSignal("process_finished", os.pid(), table.unpack(res)) dprint(table.concat(res)) end,n or p)
|
return os.spawn(function() local res={pcall(loadfile(p), table.unpack(tA))} computer.pushSignal("process_finished", os.pid(), table.unpack(res)) dprint(table.concat(res)) end,n or p)
|
||||||
end
|
end
|
||||||
_G.package = {}
|
_G.package = {}
|
||||||
package.loaded = {computer=computer,component=component,fs=fs}
|
package.loaded = {computer=computer,component=component,fs=fs,buffer=buffer}
|
||||||
function require(f) -- searches for a library with name *f* and returns what the library returns, if possible
|
function require(f) -- searches for a library with name *f* and returns what the library returns, if possible
|
||||||
if not package.loaded[f] then
|
if not package.loaded[f] then
|
||||||
local lib = os.getenv("LIB") or "/boot/lib"
|
local lib = os.getenv("LIB") or "/boot/lib"
|
||||||
|
Loading…
Reference in New Issue
Block a user