Python线程协作threading.Condition实现过程解析


Posted in Python onMarch 12, 2020

领会下面这个示例吧,其实跟java中wait/nofity是一样一样的道理

import threading


# 条件变量,用于复杂的线程间同步锁
"""
需求:
  男:小姐姐,你好呀!
  女:哼,想泡老娘不成?
  男:对呀,想泡你
  女:滚蛋,门都没有!
  男:切,长这么丑, 还这么吊...
  女:关你鸟事!

"""
class Boy(threading.Thread):
  def __init__(self, name, condition):
    super().__init__(name=name)
    self.condition = condition

  def run(self):
    with self.condition:
      print("{}:小姐姐,你好呀!".format(self.name))
      self.condition.wait()
      self.condition.notify()

      print("{}:对呀,想泡你".format(self.name))
      self.condition.wait()
      self.condition.notify()

      print("{}:切,长这么丑, 还这么吊...".format(self.name))
      self.condition.wait()
      self.condition.notify()


class Girl(threading.Thread):
  def __init__(self, name, condition):
    super().__init__(name=name)
    self.condition = condition

  def run(self):
    with self.condition:
      print("{}:哼,想泡老娘不成?".format(self.name))
      self.condition.notify()
      self.condition.wait()

      print("{}:滚蛋,门都没有!".format(self.name))
      self.condition.notify()
      self.condition.wait()

      print("{}:关你鸟事!".format(self.name))
      self.condition.notify()
      self.condition.wait()


if __name__ == '__main__':
  condition = threading.Condition()
  boy_thread = Boy('男', condition)
  girl_thread = Girl('女', condition)

  boy_thread.start()
  girl_thread.start()

Condition的底层实现了__enter__和 __exit__协议.所以可以使用with上下文管理器

由Condition的__init__方法可知,它的底层也是维护了一个RLock锁

def __enter__(self):
    return self._lock.__enter__()
def __exit__(self, *args):
    return self._lock.__exit__(*args)
def __exit__(self, t, v, tb):
    self.release()
def release(self):
    """Release a lock, decrementing the recursion level.

    If after the decrement it is zero, reset the lock to unlocked (not owned
    by any thread), and if any other threads are blocked waiting for the
    lock to become unlocked, allow exactly one of them to proceed. If after
    the decrement the recursion level is still nonzero, the lock remains
    locked and owned by the calling thread.

    Only call this method when the calling thread owns the lock. A
    RuntimeError is raised if this method is called when the lock is
    unlocked.

    There is no return value.

    """
    if self._owner != get_ident():
      raise RuntimeError("cannot release un-acquired lock")
    self._count = count = self._count - 1
    if not count:
      self._owner = None
      self._block.release()

至于wait/notify是如何操作的,还是有点懵.....

wait()方法源码中这样三行代码

waiter = _allocate_lock() #从底层获取了一把锁,并非Lock锁
waiter.acquire()
self._waiters.append(waiter) # 然后将这个锁加入到_waiters(deque)中
saved_state = self._release_save() # 这是释放__enter__时的那把锁???

notify()方法源码

all_waiters = self._waiters  
waiters_to_notify = _deque(_islice(all_waiters, n))# 从_waiters中取出n个
if not waiters_to_notify:  # 如果是None,结束
   return
for waiter in waiters_to_notify: # 循环release
   waiter.release()
   try:
     all_waiters.remove(waiter) #从_waiters中移除
   except ValueError:
     pass

大体意思: wait先从底层创建锁,acquire, 放到一个deque中,然后释放掉with锁, notify时,从deque取拿出锁,release

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python计算牛顿迭代多项式实例分析
May 07 Python
Windows和Linux下Python输出彩色文字的方法教程
May 02 Python
Django 前后台的数据传递的方法
Aug 08 Python
python pandas中对Series数据进行轴向连接的实例
Jun 08 Python
Django之模型层多表操作的实现
Jan 08 Python
pyqt5对用qt designer设计的窗体实现弹出子窗口的示例
Jun 19 Python
用python打印菱形的实操方法和代码
Jun 25 Python
Python 3 判断2个字典相同
Aug 06 Python
对python中的os.getpid()和os.fork()函数详解
Aug 08 Python
Python列表倒序输出及其效率详解
Mar 04 Python
Pycharm无法打开双击没反应的问题及解决方案
Aug 17 Python
Python3压缩和解压缩实现代码
Mar 01 Python
Python 实现网课实时监控自动签到、打卡功能
Mar 12 #Python
Python基于read(size)方法读取超大文件
Mar 12 #Python
Python函数生成器原理及使用详解
Mar 12 #Python
python deque模块简单使用代码实例
Mar 12 #Python
python中安装django模块的方法
Mar 12 #Python
python3 sorted 如何实现自定义排序标准
Mar 12 #Python
Python dict和defaultdict使用实例解析
Mar 12 #Python
You might like
这部番真是良心,画质好到像风景区,剧情让人跟着小公会热血沸腾
2020/03/10 日漫
详解Yii2 定制表单输入字段的标签和样式
2017/01/04 PHP
PHP+jQuery实现双击修改table表格功能示例
2019/02/21 PHP
经典的解除许多网站无法复制文字的绝招
2006/12/31 Javascript
JavaScript如何从listbox里同时删除多个项目
2013/10/12 Javascript
javascript中定义私有方法说明(private method)
2014/01/27 Javascript
使用js画图之圆、弧、扇形
2015/01/12 Javascript
jquery淡入淡出效果简单实例
2016/01/14 Javascript
一起学写js Calender日历控件
2016/04/14 Javascript
Javascript实现前端简单的路由实例
2016/09/11 Javascript
浅谈js停止事件冒泡 阻止浏览器的默认行为(阻止超连接 #)
2017/02/08 Javascript
js实现图片粘贴上传到服务器并展示的实例
2017/11/08 Javascript
JavaScript中call和apply方法的区别实例分析
2018/08/03 Javascript
js实现导航跟随效果
2018/11/17 Javascript
js实现登录时记住密码的方法分析
2020/04/05 Javascript
Vue props中Object和Array设置默认值操作
2020/07/30 Javascript
Python常用正则表达式符号浅析
2014/08/13 Python
Python实现将数据库一键导出为Excel表格的实例
2016/12/30 Python
matplotlib在python上绘制3D散点图实例详解
2017/12/09 Python
Python读取MRI并显示为灰度图像实例代码
2018/01/03 Python
Python生成器generator用法示例
2018/08/10 Python
如何基于python实现年会抽奖工具
2020/10/20 Python
如何打印出当前源文件的文件名以及源文件的当前行号
2015/04/05 面试题
北京一家公司的.net开发工程师笔试题
2012/04/17 面试题
this关键字的作用
2016/01/30 面试题
餐饮业创业计划书范文
2014/01/06 职场文书
上班迟到检讨书
2014/01/10 职场文书
文化宣传方案
2014/03/13 职场文书
2014年寒假社会实践活动心得体会
2014/04/07 职场文书
暑假安全教育广播稿
2014/09/10 职场文书
2014年商场国庆节活动策划方案
2014/09/16 职场文书
甜品店创业计划书
2014/09/21 职场文书
政风行风评议心得体会
2014/10/21 职场文书
大学入学感言
2015/08/01 职场文书
2016年教师节贺卡寄语
2015/12/04 职场文书
机械原理课程设计心得体会
2016/01/15 职场文书