zoukankan      html  css  js  c++  java
  • 线程协作之threading.Condition

    领会下面这个示例吧,其实跟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()

    上面的源码可知,__enter__方法就是accquire一把锁. __ exit__方法 最终是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

  • 相关阅读:
    http://download.microsoft.com/download/A/9/1/A91D6B2BA79847DF9C7EA97854B7DD18/VC.iso
    你的公积金账户在易才,请联系: 地址:武汉市汉口解放大道686号武汉世界贸易大厦49层612 客服电话:85362651 联系人:刘思明
    22
    http://www.cnblogs.com/uniqueliu/archive/2011/08/03/2126545.html
    多层的一个框 架
    MS Jet SQL for Access 2000中级篇
    窗体间传递复杂数据
    小议数据库主键选取策略(转)
    eWebSoft在线编辑器实例说明
    一个程序详细研究DataReader(转)
  • 原文地址:https://www.cnblogs.com/z-qinfeng/p/12057534.html
Copyright © 2011-2022 走看看