Python线程同步的实现代码


Posted in Python onOctober 03, 2018

本文介绍Python中的线程同步对象,主要涉及 thread 和 threading 模块。

threading 模块提供的线程同步原语包括:Lock、RLock、Condition、Event、Semaphore等对象。

线程执行

join与setDaemon

子线程在主线程运行结束后,会继续执行完,如果给子线程设置为守护线程(setDaemon=True),主线程运行结束子线程即结束;

如果join()线程,那么主线程会等待子线程执行完再执行。

import threading
import time


def get_thread_a():
 print("get thread A started")
 time.sleep(3)
 print("get thread A end")


def get_thread_b():
 print("get thread B started")
 time.sleep(5)
 print("get thread B end")


if __name__ == "__main__":
 thread_a = threading.Thread(target=get_thread_a)
 thread_b = threading.Thread(target=get_thread_b)
 start_time = time.time()
 thread_b.setDaemon(True)
 thread_a.start()
 thread_b.start()
 thread_a.join()
 
 end_time = time.time()
 print("execution time: {}".format(end_time - start_time))

thread_a是join,首先子线程thread_a执行,thread_b是守护线程,当主线程执行完后,thread_b不会再执行执行结果如下:

get thread A started
get thread B started
get thread A end
execution time: 3.003199815750122

线程同步

当线程间共享全局变量,多个线程对该变量执行不同的操作时,该变量最终的结果可能是不确定的(每次线程执行后的结果不同),如:对count变量执行加减操作 ,count的值是不确定的,要想count的值是一个确定的需对线程执行的代码段加锁。

python对线程加锁主要有Lock和Rlock模块

Lock: 

from threading import Lock
lock = Lock()
lock.acquire()
lock.release()

Lock有acquire()和release()方法,这两个方法必须是成对出现的,acquire()后面必须release()后才能再acquire(),否则会造成死锁

Rlock:

鉴于Lock可能会造成死锁的情况,RLock(可重入锁)对Lock进行了改进,RLock可以在同一个线程里面连续调用多次acquire(),但必须再执行相同次数的release()

from threading import RLock
lock = RLock()
lock.acquire()
lock.acquire()
lock.release()
lock.release()

condition(条件变量),线程在执行时,当满足了特定的条件后,才可以访问相关的数据

import threading

def get_thread_a(condition):
 with condition:
  condition.wait()
  print("A : Hello B,that's ok")
  condition.notify()
  condition.wait()
  print("A : I'm fine,and you?")
  condition.notify()
  condition.wait()
  print("A : Nice to meet you")
  condition.notify()
  condition.wait()
  print("A : That's all for today")
  condition.notify()

def get_thread_b(condition):
 with condition:
  print("B : Hi A, Let's start the conversation")
  condition.notify()
  condition.wait()
  print("B : How are you")
  condition.notify()
  condition.wait()
  print("B : I'm fine too")
  condition.notify()
  condition.wait()
  print("B : Nice to meet you,too")
  condition.notify()
  condition.wait()
  print("B : Oh,goodbye")

if __name__ == "__main__":
 condition = threading.Condition()
 thread_a = threading.Thread(target=get_thread_a, args=(condition,))
 thread_b = threading.Thread(target=get_thread_b, args=(condition,))
 thread_a.start()
 thread_b.start()

Condition内部有一把锁,默认是RLock,在调用wait()和notify()之前必须先调用acquire()获取这个锁,才能继续执行;当wait()和notify()执行完后,需调用release()释放这个锁,在执行with condition时,会先执行acquire(),with结束时,执行了release();所以condition有两层锁,最底层锁在调用wait()时会释放,同时会加一把锁到等待队列,等待notify()唤醒释放锁

wait() :允许等待某个条件变量的通知,notify()可唤醒

notify(): 唤醒等待队列wait()

执行结果:

B : Hi A, Let's start the conversation
A : Hello B,that's ok
B : How are you
A : I'm fine,and you?
B : I'm fine too
A : Nice to meet you
B : Nice to meet you,too
A : That's all for today
B : Oh,goodbye

Semaphore(信号量)

用于控制线程的并发数,如爬虫中请求次数过于频繁会被禁止ip,每次控制爬取网页的线程数量可在一定程度上防止ip被禁;文件读写中,控制写线程每次只有一个,读线程可多个。

import time
import threading


def get_thread_a(semaphore,i):
 time.sleep(1)
 print("get thread : {}".format(i))
 semaphore.release()


def get_thread_b(semaphore):
 for i in range(10):
  semaphore.acquire()
  thread_a = threading.Thread(target=get_thread_a, args=(semaphore,i))
  thread_a.start()


if __name__ == "__main__":
 semaphore = threading.Semaphore(2)
 thread_b = threading.Thread(target=get_thread_b, args=(semaphore,))
 thread_b.start()

