python多线程ctrl-c退出问题
场景:
经常会遇到下述问题:很多io busy的应用采取多线程的方式来解决,但这时候会发现python命令行不响应ctrl-c 了,而对应的java代码则没有问题:
- public class Test {
- public static void main(String[] args) throws Exception {
- new Thread(new Runnable() {
- public void run() {
- long start = System.currentTimeMillis();
- while (true) {
- try {
- Thread.sleep(1000);
- } catch (Exception e) {
- }
- System.out.println(System.currentTimeMillis());
- if (System.currentTimeMillis() - start > 1000 * 100) break;
- }
- }
- }).start();
- }
- }
java Test
ctrl-c则会结束程序
而对应的python代码:
- # -*- coding: utf-8 -*-
- import time
- import threading
- start=time.time()
- def foreverLoop():
- start=time.time()
- while 1:
- time.sleep(1)
- print time.time()
- if time.time()-start>100:
- break
- thread_=threading.Thread(target=foreverLoop)
- #thread_.setDaemon(True)
- thread_.start()
python p.py
后ctrl-c则完全不起作用了。
不成熟的分析:
首先单单设置 daemon 为 true 肯定不行,就不解释了。当daemon为 false 时,导入python线程库后实际上,threading会在主线程执行完毕后,检查是否有不是 daemon 的线程,有的化就wait,等待线程结束了,在主线程等待期间,所有发送到主线程的信号也会被阻测,可以在上述代码加入signal模块验证一下:
- def sigint_handler(signum,frame):
- print "main-thread exit"
- sys.exit()
- signal.signal(signal.SIGINT,sigint_handler)
在100秒内按下ctrl-c没有反应,只有当子线程结束后才会出现打印 "main-thread exit",可见 ctrl-c被阻测了
threading 中在主线程结束时进行的操作:
- _shutdown = _MainThread()._exitfunc
- def _exitfunc(self):
- self._Thread__stop()
- t = _pickSomeNonDaemonThread()
- if t:
- if __debug__:
- self._note("%s: waiting for other threads", self)
- while t:
- t.join()
- t = _pickSomeNonDaemonThread()
- if __debug__:
- self._note("%s: exiting", self)
- self._Thread__delete()
对所有的非daemon线程进行join等待,其中join中可自行察看源码,又调用了wait,同上文分析 ,主线程等待到了一把锁上。
不成熟的解决:
只能把线程设成daemon才能让主线程不等待,能够接受ctrl-c信号,但是又不能让子线程立即结束,那么只能采用传统的轮询方法了,采用sleep间歇省点cpu吧:
- # -*- coding: utf-8 -*-
- import time,signal,traceback
- import sys
- import threading
- start=time.time()
- def foreverLoop():
- start=time.time()
- while 1:
- time.sleep(1)
- print time.time()
- if time.time()-start>5:
- break
- thread_=threading.Thread(target=foreverLoop)
- thread_.setDaemon(True)
- thread_.start()
- #主线程wait住了,不能接受信号了
- #thread_.join()
- def _exitCheckfunc():
- print "ok"
- try:
- while 1:
- alive=False
- if thread_.isAlive():
- alive=True
- if not alive:
- break
- time.sleep(1)
- #为了使得统计时间能够运行,要捕捉 KeyboardInterrupt :ctrl-c
- except KeyboardInterrupt, e:
- traceback.print_exc()
- print "consume time :",time.time()-start
- threading._shutdown=_exitCheckfunc
缺点:轮询总会浪费点cpu资源,以及battery.
有更好的解决方案敬请提出。
ps1: 进程监控解决方案 :
用另外一个进程来接受信号后杀掉执行任务进程,牛
- # -*- coding: utf-8 -*-
- import time,signal,traceback,os
- import sys
- import threading
- start=time.time()
- def foreverLoop():
- start=time.time()
- while 1:
- time.sleep(1)
- print time.time()
- if time.time()-start>5:
- break
- class Watcher:
- """this class solves two problems with multithreaded
- programs in Python, (1) a signal might be delivered
- to any thread (which is just a malfeature) and (2) if
- the thread that gets the signal is waiting, the signal
- is ignored (which is a bug).
- The watcher is a concurrent process (not thread) that
- waits for a signal and the process that contains the
- threads. See Appendix A of The Little Book of Semaphores.
- http://greenteapress.com/semaphores/
- I have only tested this on Linux. I would expect it to
- work on the Macintosh and not work on Windows.
- """
- def __init__(self):
- """ Creates a child thread, which returns. The parent
- thread waits for a KeyboardInterrupt and then kills
- the child thread.
- """
- self.child = os.fork()
- if self.child == 0:
- return
- else:
- self.watch()
- def watch(self):
- try:
- os.wait()
- except KeyboardInterrupt:
- # I put the capital B in KeyBoardInterrupt so I can
- # tell when the Watcher gets the SIGINT
- print 'KeyBoardInterrupt'
- self.kill()
- sys.exit()
- def kill(self):
- try:
- os.kill(self.child, signal.SIGKILL)
- except OSError: pass
- Watcher()
- thread_=threading.Thread(target=foreverLoop)
- thread_.start()
注意 watch()一定要放在线程创建前,原因未知。。。。,否则立刻就结束
python多线程ctrl-c退出问题的更多相关文章
- python多线程threading
本文通过 4个example 介绍python中多线程package —— threading的常用用法, 包括调用多线程, 同步队列类Queue, Ctrl+c结束多线程. example1. 调用 ...
- [转]python 多线程threading简单分析
多线程和多进程是什么自行google补脑 对于python 多线程的理解,我花了很长时间,搜索的大部份文章都不够通俗易懂.所以,这里力图用简单的例子,让你对多线程有个初步的认识. 单线程 在好些年前的 ...
- python多线程学习记录
1.多线程的创建 import threading t = t.theading.Thread(target, args--) t.SetDeamon(True)//设置为守护进程 t.start() ...
- python多线程编程
Python多线程编程中常用方法: 1.join()方法:如果一个线程或者在函数执行的过程中调用另一个线程,并且希望待其完成操作后才能执行,那么在调用线程的时就可以使用被调线程的join方法join( ...
- Python 多线程教程:并发与并行
转载于: https://my.oschina.net/leejun2005/blog/398826 在批评Python的讨论中,常常说起Python多线程是多么的难用.还有人对 global int ...
- python 多线程就这么简单(转)
多线程和多进程是什么自行google补脑 对于python 多线程的理解,我花了很长时间,搜索的大部份文章都不够通俗易懂.所以,这里力图用简单的例子,让你对多线程有个初步的认识. 单线程 在好些年前的 ...
- 【python,threading】python多线程
使用多线程的方式 1. 函数式:使用threading模块threading.Thread(e.g target name parameters) import time,threading def ...
- Python多线程和Python的锁
Python多线程 Python中实现多线程有两种方式,一种基于_thread模块(在Python2.x版本中为thread模块,没有下划线)的start_new_thread()函数,另一种基于th ...
- 【跟我一起学Python吧】Python 多线程
其实自我感觉Python的多线程很类似于Java的多线程机制,但是比JAVA的多线程更灵活.在早期的Python多线程实现中,采用了thread模块.例如: from time import ctim ...
- 关于python多线程编程中join()和setDaemon()的一点儿探究
关于python多线程编程中join()和setDaemon()的用法,这两天我看网上的资料看得头晕脑涨也没看懂,干脆就做一个实验来看看吧. 首先是编写实验的基础代码,创建一个名为MyThread的 ...
随机推荐
- Tomcat部署Web应用方法总结
转载:http://m.blog.csdn.net/blog/u012516903/15741727 Tomcat部署Web应用方法总结 在Tomcat中部署Java Web应用程序有两种方式:静态部 ...
- ARM(ARM处理器)
ARM是微处理器行业的一家英国公司,其设计了大量高性能.廉价.耗能低的RISC处理器.相关技术及软件,公司并不直接生产产品,而是采用出售芯片技术授权的商业模式盈利.技术具有性能高.成本低和能耗省特点. ...
- Android scrollview嵌套listview运行后最先显示出来的位置不在顶部而是中间问题
scrollview里面嵌套了一个listview ,通过设置一个方法设置了listview的高度 现在的情况就是进到这个界面的时候看到的不是最上面 而是中间 ,该问题的解决办法为: mScrollV ...
- C语言全局未初始化数据段分析
前言: 在分析C语言全局未初始化变量时,发现在目标文件中全局未初始化变量并不是直接放在bss段中. 再后来发现在两个.c文件中定义同名的全局变量,链接时居然没有发生符号重定义错误.才知道C语言弱定义的 ...
- cdev_init函数
linux-2.6.22/include/linux/cdev.hstruct cdev { struct kobject kobj; // 每个 cdev 都是一个 kobje ...
- linq to Entity 数据库除了有主键还有唯一索引,是不是不能更新
数据库建了一个唯一索引,使用linq to ef更新的时候,老是报,索引建冲突,,坑了我一上午,最后把索引删了
- Word 中没有Endnote工具栏的解决方法
环境:Windows XP + Word 2003 + EndNote 6 以下各方法可以依次试一下,需要重启Word后才能看到是否可行.1 视图 -- 工具栏 -- EndNote,是否打勾.2 w ...
- Android移动应用开发中常见的经验技巧总结
转:http://wwwdevstorecn/essay/essayInfo/6128.html 1. 对话保持的解决方案. 要求: 1.app中使用webview访问具体网站的内容,但是app与服务 ...
- [UESTC1059]秋实大哥与小朋友(线段树, 离散化)
题目链接:http://acm.uestc.edu.cn/#/problem/show/1059 普通线段树+离散化,关键是……离散化后建树和查询都要按照基本法!!!RE了不知道多少次………………我真 ...
- 学习Hadoop不错的系列文章
1)Hadoop学习总结 (1)HDFS简介 (2)HDFS读写过程解析 (3)Map-Reduce入门 (4)Map-Reduce的过程解析 (5)Hadoop的运行痕迹 (6)Apache Had ...