代码拉取完成,页面将自动刷新
同步操作将从 赵建辉/lua-eco 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
yieldk
-- 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 })
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。