上述示例了每隔1秒并发两个线程执行的情况,当调用一次semaphore.acquire()时,Semaphore的数量就减1,直至Semaphore数量为0时被锁上,当release()后Semaphore数量加1。Semaphore在本质上是调用的Condition,semaphore.acquire()在Semaphore的值为0的条件下会调用Condition.wait(), 否则将值减1,semaphore.release()会将Semaphore的值加1,并调用Condition.notify()

Semaphore源码

def acquire(self, blocking=True, timeout=None):
  if not blocking and timeout is not None:
   raise ValueError("can't specify timeout for non-blocking acquire")
  rc = False
  endtime = None
  with self._cond:
   while self._value == 0:
    if not blocking:
     break
    if timeout is not None:
     if endtime is None:
      endtime = _time() + timeout
     else:
      timeout = endtime - _time()
      if timeout <= 0:
       break
    self._cond.wait(timeout)
   else:
    self._value -= 1
    rc = True
  return rc

def release(self):
  with self._cond:
   self._value += 1
   self._cond.notify()

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对三水点靠木的支持。

Python 相关文章推荐
python中精确输出JSON浮点数的方法
Apr 18 Python
windows及linux环境下永久修改pip镜像源的方法
Nov 28 Python
Python实现的人工神经网络算法示例【基于反向传播算法】
Nov 11 Python
Python实现的列表排序、反转操作示例
Mar 13 Python
pymongo中聚合查询的使用方法
Mar 22 Python
Python实现Mysql数据统计及numpy统计函数
Jul 15 Python
Python函数装饰器原理与用法详解
Aug 16 Python
python 实现将list转成字符串,中间用空格隔开
Dec 25 Python
Python数据可视化处理库PyEcharts柱状图,饼图,线性图,词云图常用实例详解
Feb 10 Python
pycharm内无法import已安装的模块问题解决
Feb 12 Python
解决Windows下python和pip命令无法使用的问题
Aug 31 Python
Python各协议下socket黏包问题原理
Apr 12 Python
详解通过API管理或定制开发ECS实例
Sep 30 #Python
Python 使用类写装饰器的小技巧
Sep 30 #Python
浅谈django三种缓存模式的使用及注意点
Sep 30 #Python
使用Python实现租车计费系统的两种方法
Sep 29 #Python
Python实现App自动签到领取积分功能
Sep 29 #Python
10个Python小技巧你值得拥有
Sep 29 #Python
实例分析python3实现并发访问水平切分表
Sep 29 #Python
You might like
德生S2000电路分析
2021/03/02 无线电
php自定义函数之递归删除文件及目录
2010/08/08 PHP
php获取微信openid方法总结
2019/10/10 PHP
一组JS创建和操作表格的函数集合
2009/05/07 Javascript
js getElementsByTagName的简写方式
2010/06/27 Javascript
jquery实现商品拖动选择效果代码(自写)
2013/05/28 Javascript
Query中click(),bind(),live(),delegate()的区别
2013/11/19 Javascript
jquery做的一个简单的屏幕锁定提示框
2014/03/26 Javascript
实例说明为什么不要行内使用javascript
2014/04/18 Javascript
使用forever管理nodejs应用教程
2014/06/03 NodeJs
谈谈JavaScript中function多重理解
2015/08/28 Javascript
BootStrap智能表单实战系列(七)验证的支持
2016/06/13 Javascript
jQuery插件扩展extend的简单实现原理
2016/06/24 Javascript
AngularJs  unit-testing(单元测试)详解
2016/09/02 Javascript
jQuery实现点击下拉框中的值累加到文本框中的方法示例
2017/10/28 jQuery
这15个Vue指令,让你的项目开发爽到爆
2019/10/11 Javascript
Vue中多元素过渡特效的解决方案
2020/02/05 Javascript
浅析JS中NEW的实现原理及重写
2020/02/20 Javascript
[01:08:48]LGD vs OG 2018国际邀请赛淘汰赛BO3 第三场 8.25
2018/08/29 DOTA
python爬取网站数据保存使用的方法
2013/11/20 Python
如何安装多版本python python2和python3共存以及pip共存
2018/09/18 Python
用Python实现数据的透视表的方法
2018/11/16 Python
对python借助百度云API对评论进行观点抽取的方法详解
2019/02/21 Python
python制作填词游戏步骤详解
2019/05/05 Python
PyQt5实现从主窗口打开子窗口的方法
2019/06/19 Python
CSS3 对过渡(transition)进行调速以及延时
2020/10/21 HTML / CSS
如何开启linux的ssh服务
2013/06/03 面试题
研究生自荐信
2013/10/09 职场文书
公司活动策划方案
2014/01/13 职场文书
社区关爱留守儿童活动方案
2014/08/22 职场文书
解除劳动关系协议书范文
2014/09/11 职场文书
课堂打架检讨书200字
2014/11/21 职场文书
个人工作年终总结
2015/03/09 职场文书
西部计划志愿者工作总结
2015/08/11 职场文书
人民调解协议书
2016/03/21 职场文书
Python多线程 Queue 模块常见用法
2021/07/04 Python