- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
下面的代码允许运行一个超时的子进程
p = subprocess.Popen([...])
while timeConsumedSoFar < timeoutLimit
if proc.poll() is not None:
doSomething
else:
time.sleep(2)
os.kill([...])
它适用于常规的 linux 命令。但是有些命令很耗时,比如'shred'
'shred [OPTIONS] FILE [...] '
粉碎逻辑卷可能需要 20 多分钟。有没有更好的方法来处理这个问题?
最佳答案
看起来 subprocess 处理等待中断,所以我不能使用它。
这是一个(可能有错误的)示例,它是更传统的 unix 方法。注意 这不会产生任何来自 stdout 的输出!事实上,它根本不产生任何输出。
由于所有评论,它看起来比实际情况更重要。
为什么您可能会认为这更好,因为我们不会持续对流程进行轮询。相反,如果命令完成,我们会告诉内核在指定超时或后返回给我们。在任何一种情况下,响应都不会在事件发生后延迟超过几微秒,而且代码只需要设置第一个初始轮询。
#!/usr/bin/python
def runwait(timeout, *args):
from os import fork, execvp, waitpid, kill, dup2
from signal import alarm, signal, SIGTERM, SIGALRM, SIG_DFL
from errno import EINTR
## We dont do much in the alarm handler, we only care that we interrupted
## the wait() on the process.
def onalarm(sig, frame):
pass
## This is used for redirecting stdin/out/err to /dev/null
devnull = open('/dev/null', 'r+')
pid = fork()
if not pid:
## The child process. Begin by redirecting all input and output.
dup2(devnull.fileno(), 0)
dup2(devnull.fileno(), 1)
dup2(devnull.fileno(), 2)
## Probably not a great idea to pass this file descriptor to whatever we
## end up executing.
devnull.close()
## Overwrite child process with new execution context.
execvp(args[0], args)
## If something failed (like command not found) exit 63. WARNING, because we
## redirected all output to /dev/null, you WILL NOT be informed the command was
## not found directly. Use the exit code to work that out.
sys.exit(63)
## This is the parent process that initiated the fork.
## Arm a timer using timeout given by first parameter of function. This
## must be an int, not a float. I dont bother checking though cause I'm lazy.
signal(SIGALRM, onalarm)
alarm(timeout)
## We wait on the pid, this call typically blocks forever.
try:
pid, rc = waitpid(pid, 0)
except OSError as e:
## We will land here if the alarm triggered BEFORE the process completed!
## In this case, if we were interrupted to deal with the
## signal handler its definitely an alarm. Otherwise
## a peripheral exception occurred (permissions for example) so just re-raise the exception.
if e.errno == EINTR:
## We send a TERM signal to terminate the process and re-wait. This causes
## wait to (under normal conditions) come back immediately with the signal
## we just killed it with which parse out further down.
kill(pid, SIGTERM)
pid, rc = waitpid(pid, 0)
else:
raise
## Waits status is a 16bit integer packing a 8bit signal and 8bit return code.
## Do some funky bitwise operations to separate the two..
sig = rc & 0xff
rc >>= 8
## Whatever happened above, always disable the alarm and signal handling.
alarm(0)
signal(SIGALRM, SIG_DFL)
return sig, rc
if __name__ == "__main__":
# An example when you time out
print runwait(2, "sleep", "20")
# An example on success
print runwait(5, "sleep", "3")
# More success, but demonstrating no output
print runwait(5, "grep", "root", "/etc/passwd")
该函数返回终止进程的信号号(如果有)和执行程序的返回码。
关于linux - Python子进程超时与耗时任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22873633/
wait() 和 wait(timeout) 之间有什么区别。无论如何 wait() 需要等待通知调用,但为什么我们有 wait(timeout)? 那么 sleep(timeout) 和 wait(
如何向以下脚本添加超时?我希望它将文本显示为“超时”。 var bustcachevar = 1 //bust potential caching of external pages after in
我正在使用 Firebase once() 方法来检索 React Native 移动应用中的值。问题是,如果手机离线,once() 永远不会返回。文档说 ref.off() 方法应该取消回调,但这似
我在一个表中有一个大型数据集(超过 200 万行,每行超过 100 列),存储在 cassandra 中,几个月前(也许是 2 个月?)我能够执行一个简单的命令来跟踪该表中的记录数量: SELECT
我使用 jquery 开发移动应用程序,下面是我的代码,当我向包含的页面添加 5 或 6 行时,一切正常。但如果我添加多行显示错误消息:Javascript 执行超时。 function succes
我正在使用一个 javascript 确认,它将在 15 分钟后重复调用。如果用户未选择确认框中的任何选项我会在等待 1 分钟后重定向他。如何实现这一目标?我的代码是这样的 var timeo
每次我在沙箱环境中运行这段代码时,我都会超时并最终崩溃。我已经通过多个 IDE 运行它,但仍然找不到任何语法错误。如果有人看到了我没有看到的东西,我将非常感谢您的意见。 //assign variab
更新联系人后我会显示一条消息,1500 毫秒后我会转到另一个页面。我是这样做的: onSubmit() { if (this.form.valid) {
从昨天开始,我拼命尝试使用最新版本的 PHPMailer 运行一个非常简单的电子邮件脚本。 最荒谬的是,同一个脚本在两台服务器上不起作用,但在另一台服务器上却起作用。 这是我的尝试(来自 PHPMai
我已阅读以下 2 篇文章并尝试实现相同的文章。 我的代码是这样的,超时发生在这里 HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(url);
我正在尝试连接到 wsdl 服务, 但收到此错误: wsdl 错误:获取 http://api.didww.com/api/?wsdl - HTTP 错误: header 的套接字读取超时 本地没有问
我在使用 Ansible 的 CentOs7 实例上从 Artifactory 下载 jar 文件时遇到问题。这是我第一次在 Linux 实例上这样做。 我在每个 Windows 实例上都使用了 wi
在过去的两天里,我一直在寻找原因,我在互联网上和堆栈上尝试了很多解决方案。 我有一个带有 ubuntu 16.04 和 apache2 的专用 VM -> 服务器版本:Apache/2.4.18 (U
我正处于构建 PHP 应用程序的早期阶段,其中一部分涉及使用 file_get_contents()从远程服务器获取大文件并将它们传输给用户。例如,要获取的目标文件是 200 mB。 如果下载到服务器
我正在尝试连接到本地网络内的路由器。到目前为止,我已经使用了 TcpClient。 检查我的代码: public static void RouterConnect() {
我正在尝试构建一段代码来搜索使用 Mechanize 和 Ruby 超时的页面。我的测试台包括一个专门写入超时的页面,以及 3 个正常运行的页面。这是代码: urls = ['http://examp
我是 python 的新手,也是语义网查询领域的新手。我正在使用 SPARQLWrapper 库查询 dbpedia,我搜索了库文档但未能找到从 sparqlWrapper 触发到 dbpedia 的
我正在从 GenServer 中的句柄信息功能调用 elixir genserver 以添加电话号码获取表单客户端。但是一旦调用了handle_call,所有者进程就会崩溃[超时]。请帮忙。 全局创建
假设我的 WCF 服务中有以下执行链: ServiceMethod 调用并等待 Method1,然后调用并等待 Method2,后者调用并等待 Method3。最后 ServiceMethod 在返回
目前我正在开发一个从远程服务器发送和接收文件的应用程序。为了进行网络操作,我正在使用 QNetworkAccessManager。 要上传文件,我使用 QNetworkAccessManager::p
我是一名优秀的程序员,十分优秀!