加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sys.lua 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
-- SPDX-License-Identifier: MIT
-- Author: Jianhui Zhao <zhaojh329@gmail.com>
local file = require 'eco.core.file'
local sys = require 'eco.core.sys'
local bufio = require 'eco.bufio'
local M = {}
local exec_methods = {}
function exec_methods:release()
if not self.stdout_fd then
return
end
file.close(self.stdout_fd)
file.close(self.stderr_fd)
self.stdout_fd = nil
self.stderr_fd = nil
end
function exec_methods:wait(timeout)
return self.child_w:wait(timeout or 30.0)
end
function exec_methods:pid()
return self.__pid
end
function exec_methods:read_stdout(pattern, timeout)
return self.stdout_b:read(pattern, timeout)
end
function exec_methods:read_stderr(pattern, timeout)
return self.stderr_b:read(pattern, timeout)
end
local exec_metatable = {
__index = exec_methods,
__gc = exec_methods.release
}
function M.exec(...)
local pid, stdout_fd, stderr_fd = sys.exec(...)
if not pid then
return nil, stdout_fd
end
return setmetatable({
__pid = pid,
stdout_fd = stdout_fd,
stderr_fd = stderr_fd,
child_w = eco.watcher(eco.CHILD, pid),
stdout_b = bufio.new(stdout_fd),
stderr_b = bufio.new(stderr_fd)
}, exec_metatable)
end
function M.signal(sig, cb, ...)
local w = eco.watcher(eco.SIGNAL, sig)
eco.run(function(...)
while true do
if not w:wait() then return end
cb(...)
end
end, ...)
return w
end
return setmetatable(M, { __index = sys })
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化