SlideShare uma empresa Scribd logo
1 de 99
Baixar para ler offline
A Curious Course on
       Coroutines and Concurrency
                                                       David Beazley
                                                  http://www.dabeaz.com

                        Presented at PyCon'2009, Chicago, Illinois


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       1




                                                 This Tutorial
                 • A mondo exploration of Python coroutines
                               mondo:
                               1. Extreme in degree or nature.
                               (http://www.urbandictionary.com)

                               2. An instructional technique of Zen Buddhism
                               consisting of rapid dialogue of questions and
                               answers between master and pupil. (Oxford
                               English Dictionary, 2nd Ed)

              • You might want to brace yourself...
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       2
Requirements
                • You need Python 2.5 or newer
                • No third party extensions
                • We're going to be looking at a lot of code
                                 http://www.dabeaz.com/coroutines/

                • Go there and follow along with the examples
                • I will indicate file names as appropriate
                                                                     sample.py
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         3




                        High Level Overview

              • What in the heck is a coroutine?
              • What can you use them for?
              • Should you care?
              • Is using them even a good idea?


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         4
A Pictorial Overview
                    Killer                                   Head Explosion Index
                    Joke



            Throbbing
            Headache




                You are                                                                  End
                 here




                                                                            te ing
                                                                                    ds
                                                                         t H ing
                                                    es




                                                                           e T ng



                                                              er a m asks
                                         s
                                     or




                                                                                ea
                                                tin




                                                                          ys sk
                                                                                 li
                                                                                 s

                                                                    So and
                                   at



                                                           es



                                                                              hr




                                                                              m
                                                                               T

                                                                     g s ita
                                              u
                                er




                                                                            as
                                                       c
                                           ro




                                                                   in lt
                                                    ro
                             en

                                       Co




                                                                 at u
                                                                         es
                                                                        m
                                                aP
                           G




                                                             en




                                                                      in
                                   to

                                              at




                                                                   ut
                                                           Ev




                                                            op e
                                           D



                                                                 in

                                                                ro
                              tro




                                                               rit
                                         e



                                                             ix

                                                             Co

                                                             W
                                      m
                            In




                                                            M
                                   So




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                       5




                                                       About Me

              • I'm a long-time Pythonista
              • Author of the Python Essential Reference
                      (look for the 4th edition--shameless plug)
              • Created several packages (Swig, PLY, etc.)
              • Currently a full-time Python trainer

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                       6
Some Background

                • I'm an unabashed fan of generators and
                       generator expressions (Generators Rock!)
                • See quot;Generator Tricks for Systems
                       Programmersquot; from PyCon'08
                •        http://www.dabeaz.com/generators




Copyright (C) 2009, David Beazley, http://www.dabeaz.com               7




      Coroutines and Generators
                • In Python 2.5, generators picked up some
                       new features to allow quot;coroutinesquot; (PEP-342).
                • Most notably: a new send() method
                • If Python books are any guide, this is the most
                       poorly documented, obscure, and apparently
                       useless feature of Python.
                • quot;Oooh. You can now send values into
                       generators producing fibonacci numbers!quot;

Copyright (C) 2009, David Beazley, http://www.dabeaz.com               8
Uses of Coroutines
                • Coroutines apparently might be possibly
                       useful in various libraries and frameworks
                  quot;It's all really quite simple. The toelet is connected to
                      the footlet, and the footlet is connected to the
                   anklelet, and the anklelet is connected to the leglet,
                  and the is leglet connected to the is thighlet, and the
                   thighlet is connected to the hiplet, and the is hiplet
                        connected to the backlet, and the backlet is
                        connected to the necklet, and the necklet is
                      connected to the headlet, and ?????? ..... profit!quot;

                 • Uh, I think my brain is just too small...
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                      9




                                                   Disclaimers

               • Coroutines - The most obscure Python feature?
               • Concurrency - One of the most difficult topics
                      in computer science (usually best avoided)
               • This tutorial mixes them together
               • It might create a toxic cloud

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                      10
More Disclaimers
           • As a programmer of the 80s/90s, I've never used
                  a programming language that had coroutines--
                  until they showed up in Python
           • Most of the groundwork for coroutines
                  occurred in the 60s/70s and then stopped in
                  favor of alternatives (e.g., threads, continuations)
           • I want to know if there is any substance to the
                  renewed interest in coroutines that has been
                  occurring in Python and other languages

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 11




                  Even More Disclaimers

                • I'm a neutral party
                • I didn't have anything to do with PEP-342
                • I'm not promoting any libraries or frameworks
                • I have no religious attachment to the subject
                • If anything, I'm a little skeptical

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 12
Final Disclaimers
             • This tutorial is not an academic presentation
             • No overview of prior art
             • No theory of programming languages
             • No proofs about locking
             • No Fibonacci numbers
             • Practical application is the main focus
Copyright (C) 2009, David Beazley, http://www.dabeaz.com       13




                          Performance Details
               • There are some later performance numbers
               • Python 2.6.1 on OS X 10.4.11
               • All tests were conducted on the following:
                    • Mac Pro 2x2.66 Ghz Dual-Core Xeon
                    • 3 Gbytes RAM
               • Timings are 3-run average of 'time' command
Copyright (C) 2009, David Beazley, http://www.dabeaz.com       14
Part I
                        Introduction to Generators and Coroutines




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                           15




                                                    Generators
                  • A generator is a function that produces a
                          sequence of results instead of a single value
                             def countdown(n):                      countdown.py
                                 while n > 0:
                                     yield n
                                     n -= 1

                             >>> for i in countdown(5):
                             ...     print i,
                             ...
                             5 4 3 2 1
                             >>>

                    • Instead of returning a value, you generate a
                           series of values (using the yield statement)
                    • Typically, you hook it up to a for-loop                      16
Copyright (C) 2009, David Beazley, http://www.dabeaz.com
Generators
                   • Behavior is quite different than normal func
                   • Calling a generator function creates an
                          generator object. However, it does not start
                          running the function.
                         def countdown(n):
                             print quot;Counting down fromquot;, n
                             while n > 0:
                                 yield n
                                 n -= 1              Notice that no
                                                       output was
                         >>> x = countdown(10)          produced
                         >>> x
                         <generator object at 0x58490>
                         >>>


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                      17




                          Generator Functions
                  • The function only executes on next()
                          >>> x = countdown(10)
                          >>> x
                          <generator object at 0x58490>
                          >>> x.next()
                          Counting down from 10             Function starts
                          10                                executing here
                          >>>

                  • yield produces a value, but suspends the function
                  • Function resumes on next call to next()
                          >>> x.next()
                          9
                          >>> x.next()
                          8
                          >>>


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                      18
Generator Functions

                 • When the generator returns, iteration stops
                          >>> x.next()
                          1
                          >>> x.next()
                          Traceback (most recent call last):
                            File quot;<stdin>quot;, line 1, in ?
                          StopIteration
                          >>>




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                           19




                           A Practical Example
                • A Python version of Unix 'tail -f'
                         import time                                   follow.py
                         def follow(thefile):
                             thefile.seek(0,2)      # Go to the end of the file
                             while True:
                                  line = thefile.readline()
                                  if not line:
                                      time.sleep(0.1)    # Sleep briefly
                                      continue
                                  yield line


                • Example use : Watch a web-server log file
                         logfile = open(quot;access-logquot;)
                         for line in follow(logfile):
                             print line,


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                           20
Generators as Pipelines
                 • One of the most powerful applications of
                         generators is setting up processing pipelines
                 • Similar to shell pipes in Unix
            input
                                      generator            generator   generator    for x in s:
            sequence



                 • Idea: You can stack a series of generator
                         functions together into a pipe and pull items
                         through it with a for-loop

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                          21




                             A Pipeline Example
                • Print all server log entries containing 'python'
                        def grep(pattern,lines):                                    pipeline.py
                            for line in lines:
                                if pattern in line:
                                     yield line

                        # Set up             a    processing pipe : tail -f | grep python
                        logfile              =    open(quot;access-logquot;)
                        loglines             =    follow(logfile)
                        pylines              =    grep(quot;pythonquot;,loglines)

                        # Pull results out of the processing pipeline
                        for line in pylines:
                            print line,


                • This is just a small taste
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                          22
Yield as an Expression
               • In Python 2.5, a slight modification to the yield
                       statement was introduced (PEP-342)
               • You could now use yield as an expression
               • For example, on the right side of an assignment
                           def grep(pattern):                            grep.py
                               print quot;Looking for %squot; % pattern
                               while True:
                                   line = (yield)
                                   if pattern in line:
                                       print line,


                 • Question : What is its value?
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             23




                                                   Coroutines
               • If you use yield more generally, you get a coroutine
               • These do more than just generate values
               • Instead, functions can consume values sent to it.
                          >>> g = grep(quot;pythonquot;)
                          >>> g.next()              # Prime it (explained shortly)
                          Looking for python
                          >>> g.send(quot;Yeah, but no, but yeah, but noquot;)
                          >>> g.send(quot;A series of tubesquot;)
                          >>> g.send(quot;python generators rock!quot;)
                          python generators rock!
                          >>>


               • Sent values are returned by (yield)
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             24
Coroutine Execution
               • Execution is the same as for a generator
               • When you call a coroutine, nothing happens
               • They only run in response to next() and send()
                       methods                              Notice that no
                                                             output was
                                                              produced
                          >>> g = grep(quot;pythonquot;)
                          >>> g.next()
                          Looking for python               On first operation,
                          >>>                               coroutine starts
                                                                running




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             25




                               Coroutine Priming
               • All coroutines must be quot;primedquot; by first
                       calling .next() (or send(None))
               • This advances execution to the location of the
                       first yield expression.
                        def grep(pattern):
                            print quot;Looking for %squot; % pattern
                            while True:                      .next() advances the
                                line = (yield)                 coroutine to the
                                if pattern in line:          first yield expression
                                    print line,


                 • At this point, it's ready to receive a value
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             26
Using a Decorator
               • Remembering to call .next() is easy to forget
               • Solved by wrapping coroutines with a decorator
                             def coroutine(func):                      coroutine.py
                                 def start(*args,**kwargs):
                                     cr = func(*args,**kwargs)
                                     cr.next()
                                     return cr
                                 return start

                             @coroutine
                             def grep(pattern):
                                 ...


               • I will use this in most of the future examples
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          27




                          Closing a Coroutine
                • A coroutine might run indefinitely
                • Use .close() to shut it down
                        >>> g = grep(quot;pythonquot;)
                        >>> g.next()              # Prime it
                        Looking for python
                        >>> g.send(quot;Yeah, but no, but yeah, but noquot;)
                        >>> g.send(quot;A series of tubesquot;)
                        >>> g.send(quot;python generators rock!quot;)
                        python generators rock!
                        >>> g.close()


                • Note: Garbage collection also calls close()
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          28
Catching close()
                • close() can be caught (GeneratorExit)
                         @coroutine                                 grepclose.py
                         def grep(pattern):
                             print quot;Looking for %squot; % pattern
                             try:
                                  while True:
                                      line = (yield)
                                      if pattern in line:
                                          print line,
                             except GeneratorExit:
                                  print quot;Going away. Goodbyequot;


                • You cannot ignore this exception
                • Only legal action is to clean up and return
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       29




                  Throwing an Exception
                • Exceptions can be thrown inside a coroutine
                         >>> g = grep(quot;pythonquot;)
                         >>> g.next()               # Prime it
                         Looking for python
                         >>> g.send(quot;python generators rock!quot;)
                         python generators rock!
                         >>> g.throw(RuntimeError,quot;You're hosedquot;)
                         Traceback (most recent call last):
                           File quot;<stdin>quot;, line 1, in <module>
                           File quot;<stdin>quot;, line 4, in grep
                         RuntimeError: You're hosed
                         >>>


                • Exception originates at the yield expression
                • Can be caught/handled in the usual ways
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       30
Interlude
            • Despite some similarities, Generators and
                    coroutines are basically two different concepts
            • Generators produce values
            • Coroutines tend to consume values
            • It is easy to get sidetracked because methods
                    meant for coroutines are sometimes described as
                    a way to tweak generators that are in the process
                    of producing an iteration pattern (i.e., resetting its
                    value). This is mostly bogus.

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        31




                                  A Bogus Example
           • A quot;generatorquot; that produces and receives values
                     def countdown(n):                               bogus.py
                         print quot;Counting down fromquot;, n
                         while n >= 0:
                             newvalue = (yield n)
                             # If a new value got sent in, reset n with it
                             if newvalue is not None:
                                 n = newvalue
                             else:
                                 n -= 1

             • It runs, but it's quot;flakyquot; and hard to understand
                     c = countdown(5)
                                                                      5   Notice how a value
                     for n in c:                             output
                                                                      2     got quot;lostquot; in the
                         print n
                                                                      1   iteration protocol
                         if n == 5:
                                                                      0
                             c.send(3)


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        32
Keeping it Straight
             • Generators produce data for iteration
             • Coroutines are consumers of data
             • To keep your brain from exploding, you don't mix
                     the two concepts together
             • Coroutines are not related to iteration
             • Note : There is a use of having yield produce a
                     value in a coroutine, but it's not tied to iteration.


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                     33




                                                           Part 2
                                    Coroutines, Pipelines, and Dataflow




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                     34
Processing Pipelines

                  • Coroutines can be used to set up pipes
                send()                                     send()               send()
                                  coroutine                         coroutine            coroutine



                  • You just chain coroutines together and push
                          data through the pipe with send() operations




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                             35




                                     Pipeline Sources
                 • The pipeline needs an initial source (a producer)
                                                               send()                send()
                                               source                   coroutine



                 • The source drives the entire pipeline
                           def source(target):
                               while not done:
                                   item = produce_an_item()
                                   ...
                                   target.send(item)
                                   ...
                               target.close()


                 • It is typically not a coroutine
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                             36
Pipeline Sinks
                 • The pipeline must have an end-point (sink)
                                     send()                        send()
                                                       coroutine            sink



                 • Collects all data sent to it and processes it
                           @coroutine
                           def sink():
                               try:
                                    while True:
                                         item = (yield)                     # Receive an item
                                         ...
                               except GeneratorExit:                        # Handle .close()
                                     # Done
                                     ...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        37




                                                 An Example
                  • A source that mimics Unix 'tail -f'
                           import time                                 cofollow.py
                           def follow(thefile, target):
                               thefile.seek(0,2)      # Go to the end of the file
                               while True:
                                    line = thefile.readline()
                                    if not line:
                                        time.sleep(0.1)    # Sleep briefly
                                        continue
                                    target.send(line)

                    • A sink that just prints the lines
                           @coroutine
                           def printer():
                               while True:
                                    line = (yield)
                                    print line,


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        38
An Example
                   • Hooking it together
                           f = open(quot;access-logquot;)
                           follow(f, printer())


                   • A picture
                                                                       send()
                                                           follow()              printer()




                   • Critical point : follow() is driving the entire
                          computation by reading lines and pushing them
                          into the printer() coroutine

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                     39




                                          Pipeline Filters
                  • Intermediate stages both receive and send
                                                            send()               send()
                                                                     coroutine



                  • Typically perform some kind of data
                          transformation, filtering, routing, etc.
                           @coroutine
                           def filter(target):
                               while True:
                                   item = (yield)            # Receive an item
                                   # Transform/filter item
                                   ...
                                   # Send it along to the next stage
                                   target.send(item)


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                     40
A Filter Example
                  • A grep filter coroutine
                              @coroutine
                                                                                                 copipe.py


                              def grep(pattern,target):
                                  while True:
                                      line = (yield)                                # Receive a line
                                      if pattern in line:
                                          target.send(line)                         # Send to next stage

                    • Hooking it up
                              f = open(quot;access-logquot;)
                              follow(f,
                                     grep('python',
                                     printer()))

                    • A picture
                                                           send()             send()
                                   follow()                         grep()             printer()

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                      41




                                                           Interlude
                • Coroutines flip generators around
           generators/iteration
            input
                                      generator                generator       generator        for x in s:
            sequence



            coroutines
                                                   send()                  send()
                              source                          coroutine             coroutine



                 • Key difference. Generators pull data through
                         the pipe with iteration. Coroutines push data
                         into the pipeline with send().
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                      42
Being Branchy
                • With coroutines, you can send data to multiple
                       destinations
                                                                                         send()
                                                                             coroutine            coroutine
                                                                   send()
                                       send()                       send()
                 source                                coroutine             coroutine


                                                                   send()    coroutine




                • The source simply quot;sendsquot; data. Further routing
                       of that data can be arbitrarily complex

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                      43




                   Example : Broadcasting
               • Broadcast to multiple targets
                        @coroutine                                                         cobroadcast.py
                        def broadcast(targets):
                            while True:
                                item = (yield)
                                for target in targets:
                                    target.send(item)



               • This takes a sequence of coroutines (targets)
                       and sends received items to all of them.



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                      44
Example : Broadcasting
               • Example use:
                        f = open(quot;access-logquot;)
                        follow(f,
                               broadcast([grep('python',printer()),
                                          grep('ply',printer()),
                                          grep('swig',printer())])
                          )


                                                           grep('python')   printer()


             follow                        broadcast       grep('ply')      printer()


                                                           grep('swig')     printer()



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                  45




                   Example : Broadcasting
               • A more disturbing variation...
                        f = open(quot;access-logquot;)                              cobroadcast2.py
                        p = printer()
                        follow(f,
                               broadcast([grep('python',p),
                                          grep('ply',p),
                                          grep('swig',p)])
                          )

                                                           grep('python')


             follow                        broadcast       grep('ply')      printer()


                                                           grep('swig')



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                  46
Interlude
             • Coroutines provide more powerful data routing
                    possibilities than simple iterators
             • If you built a collection of simple data processing
                    components, you can glue them together into
                    complex arrangements of pipes, branches,
                    merging, etc.
             • Although there are some limitations (later)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                         47




                                               A Digression
             • In preparing this tutorial, I found myself wishing
                    that variable assignment was an expression
                    @coroutine
                                                                     @coroutine
                    def printer():
                                                                     def printer():
                        while True:
                             line = (yield)                    vs.       while (line = yield):
                                                                              print line,
                             print line,




               • However, I'm not holding my breath on that...
               • Actually, I'm expecting to be flogged with a
                      rubber chicken for even suggesting it.

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                         48
Coroutines vs. Objects
             • Coroutines are somewhat similar to OO design
                    patterns involving simple handler objects
                       class GrepHandler(object):
                           def __init__(self,pattern, target):
                               self.pattern = pattern
                               self.target = target
                           def send(self,line):
                               if self.pattern in line:
                                   self.target.send(line)

             • The coroutine version
                      @coroutine
                      def grep(pattern,target):
                          while True:
                              line = (yield)
                              if pattern in line:
                                  target.send(line)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                49




                   Coroutines vs. Objects
               • There is a certain quot;conceptual simplicityquot;
                     • A coroutine is one function definition
               • If you define a handler class...
                     • You need a class definition
                     • Two method definitions
                     • Probably a base class and a library import
               • Essentially you're stripping the idea down to the
                      bare essentials (like a generator vs. iterator)
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                50
Coroutines vs. Objects
             • Coroutines are faster
             • A micro benchmark
                        @coroutine                                              benchmark.py
                        def null():
                            while True: item = (yield)

                        line = 'python is nice'
                        p1   = grep('python',null())                  # Coroutine
                        p2   = GrepHandler('python',null())           # Object

               • Send in 1,000,000 lines
                      timeit(quot;p1.send(line)quot;,
                             quot;from __main__ import line,p1quot;)                    0.60 s

                      timeit(quot;p2.send(line)quot;,
                             quot;from __main__ import line,p2quot;)                    0.92 s
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                       51




                     Coroutines & Objects
             • Understanding the performance difference
                       class GrepHandler(object):
                           ...
                           def send(self,line):
                               if self.pattern in line:
                                   self.target.send(line)

                                                           Look at these self lookups!

             • Look at the coroutine
                        @coroutine
                        def grep(pattern, target):
                            while True:
                                line = (yield)
                                if pattern in line:               quot;selfquot; free
                                    target.send(d)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                       52
Part 3
                                      Coroutines and Event Dispatching




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 53




                                         Event Handling


             • Coroutines can be used to write various
                    components that process event streams
             • Let's look at an example...


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 54
Problem
             • Where is my ^&#&@* bus?
             • Chicago Transit Authority (CTA) equips most
                    of its buses with real-time GPS tracking
             • You can get current data on every bus on the
                    street as a big XML document
             • Use quot;The Googlequot; to search for details...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 55




                                                    Some XML
       <?xml version=quot;1.0quot;?>
         <buses>
            <bus>
         ! ! <id>7574</id>
           ! <route>147</route>
           !
           ! <color>#3300ff</color>
           !
           ! <revenue>true</revenue>
           !
           ! <direction>North Bound</direction>
           !
           ! <latitude>41.925682067871094</latitude>
           !
              !
              <longitude>-87.63092803955078</longitude>
              !
              <pattern>2499</pattern>
              !
              <patternDirection>North Bound</patternDirection>
         !    <run>P675</run>
              <finalStop><![CDATA[Paulina & Howard Terminal]]></finalStop>
              <operator>42493</operator>
           </bus>
           <bus>
            ...
           </bus>
         </buses>
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                 56
XML Parsing
             • There are many possible ways to parse XML
             • An old-school approach: SAX
             • SAX is an event driven interface
                                                                    Handler Object
                                                                      class Handler:
                                                                         def startElement():
                                                           events            ...
                        XML Parser                                       def endElement():
                                                                             ...
                                                                         def characters():
                                                                             ...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                              57




                     Minimal SAX Example
                    import xml.sax                                                      basicsax.py

                    class MyHandler(xml.sax.ContentHandler):
                        def startElement(self,name,attrs):
                            print quot;startElementquot;, name
                        def endElement(self,name):
                            print quot;endElementquot;, name
                        def characters(self,text):
                            print quot;charactersquot;, repr(text)[:40]

                    xml.sax.parse(quot;somefile.xmlquot;,MyHandler())



             • You see this same programming pattern in
                    other settings (e.g., HTMLParser module)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                              58
Some Issues

             • SAX is often used because it can be used to
                    incrementally process huge XML files without
                    a large memory footprint
             • However, the event-driven nature of SAX
                    parsing makes it rather awkward and low-level
                    to deal with




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         59




           From SAX to Coroutines
             • You can dispatch SAX events into coroutines
             • Consider this SAX handler                             cosax.py
                       import xml.sax

                       class EventHandler(xml.sax.ContentHandler):
                           def __init__(self,target):
                               self.target = target
                           def startElement(self,name,attrs):
                               self.target.send(('start',(name,attrs._attrs)))
                           def characters(self,text):
                               self.target.send(('text',text))
                           def endElement(self,name):
                               self.target.send(('end',name))


              • It does nothing, but send events to a target
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         60
An Event Stream
             • The big picture
                                             events                   send()
              SAX Parser                                   Handler              (event,value)



                                                                 'start'          ('direction',{})
                                                                 'end'            'direction'
                                                                 'text'           'North Bound'
                                                              Event type          Event values

             • Observe : Coding this was straightforward
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                             61




                                    Event Processing
              • To do anything interesting, you have to
                      process the event stream
              • Example: Convert bus elements into
                      dictionaries (XML sucks, dictionaries rock)

   <bus>                                                                   {
! ! <id>7574</id>                                                              'id' : '7574',
 ! <route>147</route>
  !                                                                            'route' : '147',
 ! <revenue>true</revenue>
  !                                                                            'revenue' : 'true',
 ! <direction>North Bound</direction>
  !                                                                            'direction' : 'North Bound'
 ! ...
  !                                                                            ...
    </bus>                                                                 }



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                             62
Buses to Dictionaries
          @coroutine                                          buses.py
          def buses_to_dicts(target):
              while True:
                  event, value = (yield)
                  # Look for the start of a <bus> element
                  if event == 'start' and value[0] == 'bus':
                      busdict = { }
                      fragments = []
                      # Capture text of inner elements in a dict
                      while True:
                          event, value = (yield)
                          if event == 'start':   fragments = []
                          elif event == 'text': fragments.append(value)
                          elif event == 'end':
                              if value != 'bus':
                                  busdict[value] = quot;quot;.join(fragments)
                              else:
                                  target.send(busdict)
                                  break

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             63




                                         State Machines
             • The previous code works by implementing a
                    simple state machine

                                                           ('start',('bus',*))
                                                   A                             B
                                                             ('end','bus')

             • State A: Looking for a bus
             • State B: Collecting bus attributes
             • Comment : Coroutines are perfect for this
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             64
Buses to Dictionaries
          @coroutine
          def buses_to_dicts(target):
              while True:
                  event, value = (yield)
            A     # Look for the start of a <bus> element
                  if event == 'start' and value[0] == 'bus':
                      busdict = { }
                      fragments = []
                      # Capture text of inner elements in a dict
                      while True:
                          event, value = (yield)
                          if event == 'start':   fragments = []
                          elif event == 'text': fragments.append(value)
                          elif event == 'end':
                              B
                              if value != 'bus':
                                  busdict[value] = quot;quot;.join(fragments)
                              else:
                                  target.send(busdict)
                                  break

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                  65




                                 Filtering Elements
             • Let's filter on dictionary fields
                        @coroutine
                        def filter_on_field(fieldname,value,target):
                            while True:
                                d = (yield)
                                if d.get(fieldname) == value:
                                    target.send(d)


            • Examples:
                      filter_on_field(quot;routequot;,quot;22quot;,target)
                      filter_on_field(quot;directionquot;,quot;North Boundquot;,target)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                  66
Processing Elements
             • Where's my bus?
                        @coroutine
                        def bus_locations():
                            while True:
                                bus = (yield)
                                print quot;%(route)s,%(id)s,quot;%(direction)squot;,quot;
                                      quot;%(latitude)s,%(longitude)squot; % bus


              • This receives dictionaries and prints a table
                        22,1485,quot;North Boundquot;,41.880481123924255,-87.62948191165924
                        22,1629,quot;North Boundquot;,42.01851969751819,-87.6730209876751
                        ...




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          67




                           Hooking it Together
             • Find all locations of the North Bound #22 bus
                    (the slowest moving object in the universe)
                    xml.sax.parse(quot;allroutes.xmlquot;,
                                  EventHandler(
                                       buses_to_dicts(
                                       filter_on_field(quot;routequot;,quot;22quot;,
                                       filter_on_field(quot;directionquot;,quot;North Boundquot;,
                                       bus_locations())))
                                  ))


             • This final step involves a bit of plumbing, but
                    each of the parts is relatively simple


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          68
How Low Can You Go?

             • I've picked this XML example for reason
             • One interesting thing about coroutines is that
                    you can push the initial data source as low-
                    level as you want to make it without rewriting
                    all of the processing stages
             • Let's say SAX just isn't quite fast enough...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       69




               XML Parsing with Expat
             • Let's strip it down....
                   import xml.parsers.expat                       coexpat.py

                   def expat_parse(f,target):
                       parser = xml.parsers.expat.ParserCreate()
                       parser.buffer_size = 65536
                       parser.buffer_text = True
                       parser.returns_unicode = False
                       parser.StartElementHandler = 
                          lambda name,attrs: target.send(('start',(name,attrs)))
                       parser.EndElementHandler = 
                          lambda name: target.send(('end',name))
                       parser.CharacterDataHandler = 
                          lambda data: target.send(('text',data))
                       parser.ParseFile(f)

               • expat is low-level (a C extension module)
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       70
Performance Contest
             • SAX version (on a 30MB XML input)
                    xml.sax.parse(quot;allroutes.xmlquot;,EventHandler(
                        buses_to_dicts(
                        filter_on_field(quot;routequot;,quot;22quot;,                           8.37s
                        filter_on_field(quot;directionquot;,quot;North Boundquot;,
                        bus_locations())))))


               • Expat version
                      expat_parse(open(quot;allroutes.xmlquot;),
                          buses_to_dicts(
                          filter_on_field(quot;routequot;,quot;22quot;,                         4.51s
                          filter_on_field(quot;directionquot;,quot;North Boundquot;,         (83% speedup)
                          bus_locations()))))


               • No changes to the processing stages
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                     71




                                              Going Lower
             • You can even drop send() operations into C
             • A skeleton of how this works...                  cxml/cxmlparse.c
                      PyObject *
                      py_parse(PyObject *self, PyObject *args) {
                          PyObject *filename;
                          PyObject *target;
                          PyObject *send_method;
                          if (!PyArg_ParseArgs(args,quot;sOquot;,&filename,&target)) {
                               return NULL;
                          }
                          send_method = PyObject_GetAttrString(target,quot;sendquot;);
                          ...

                               /* Invoke target.send(item) */
                               args   = Py_BuildValue(quot;(O)quot;,item);
                               result = PyEval_CallObject(send_meth,args);
                               ...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                     72
Performance Contest
              • Expat version
                     expat_parse(open(quot;allroutes.xmlquot;),
                         buses_to_dicts(
                         filter_on_field(quot;routequot;,quot;22quot;,                     4.51s
                         filter_on_field(quot;directionquot;,quot;North Boundquot;,
                         bus_locations())))))


              • A custom C extension written directly on top
                     of the expat C library (code not shown)
                     cxmlparse.parse(quot;allroutes.xmlquot;,
                         buses_to_dicts(
                         filter_on_field(quot;routequot;,quot;22quot;,                     2.95s
                         filter_on_field(quot;directionquot;,quot;North Boundquot;,
                         bus_locations())))))                           (55% speedup)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                73




                                                           Interlude
             • ElementTree has fast incremental XML parsing
                  from xml.etree.cElementTree import iterparse         iterbus.py

                  for event,elem in iterparse(quot;allroutes.xmlquot;,('start','end')):
                      if event == 'start' and elem.tag == 'buses':
                          buses = elem
                      elif event == 'end' and elem.tag == 'bus':
                          busdict = dict((child.tag,child.text)
                                          for child in elem)
                          if (busdict['route'] == '22' and
                              busdict['direction'] == 'North Bound'):
                              print quot;%(id)s,%(route)s,quot;%(direction)squot;,quot;
                                    quot;%(latitude)s,%(longitude)squot; % busdict
                          buses.remove(elem)
                                                                          3.04s

               • Observe: Coroutines are in the same range
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                74
Part 4
              From Data Processing to Concurrent Programming




Copyright (C) 2009, David Beazley, http://www.dabeaz.com            75




                                   The Story So Far
             • Coroutines are similar to generators
             • You can create collections of small processing
                    components and connect them together
             • You can process data by setting up pipelines,
                    dataflow graphs, etc.
             • You can use coroutines with code that has
                    tricky execution (e.g., event driven systems)
             • However, there is so much more going on...
Copyright (C) 2009, David Beazley, http://www.dabeaz.com            76
A Common Theme

                • You send data to coroutines
                • You send data to threads (via queues)
                • You send data to processes (via messages)
                • Coroutines naturally tie into problems
                        involving threads and distributed systems.



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                               77




                              Basic Concurrency
                • You can package coroutines inside threads or
                        subprocesses by adding extra layers
                                                                   Thread                 Host

                                                                    coroutine    socket    coroutine
                                                           queue
                               Thread
                        queue
    source                          coroutine                        coroutine

                                                            pipe
                                                                    Subprocess

                                                                     coroutine



                   • Will sketch out some basic ideas...
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                               78
A Threaded Target
                 @coroutine                                            cothread.py
                 def threaded(target):
                     messages = Queue()
                     def run_target():
                          while True:
                              item = messages.get()
                              if item is GeneratorExit:
                                  target.close()
                                  return
                              else:
                                  target.send(item)
                     Thread(target=run_target).start()
                     try:
                          while True:
                              item = (yield)
                              messages.put(item)
                     except GeneratorExit:
                          messages.put(GeneratorExit)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         79




                                A Threaded Target
                 @coroutine
                 def threaded(target):
                     messages = Queue()              A message queue
                     def run_target():
                          while True:
                              item = messages.get()
                              if item is GeneratorExit:
                                  target.close()
                                  return
                              else:
                                  target.send(item)
                     Thread(target=run_target).start()
                     try:
                          while True:
                              item = (yield)
                              messages.put(item)
                     except GeneratorExit:
                          messages.put(GeneratorExit)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         80
A Threaded Target
                 @coroutine
                 def threaded(target):
                     messages = Queue()
                     def run_target():                           A thread. Loop
                          while True:                         forever, pulling items
                              item = messages.get()            out of the message
                              if item is GeneratorExit:        queue and sending
                                  target.close()               them to the target
                                  return
                              else:
                                  target.send(item)
                     Thread(target=run_target).start()
                     try:
                          while True:
                              item = (yield)
                              messages.put(item)
                     except GeneratorExit:
                          messages.put(GeneratorExit)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                               81




                                A Threaded Target
                 @coroutine
                 def threaded(target):
                     messages = Queue()
                     def run_target():
                         while True:
                             item = messages.get()
                             if item is GeneratorExit:
                                 target.close()
                                 return
                             else:
                                 target.send(item)
                     Thread(target=run_target).start()
                     try:
                         while True:
                             item = (yield)              Receive items and
                             messages.put(item)          pass them into the
                     except GeneratorExit:             thread (via the queue)
                         messages.put(GeneratorExit)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                               82
A Threaded Target
                 @coroutine
                 def threaded(target):
                     messages = Queue()
                     def run_target():
                          while True:
                              item = messages.get()
                              if item is GeneratorExit:
                                  target.close()
                                  return
                              else:                           Handle close() so
                                  target.send(item)         that the thread shuts
                     Thread(target=run_target).start()         down correctly
                     try:
                          while True:
                              item = (yield)
                              messages.put(item)
                     except GeneratorExit:
                          messages.put(GeneratorExit)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                            83




                                A Thread Example
             • Example of hooking things up
                   xml.sax.parse(quot;allroutes.xmlquot;, EventHandler(
                        buses_to_dicts(
                        threaded(
                           filter_on_field(quot;routequot;,quot;22quot;,
                           filter_on_field(quot;directionquot;,quot;North Boundquot;,
                           bus_locations()))
                        ))))


             • A caution: adding threads makes this example
                    run about 50% slower.


Copyright (C) 2009, David Beazley, http://www.dabeaz.com                            84
A Picture
                • Here is an overview of the last example
                  Main Program
                      xml.sax.parse


                      EventHandler
                                                               Thread

                      buses_to_dicts                             filter_on_field


                                                                 filter_on_field


                                                                 bus_locations



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                      85




                          A Subprocess Target
                • Can also bridge two coroutines over a file/pipe
                       @coroutine                                                  coprocess.py
                       def sendto(f):
                           try:
                                while True:
                                    item = (yield)
                                    pickle.dump(item,f)
                                    f.flush()
                           except StopIteration:
                                f.close()

                       def recvfrom(f,target):
                           try:
                                while True:
                                    item = pickle.load(f)
                                    target.send(item)
                           except EOFError:
                                target.close()

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                      86
A Subprocess Target
                • High Level Picture
                                                           pipe/socket
                                  sendto()                                    recvfrom()
                                                pickle.dump()            pickle.load()



                 • Of course, the devil is in the details...
                 • You would not do this unless you can recover
                         the cost of the underlying communication
                         (e.g., you have multiple CPUs and there's
                         enough processing to make it worthwhile)
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                   87




       Implementation vs. Environ

                • With coroutines, you can separate the
                        implementation of a task from its execution
                        environment
                • The coroutine is the implementation
                • The environment is whatever you choose
                        (threads, subprocesses, network, etc.)



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                   88
A Caution
                • Creating huge collections of coroutines,
                       threads, and processes might be a good way to
                       create an unmaintainable application (although
                       it might increase your job security)
                • And it might make your program run slower!
                • You need to carefully study the problem to
                       know if any of this is a good idea



Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       89




                    Some Hidden Dangers

                • The send() method on a coroutine must be
                        properly synchronized
                • If you call send() on an already-executing
                        coroutine, your program will crash
                • Example : Multiple threads sending data into
                        the same target coroutine
                                                                  cocrash.py




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                       90
Limitations
                • You also can't create loops or cycles
                                                 send()                  send()
                        source                               coroutine              coroutine

                                                                                  send()


                • Stacked sends are building up a kind of call-stack
                       (send() doesn't return until the target yields)
                • If you call a coroutine that's already in the
                       process of sending, you'll get an error
                • send() doesn't suspend coroutine execution
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        91




                                                             Part 5
                                                           Coroutines as Tasks




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                        92
The Task Concept
            • In concurrent programming, one typically
                    subdivides problems into quot;tasksquot;
            • Tasks have a few essential features
                 • Independent control flow
                 • Internal state
                 • Can be scheduled (suspended/resumed)
                 • Can communicate with other tasks
            • Claim : Coroutines are tasks
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                        93




                    Are Coroutines Tasks?
           • Let's look at the essential parts
           • Coroutines have their own control flow.
                            @coroutine
                            def grep(pattern):                     statements
                                print quot;Looking for %squot; % pattern
                                while True:
                                    line = (yield)
                                    if pattern in line:
                                        print line,


           • A coroutine is just a sequence of statements like
                   any other Python function

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                        94
Are Coroutines Tasks?
           • Coroutines have their internal own state
           • For example : local variables
                              @coroutine
                              def grep(pattern):
                                  print quot;Looking for %squot; % pattern
                                  while True:
          locals                      line = (yield)
                                      if pattern in line:
                                          print line,


           • The locals live as long as the coroutine is active
           • They establish an execution environment
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                  95




                    Are Coroutines Tasks?
             • Coroutines can communicate
             • The .send() method sends data to a coroutine
                                @coroutine
                                def grep(pattern):
                                    print quot;Looking for %squot; % pattern
                                    while True:
                                        line = (yield)        send(msg)
                                        if pattern in line:
                                            print line,

             • yield expressions receive input
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                  96
Are Coroutines Tasks?

                   • Coroutines can be suspended and resumed
                   • yield suspends execution
                   • send() resumes execution
                   • close() terminates execution


Copyright (C) 2009, David Beazley, http://www.dabeaz.com           97




                                           I'm Convinced
                 • Very clearly, coroutines look like tasks
                 • But they're not tied to threads
                 • Or subprocesses
                 • A question : Can you perform multitasking
                         without using either of those concepts?
                 • Multitasking using nothing but coroutines?

Copyright (C) 2009, David Beazley, http://www.dabeaz.com           98
Part 6
                                A Crash Course in Operating Systems




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                            99




                             Program Execution
           • On a CPU, a program is a series of instructions
                                                                 _main:
      int main() {                                                        pushl   %ebp
        int i, total = 0;
        for (i = 0; i < 10; i++)
                                                            cc            movl
                                                                          subl
                                                                                  %esp, %ebp
                                                                                  $24, %esp
        {                                                                 movl    $0, -12(%ebp)
          total += i;                                                     movl    $0, -16(%ebp)
        }                                                                 jmp     L2
      }                                                          L3:
                                                                          movl    -16(%ebp), %eax

          • When running, there                                           leal
                                                                          addl
                                                                                  -12(%ebp), %edx
                                                                                  %eax, (%edx)
                 is no notion of doing                                    leal    -16(%ebp), %eax
                                                                          incl    (%eax)
                 more than one thing                             L2:
                 at a time (or any kind                                   cmpl
                                                                          jle
                                                                                  $9, -16(%ebp)
                                                                                  L3
                 of task switching)                                       leave
                                                                          ret
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                            100
The Multitasking Problem

              • CPUs don't know anything about multitasking
              • Nor do application programs
              • Well, surely something has to know about it!
              • Hint: It's the operating system

Copyright (C) 2009, David Beazley, http://www.dabeaz.com         101




                              Operating Systems
            • As you hopefully know, the operating system
                    (e.g., Linux, Windows) is responsible for
                    running programs on your machine
            • And as you have observed, the operating
                    system does allow more than one process to
                    execute at once (e.g., multitasking)
            • It does this by rapidly switching between tasks
            • Question : How does it do that?
Copyright (C) 2009, David Beazley, http://www.dabeaz.com         102
A Conundrum

          • When a CPU is running your program, it is not
                  running the operating system
          • Question: How does the operating system
                  (which is not running) make an application
                  (which is running) switch to another task?
          • The quot;context-switchingquot; problem...

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          103




                           Interrupts and Traps
          • There are usually only two mechanisms that an
                  operating system uses to gain control
                          • Interrupts - Some kind of hardware related
                                  signal (data received, timer, keypress, etc.)
                          • Traps - A software generated signal
          • In both cases, the CPU briefly suspends what it is
                  doing, and runs code that's part of the OS
          • It is at this time the OS might switch tasks
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          104
Traps and System Calls
             • Low-level system calls are actually traps
             • It is a special CPU instruction
                     read(fd,buf,nbytes)                                 read:
                                                                              push %ebx
                                                                              mov 0x10(%esp),%edx

             • When a trap instruction
                                                                              mov 0xc(%esp),%ecx
                                                                              mov 0x8(%esp),%ebx
                                                                              mov $0x3,%eax
                    executes, the program                                     int $0x80         trap
                    suspends execution at                                     pop %ebx
                                                                              ...
                    that point
             • And the OS takes over
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                               105




                        High Level Overview
              • Traps are what make an OS work
              • The OS drops your program on the CPU
              • It runs until it hits a trap (system call)
              • The program suspends and the OS runs
              • Repeat
                                           trap                   trap trap

                                   run                     run       run         run

                                                           OS executes
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                               106
Task Switching
              • Here's what typically happens when an
                      OS runs multiple tasks.
                                          trap                             trap                        trap
       Task A:                                                                                   run
                                  run                                run

                        task switch
                                                            trap                        trap
       Task B:
                                                      run                         run


              • On each trap, the system switches to a
                      different task (cycling between them)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                       107




                                       Task Scheduling
            • To run many tasks, add a bunch of queues
                         Ready Queue                                                           Running

                                task                 task          task                   task          task

                                                                                          CPU          CPU
                                               Wait Queues
                                                                                                   Traps
                                                     task      task

                                                     task

                                                     task      task        task

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                                       108
An Insight
             • The yield statement is a kind of quot;trapquot;
             • No really!
             • When a generator function hits a quot;yieldquot;
                     statement, it immediately suspends execution
             • Control is passed back to whatever code
                     made the generator function run (unseen)
             • If you treat yield as a trap, you can build a
                     multitasking quot;operating systemquot;--all in Python!

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                 109




                                                           Part 7
                                         Let's Build an Operating System
                                  (You may want to put on your 5-point safety harness)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                 110
Our Challenge
             • Build a multitasking quot;operating systemquot;
             • Use nothing but pure Python code
             • No threads
             • No subprocesses
             • Use generators/coroutines

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                   111




                                   Some Motivation
             • There has been a lot of recent interest in
                     alternatives to threads (especially due to the GIL)
             • Non-blocking and asynchronous I/O
             • Example: servers capable of supporting
                     thousands of simultaneous client connections
             • A lot of work has focused on event-driven
                     systems or the quot;Reactor Modelquot; (e.g., Twisted)
             • Coroutines are a whole different twist...
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                   112
Step 1: Define Tasks
               • A task object
                       class Task(object):                             pyos1.py
                           taskid = 0
                           def __init__(self,target):
                               Task.taskid += 1
                               self.tid     = Task.taskid   # Task ID
                               self.target = target         # Target coroutine
                               self.sendval = None          # Value to send
                           def run(self):
                               return self.target.send(self.sendval)


               • A task is a wrapper around a coroutine
               • There is only one operation : run()
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          113




                                             Task Example
               • Here is how this wrapper behaves
                        # A very simple generator
                        def foo():
                            print quot;Part 1quot;
                            yield
                            print quot;Part 2quot;
                            yield

                        >>> t1 = Task(foo())               # Wrap in a Task
                        >>> t1.run()
                        Part 1
                        >>> t1.run()
                        Part 2
                        >>>


               • run() executes the task to the next yield (a trap)
Copyright (C) 2009, David Beazley, http://www.dabeaz.com                          114
Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):                                            pyos2.py
                  self.ready   = Queue()
                  self.taskmap = {}

                   def new(self,target):
                       newtask = Task(target)
                       self.taskmap[newtask.tid] = newtask
                       self.schedule(newtask)
                       return newtask.tid

                   def schedule(self,task):
                       self.ready.put(task)

                   def mainloop(self):
                       while self.taskmap:
                           task = self.ready.get()
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                115




                       Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):
                  self.ready   = Queue()
                                                           A queue of tasks that
                  self.taskmap = {}                          are ready to run
                   def new(self,target):
                       newtask = Task(target)
                       self.taskmap[newtask.tid] = newtask
                       self.schedule(newtask)
                       return newtask.tid

                   def schedule(self,task):
                       self.ready.put(task)

                   def mainloop(self):
                       while self.taskmap:
                           task = self.ready.get()
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                116
Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):
                  self.ready   = Queue()
                  self.taskmap = {}
                                                             Introduces a new task
                   def new(self,target):
                       newtask = Task(target)
                                                                to the scheduler
                       self.taskmap[newtask.tid] = newtask
                       self.schedule(newtask)
                       return newtask.tid

                   def schedule(self,task):
                       self.ready.put(task)

                   def mainloop(self):
                       while self.taskmap:
                           task = self.ready.get()
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             117




                       Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):
                  self.ready   = Queue()
                  self.taskmap = {}
                                                                A dictionary that
                   def new(self,target):                        keeps track of all
                       newtask = Task(target)
                       self.taskmap[newtask.tid] = newtask      active tasks (each
                       self.schedule(newtask)                   task has a unique
                       return newtask.tid                        integer task ID)
                   def schedule(self,task):
                       self.ready.put(task)                        (more later)
                   def mainloop(self):
                       while self.taskmap:
                           task = self.ready.get()
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                             118
Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):
                  self.ready   = Queue()
                  self.taskmap = {}

                   def new(self,target):
                       newtask = Task(target)
                       self.taskmap[newtask.tid] = newtask
                       self.schedule(newtask)
                       return newtask.tid
                                                           Put a task onto the
                   def schedule(self,task):                 ready queue. This
                       self.ready.put(task)                 makes it available
                   def mainloop(self):                           to run.
                       while self.taskmap:
                           task = self.ready.get()
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                      119




                       Step 2: The Scheduler
          class Scheduler(object):
              def __init__(self):
                  self.ready   = Queue()
                  self.taskmap = {}

                   def new(self,target):
                       newtask = Task(target)
                       self.taskmap[newtask.tid] = newtask
                       self.schedule(newtask)
                       return newtask.tid

                   def schedule(self,task):
                       self.ready.put(task)                       The main scheduler
                   def mainloop(self):                         loop. It pulls tasks off the
                       while self.taskmap:                      queue and runs them to
                           task = self.ready.get()                   the next yield.
                           result = task.run()
                           self.schedule(task)

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                                      120
First Multitasking
               • Two tasks:
                        def foo():
                            while True:
                                print quot;I'm fooquot;
                                yield

                        def bar():
                            while True:
                                print quot;I'm barquot;
                                yield

               • Running them into the scheduler
                        sched = Scheduler()
                        sched.new(foo())
                        sched.new(bar())
                        sched.mainloop()



Copyright (C) 2009, David Beazley, http://www.dabeaz.com       121




                                   First Multitasking
              • Example output:
                       I'm       foo
                       I'm       bar
                       I'm       foo
                       I'm       bar
                       I'm       foo
                       I'm       bar


              • Emphasize: yield is a trap
              • Each task runs until it hits the yield
              • At this point, the scheduler regains control
                     and switches to the other task

Copyright (C) 2009, David Beazley, http://www.dabeaz.com       122
Problem : Task Termination
             • The scheduler crashes if a task returns
                        def foo():                                    taskcrash.py
                            for i in xrange(10):
                                print quot;I'm fooquot;
                                yield
                        ...
                        I'm foo
                        I'm bar
                        I'm foo
                        I'm bar
                        Traceback (most recent call last):
                          File quot;crash.pyquot;, line 20, in <module>
                            sched.mainloop()
                          File quot;scheduler.pyquot;, line 26, in mainloop
                            result = task.run()
                          File quot;task.pyquot;, line 13, in run
                            return self.target.send(self.sendval)
                        StopIteration

Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         123




                                      Step 3: Task Exit
          class Scheduler(object):                                       pyos3.py
              ...
              def exit(self,task):
                  print quot;Task %d terminatedquot; % task.tid
                  del self.taskmap[task.tid]
              ...
              def mainloop(self):
                   while self.taskmap:
                      task = self.ready.get()
                      try:
                           result = task.run()
                      except StopIteration:
                           self.exit(task)
                           continue
                      self.schedule(task)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                         124
Step 3: Task Exit
                                                           Remove the task
          class Scheduler(object):                  from      the scheduler's
              ...
              def exit(self,task):                            task map
                  print quot;Task %d terminatedquot; % task.tid
                  del self.taskmap[task.tid]
              ...
              def mainloop(self):
                   while self.taskmap:
                      task = self.ready.get()
                      try:
                           result = task.run()
                      except StopIteration:
                           self.exit(task)
                           continue
                      self.schedule(task)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                        125




                                      Step 3: Task Exit
          class Scheduler(object):
              ...
              def exit(self,task):
                  print quot;Task %d terminatedquot; % task.tid
                  del self.taskmap[task.tid]
              ...
              def mainloop(self):
                   while self.taskmap:
                      task = self.ready.get()
                      try:
                          result = task.run()         Catch task exit     and
                      except StopIteration:
                          self.exit(task)                  cleanup
                          continue
                      self.schedule(task)




Copyright (C) 2009, David Beazley, http://www.dabeaz.com                        126
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency
A Curious Course on Coroutines and Concurrency

Mais conteúdo relacionado

Mais procurados

Collec+Ive Master
Collec+Ive MasterCollec+Ive Master
Collec+Ive Masterproducer
 
2010 Honda Insight Hybrid San Fernando
2010 Honda Insight Hybrid San Fernando2010 Honda Insight Hybrid San Fernando
2010 Honda Insight Hybrid San FernandoMiller Honda
 
2010 Honda Insight Hybrid Boston
2010 Honda  Insight Hybrid Boston2010 Honda  Insight Hybrid Boston
2010 Honda Insight Hybrid BostonAtamian Honda
 
newmont mining Octavo_Symposium_Final_5_15_08
newmont mining Octavo_Symposium_Final_5_15_08newmont mining Octavo_Symposium_Final_5_15_08
newmont mining Octavo_Symposium_Final_5_15_08finance37
 
iPhy tools for collation and analysis of phylogenomic data. M Blaxter
iPhy tools for collation and analysis of phylogenomic data. M BlaxteriPhy tools for collation and analysis of phylogenomic data. M Blaxter
iPhy tools for collation and analysis of phylogenomic data. M BlaxterRoderic Page
 
Aesop's garden presentation
Aesop's garden presentationAesop's garden presentation
Aesop's garden presentationAsh Maurya
 
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...Human Capital Media
 
Rosetta 2032 (Alternate Reality in the classroom)
Rosetta 2032 (Alternate Reality in the classroom)Rosetta 2032 (Alternate Reality in the classroom)
Rosetta 2032 (Alternate Reality in the classroom)Andrew Jeppesen
 
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...Hernan Sagastegui Chigne
 

Mais procurados (18)

Collec+Ive Master
Collec+Ive MasterCollec+Ive Master
Collec+Ive Master
 
Site analysis
Site analysisSite analysis
Site analysis
 
DesignS Brand Concept
DesignS Brand ConceptDesignS Brand Concept
DesignS Brand Concept
 
2010 Honda Insight Hybrid San Fernando
2010 Honda Insight Hybrid San Fernando2010 Honda Insight Hybrid San Fernando
2010 Honda Insight Hybrid San Fernando
 
File2 1
File2 1File2 1
File2 1
 
2010 Honda Insight Hybrid Boston
2010 Honda  Insight Hybrid Boston2010 Honda  Insight Hybrid Boston
2010 Honda Insight Hybrid Boston
 
newmont mining Octavo_Symposium_Final_5_15_08
newmont mining Octavo_Symposium_Final_5_15_08newmont mining Octavo_Symposium_Final_5_15_08
newmont mining Octavo_Symposium_Final_5_15_08
 
Yhteys2009
Yhteys2009Yhteys2009
Yhteys2009
 
3iying Final Heidi
3iying Final Heidi3iying Final Heidi
3iying Final Heidi
 
1
11
1
 
Enhancing benefits from aquatic ecosystems: Nakambe sub-basin Case study
Enhancing benefits from aquatic ecosystems: Nakambe sub-basin Case studyEnhancing benefits from aquatic ecosystems: Nakambe sub-basin Case study
Enhancing benefits from aquatic ecosystems: Nakambe sub-basin Case study
 
iPhy tools for collation and analysis of phylogenomic data. M Blaxter
iPhy tools for collation and analysis of phylogenomic data. M BlaxteriPhy tools for collation and analysis of phylogenomic data. M Blaxter
iPhy tools for collation and analysis of phylogenomic data. M Blaxter
 
Presentation
PresentationPresentation
Presentation
 
Heart Tarsia
Heart TarsiaHeart Tarsia
Heart Tarsia
 
Aesop's garden presentation
Aesop's garden presentationAesop's garden presentation
Aesop's garden presentation
 
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...
Enterprise Collaboration: Can You Connect Social Learning and Business Perfor...
 
Rosetta 2032 (Alternate Reality in the classroom)
Rosetta 2032 (Alternate Reality in the classroom)Rosetta 2032 (Alternate Reality in the classroom)
Rosetta 2032 (Alternate Reality in the classroom)
 
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...
Informal Learning Evidence in Online Communities of Mobile Device Enthusiasts...
 

Destaque

EventDrivenArchitecture
EventDrivenArchitectureEventDrivenArchitecture
EventDrivenArchitectureHiroshi Ono
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdfHiroshi Ono
 
Gamecenter概説
Gamecenter概説Gamecenter概説
Gamecenter概説Hiroshi Ono
 
nodalities_issue7.pdf
nodalities_issue7.pdfnodalities_issue7.pdf
nodalities_issue7.pdfHiroshi Ono
 
kademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfkademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfHiroshi Ono
 
genpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfgenpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfHiroshi Ono
 
Voltdb - wikipedia
Voltdb - wikipediaVoltdb - wikipedia
Voltdb - wikipediaHiroshi Ono
 

Destaque (7)

EventDrivenArchitecture
EventDrivenArchitectureEventDrivenArchitecture
EventDrivenArchitecture
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdf
 
Gamecenter概説
Gamecenter概説Gamecenter概説
Gamecenter概説
 
nodalities_issue7.pdf
nodalities_issue7.pdfnodalities_issue7.pdf
nodalities_issue7.pdf
 
kademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfkademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdf
 
genpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfgenpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdf
 
Voltdb - wikipedia
Voltdb - wikipediaVoltdb - wikipedia
Voltdb - wikipedia
 

Semelhante a A Curious Course on Coroutines and Concurrency

2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los AngelesMiller Honda
 
2010 Honda Insight Hybrid San Leandro
2010 Honda Insight Hybrid San Leandro2010 Honda Insight Hybrid San Leandro
2010 Honda Insight Hybrid San LeandroSan Leandro Honda
 
2010 Honda Insight Boston
2010 Honda Insight Boston2010 Honda Insight Boston
2010 Honda Insight BostonAtamian Honda
 
2010 Honda Insight Hybrid Jackson
2010 Honda Insight Hybrid Jackson2010 Honda Insight Hybrid Jackson
2010 Honda Insight Hybrid JacksonPaul Moak Honda
 
2010 Honda Insight Hybrid Virginia Beach
2010 Honda Insight Hybrid Virginia Beach2010 Honda Insight Hybrid Virginia Beach
2010 Honda Insight Hybrid Virginia BeachCheckered Flag Honda
 
2010 Honda Insight Hybrid Omaha Nebraska
2010 Honda Insight Hybrid Omaha Nebraska2010 Honda Insight Hybrid Omaha Nebraska
2010 Honda Insight Hybrid Omaha NebraskaHonda Cars of Bellevue
 
2010 insight-hybrid-brochure-honda-katy-houston-tx
2010 insight-hybrid-brochure-honda-katy-houston-tx2010 insight-hybrid-brochure-honda-katy-houston-tx
2010 insight-hybrid-brochure-honda-katy-houston-txHonda Cars of Katy
 
2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula
 2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula 2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula
2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of TemeculaDCH Honda of Temecula
 
2010 insight-hybrid-brochure
2010 insight-hybrid-brochure2010 insight-hybrid-brochure
2010 insight-hybrid-brochureBurbank Honda
 
2010 insight-hybrid-brochure-honda-dallas-tx
2010 insight-hybrid-brochure-honda-dallas-tx2010 insight-hybrid-brochure-honda-dallas-tx
2010 insight-hybrid-brochure-honda-dallas-txJohn Eagle Honda Dallas
 
2010 Insight Hybrid Brochure-Richards Honda Baton Rouge
2010 Insight Hybrid Brochure-Richards Honda Baton Rouge2010 Insight Hybrid Brochure-Richards Honda Baton Rouge
2010 Insight Hybrid Brochure-Richards Honda Baton RougeRichards Honda
 
2010 insight-hybrid-brochure-honda-panama-city-florida
2010 insight-hybrid-brochure-honda-panama-city-florida2010 insight-hybrid-brochure-honda-panama-city-florida
2010 insight-hybrid-brochure-honda-panama-city-floridaHonda of Panama City
 
ete2009-jquery-success-ete-1
ete2009-jquery-success-ete-1ete2009-jquery-success-ete-1
ete2009-jquery-success-ete-1tutorialsruby
 
2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los AngelesMiller Honda Van Nuys
 
2010 Honda Insight Hybrid Portland
2010 Honda Insight Hybrid Portland2010 Honda Insight Hybrid Portland
2010 Honda Insight Hybrid PortlandGriffith Honda
 
Matt copeland: a snapshot.
Matt copeland: a snapshot.Matt copeland: a snapshot.
Matt copeland: a snapshot.Matthew Copeland
 

Semelhante a A Curious Course on Coroutines and Concurrency (20)

2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles
 
2010 Honda Insight Hybrid San Leandro
2010 Honda Insight Hybrid San Leandro2010 Honda Insight Hybrid San Leandro
2010 Honda Insight Hybrid San Leandro
 
Soffer CollectIve Master
Soffer CollectIve MasterSoffer CollectIve Master
Soffer CollectIve Master
 
2010 Honda Insight Boston
2010 Honda Insight Boston2010 Honda Insight Boston
2010 Honda Insight Boston
 
2010 Honda Insight Hybrid Jackson
2010 Honda Insight Hybrid Jackson2010 Honda Insight Hybrid Jackson
2010 Honda Insight Hybrid Jackson
 
2010 Honda Insight Hybrid Virginia Beach
2010 Honda Insight Hybrid Virginia Beach2010 Honda Insight Hybrid Virginia Beach
2010 Honda Insight Hybrid Virginia Beach
 
2010 Honda Insight Hybrid Omaha Nebraska
2010 Honda Insight Hybrid Omaha Nebraska2010 Honda Insight Hybrid Omaha Nebraska
2010 Honda Insight Hybrid Omaha Nebraska
 
2010 insight-hybrid-brochure-honda-katy-houston-tx
2010 insight-hybrid-brochure-honda-katy-houston-tx2010 insight-hybrid-brochure-honda-katy-houston-tx
2010 insight-hybrid-brochure-honda-katy-houston-tx
 
2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula
 2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula 2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula
2010 Honda Insight Hybrid Sedan Brochure | DCH Honda of Temecula
 
2010 insight-hybrid-brochure
2010 insight-hybrid-brochure2010 insight-hybrid-brochure
2010 insight-hybrid-brochure
 
2010 insight-hybrid-brochure-honda-dallas-tx
2010 insight-hybrid-brochure-honda-dallas-tx2010 insight-hybrid-brochure-honda-dallas-tx
2010 insight-hybrid-brochure-honda-dallas-tx
 
Austin Honda Insight Brochure 2010
Austin Honda Insight Brochure 2010Austin Honda Insight Brochure 2010
Austin Honda Insight Brochure 2010
 
2010 Insight Hybrid Brochure-Richards Honda Baton Rouge
2010 Insight Hybrid Brochure-Richards Honda Baton Rouge2010 Insight Hybrid Brochure-Richards Honda Baton Rouge
2010 Insight Hybrid Brochure-Richards Honda Baton Rouge
 
2010 insight-hybrid-brochure-honda-panama-city-florida
2010 insight-hybrid-brochure-honda-panama-city-florida2010 insight-hybrid-brochure-honda-panama-city-florida
2010 insight-hybrid-brochure-honda-panama-city-florida
 
ete2009-jquery-success-ete-1
ete2009-jquery-success-ete-1ete2009-jquery-success-ete-1
ete2009-jquery-success-ete-1
 
Resume Draft
Resume DraftResume Draft
Resume Draft
 
2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles2010 Honda Insight Hybrid Los Angeles
2010 Honda Insight Hybrid Los Angeles
 
2010 Honda Insight Hybrid Portland
2010 Honda Insight Hybrid Portland2010 Honda Insight Hybrid Portland
2010 Honda Insight Hybrid Portland
 
Hit a Grand Slam with Legal Research
Hit a Grand Slam with Legal ResearchHit a Grand Slam with Legal Research
Hit a Grand Slam with Legal Research
 
Matt copeland: a snapshot.
Matt copeland: a snapshot.Matt copeland: a snapshot.
Matt copeland: a snapshot.
 

Mais de Hiroshi Ono

pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
downey08semaphores.pdf
downey08semaphores.pdfdowney08semaphores.pdf
downey08semaphores.pdfHiroshi Ono
 
BOF1-Scala02.pdf
BOF1-Scala02.pdfBOF1-Scala02.pdf
BOF1-Scala02.pdfHiroshi Ono
 
TwitterOct2008.pdf
TwitterOct2008.pdfTwitterOct2008.pdf
TwitterOct2008.pdfHiroshi Ono
 
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfstateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfHiroshi Ono
 
SACSIS2009_TCP.pdf
SACSIS2009_TCP.pdfSACSIS2009_TCP.pdf
SACSIS2009_TCP.pdfHiroshi Ono
 
scalaliftoff2009.pdf
scalaliftoff2009.pdfscalaliftoff2009.pdf
scalaliftoff2009.pdfHiroshi Ono
 
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfstateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfHiroshi Ono
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdfHiroshi Ono
 
nodalities_issue7.pdf
nodalities_issue7.pdfnodalities_issue7.pdf
nodalities_issue7.pdfHiroshi Ono
 
genpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfgenpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfHiroshi Ono
 
kademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfkademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfHiroshi Ono
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfHiroshi Ono
 
downey08semaphores.pdf
downey08semaphores.pdfdowney08semaphores.pdf
downey08semaphores.pdfHiroshi Ono
 
BOF1-Scala02.pdf
BOF1-Scala02.pdfBOF1-Scala02.pdf
BOF1-Scala02.pdfHiroshi Ono
 
TwitterOct2008.pdf
TwitterOct2008.pdfTwitterOct2008.pdf
TwitterOct2008.pdfHiroshi Ono
 
pamphlet_honsyou.pdf
pamphlet_honsyou.pdfpamphlet_honsyou.pdf
pamphlet_honsyou.pdfHiroshi Ono
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdfHiroshi Ono
 

Mais de Hiroshi Ono (20)

pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
downey08semaphores.pdf
downey08semaphores.pdfdowney08semaphores.pdf
downey08semaphores.pdf
 
BOF1-Scala02.pdf
BOF1-Scala02.pdfBOF1-Scala02.pdf
BOF1-Scala02.pdf
 
TwitterOct2008.pdf
TwitterOct2008.pdfTwitterOct2008.pdf
TwitterOct2008.pdf
 
camel-scala.pdf
camel-scala.pdfcamel-scala.pdf
camel-scala.pdf
 
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfstateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
 
SACSIS2009_TCP.pdf
SACSIS2009_TCP.pdfSACSIS2009_TCP.pdf
SACSIS2009_TCP.pdf
 
scalaliftoff2009.pdf
scalaliftoff2009.pdfscalaliftoff2009.pdf
scalaliftoff2009.pdf
 
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdfstateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
stateyouredoingitwrongjavaone2009-090617031310-phpapp02.pdf
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdf
 
nodalities_issue7.pdf
nodalities_issue7.pdfnodalities_issue7.pdf
nodalities_issue7.pdf
 
genpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdfgenpaxospublic-090703114743-phpapp01.pdf
genpaxospublic-090703114743-phpapp01.pdf
 
kademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdfkademlia-1227143905867010-8.pdf
kademlia-1227143905867010-8.pdf
 
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdfpragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
pragmaticrealworldscalajfokus2009-1233251076441384-2.pdf
 
downey08semaphores.pdf
downey08semaphores.pdfdowney08semaphores.pdf
downey08semaphores.pdf
 
BOF1-Scala02.pdf
BOF1-Scala02.pdfBOF1-Scala02.pdf
BOF1-Scala02.pdf
 
TwitterOct2008.pdf
TwitterOct2008.pdfTwitterOct2008.pdf
TwitterOct2008.pdf
 
pamphlet_honsyou.pdf
pamphlet_honsyou.pdfpamphlet_honsyou.pdf
pamphlet_honsyou.pdf
 
camel-scala.pdf
camel-scala.pdfcamel-scala.pdf
camel-scala.pdf
 
program_draft3.pdf
program_draft3.pdfprogram_draft3.pdf
program_draft3.pdf
 

Último

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 

Último (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 

A Curious Course on Coroutines and Concurrency

  • 1. A Curious Course on Coroutines and Concurrency David Beazley http://www.dabeaz.com Presented at PyCon'2009, Chicago, Illinois Copyright (C) 2009, David Beazley, http://www.dabeaz.com 1 This Tutorial • A mondo exploration of Python coroutines mondo: 1. Extreme in degree or nature. (http://www.urbandictionary.com) 2. An instructional technique of Zen Buddhism consisting of rapid dialogue of questions and answers between master and pupil. (Oxford English Dictionary, 2nd Ed) • You might want to brace yourself... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 2
  • 2. Requirements • You need Python 2.5 or newer • No third party extensions • We're going to be looking at a lot of code http://www.dabeaz.com/coroutines/ • Go there and follow along with the examples • I will indicate file names as appropriate sample.py Copyright (C) 2009, David Beazley, http://www.dabeaz.com 3 High Level Overview • What in the heck is a coroutine? • What can you use them for? • Should you care? • Is using them even a good idea? Copyright (C) 2009, David Beazley, http://www.dabeaz.com 4
  • 3. A Pictorial Overview Killer Head Explosion Index Joke Throbbing Headache You are End here te ing ds t H ing es e T ng er a m asks s or ea tin ys sk li s So and at es hr m T g s ita u er as c ro in lt ro en Co at u es m aP G en in to at ut Ev op e D in ro tro rit e ix Co W m In M So Copyright (C) 2009, David Beazley, http://www.dabeaz.com 5 About Me • I'm a long-time Pythonista • Author of the Python Essential Reference (look for the 4th edition--shameless plug) • Created several packages (Swig, PLY, etc.) • Currently a full-time Python trainer Copyright (C) 2009, David Beazley, http://www.dabeaz.com 6
  • 4. Some Background • I'm an unabashed fan of generators and generator expressions (Generators Rock!) • See quot;Generator Tricks for Systems Programmersquot; from PyCon'08 • http://www.dabeaz.com/generators Copyright (C) 2009, David Beazley, http://www.dabeaz.com 7 Coroutines and Generators • In Python 2.5, generators picked up some new features to allow quot;coroutinesquot; (PEP-342). • Most notably: a new send() method • If Python books are any guide, this is the most poorly documented, obscure, and apparently useless feature of Python. • quot;Oooh. You can now send values into generators producing fibonacci numbers!quot; Copyright (C) 2009, David Beazley, http://www.dabeaz.com 8
  • 5. Uses of Coroutines • Coroutines apparently might be possibly useful in various libraries and frameworks quot;It's all really quite simple. The toelet is connected to the footlet, and the footlet is connected to the anklelet, and the anklelet is connected to the leglet, and the is leglet connected to the is thighlet, and the thighlet is connected to the hiplet, and the is hiplet connected to the backlet, and the backlet is connected to the necklet, and the necklet is connected to the headlet, and ?????? ..... profit!quot; • Uh, I think my brain is just too small... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 9 Disclaimers • Coroutines - The most obscure Python feature? • Concurrency - One of the most difficult topics in computer science (usually best avoided) • This tutorial mixes them together • It might create a toxic cloud Copyright (C) 2009, David Beazley, http://www.dabeaz.com 10
  • 6. More Disclaimers • As a programmer of the 80s/90s, I've never used a programming language that had coroutines-- until they showed up in Python • Most of the groundwork for coroutines occurred in the 60s/70s and then stopped in favor of alternatives (e.g., threads, continuations) • I want to know if there is any substance to the renewed interest in coroutines that has been occurring in Python and other languages Copyright (C) 2009, David Beazley, http://www.dabeaz.com 11 Even More Disclaimers • I'm a neutral party • I didn't have anything to do with PEP-342 • I'm not promoting any libraries or frameworks • I have no religious attachment to the subject • If anything, I'm a little skeptical Copyright (C) 2009, David Beazley, http://www.dabeaz.com 12
  • 7. Final Disclaimers • This tutorial is not an academic presentation • No overview of prior art • No theory of programming languages • No proofs about locking • No Fibonacci numbers • Practical application is the main focus Copyright (C) 2009, David Beazley, http://www.dabeaz.com 13 Performance Details • There are some later performance numbers • Python 2.6.1 on OS X 10.4.11 • All tests were conducted on the following: • Mac Pro 2x2.66 Ghz Dual-Core Xeon • 3 Gbytes RAM • Timings are 3-run average of 'time' command Copyright (C) 2009, David Beazley, http://www.dabeaz.com 14
  • 8. Part I Introduction to Generators and Coroutines Copyright (C) 2009, David Beazley, http://www.dabeaz.com 15 Generators • A generator is a function that produces a sequence of results instead of a single value def countdown(n): countdown.py while n > 0: yield n n -= 1 >>> for i in countdown(5): ... print i, ... 5 4 3 2 1 >>> • Instead of returning a value, you generate a series of values (using the yield statement) • Typically, you hook it up to a for-loop 16 Copyright (C) 2009, David Beazley, http://www.dabeaz.com
  • 9. Generators • Behavior is quite different than normal func • Calling a generator function creates an generator object. However, it does not start running the function. def countdown(n): print quot;Counting down fromquot;, n while n > 0: yield n n -= 1 Notice that no output was >>> x = countdown(10) produced >>> x <generator object at 0x58490> >>> Copyright (C) 2009, David Beazley, http://www.dabeaz.com 17 Generator Functions • The function only executes on next() >>> x = countdown(10) >>> x <generator object at 0x58490> >>> x.next() Counting down from 10 Function starts 10 executing here >>> • yield produces a value, but suspends the function • Function resumes on next call to next() >>> x.next() 9 >>> x.next() 8 >>> Copyright (C) 2009, David Beazley, http://www.dabeaz.com 18
  • 10. Generator Functions • When the generator returns, iteration stops >>> x.next() 1 >>> x.next() Traceback (most recent call last): File quot;<stdin>quot;, line 1, in ? StopIteration >>> Copyright (C) 2009, David Beazley, http://www.dabeaz.com 19 A Practical Example • A Python version of Unix 'tail -f' import time follow.py def follow(thefile): thefile.seek(0,2) # Go to the end of the file while True: line = thefile.readline() if not line: time.sleep(0.1) # Sleep briefly continue yield line • Example use : Watch a web-server log file logfile = open(quot;access-logquot;) for line in follow(logfile): print line, Copyright (C) 2009, David Beazley, http://www.dabeaz.com 20
  • 11. Generators as Pipelines • One of the most powerful applications of generators is setting up processing pipelines • Similar to shell pipes in Unix input generator generator generator for x in s: sequence • Idea: You can stack a series of generator functions together into a pipe and pull items through it with a for-loop Copyright (C) 2009, David Beazley, http://www.dabeaz.com 21 A Pipeline Example • Print all server log entries containing 'python' def grep(pattern,lines): pipeline.py for line in lines: if pattern in line: yield line # Set up a processing pipe : tail -f | grep python logfile = open(quot;access-logquot;) loglines = follow(logfile) pylines = grep(quot;pythonquot;,loglines) # Pull results out of the processing pipeline for line in pylines: print line, • This is just a small taste Copyright (C) 2009, David Beazley, http://www.dabeaz.com 22
  • 12. Yield as an Expression • In Python 2.5, a slight modification to the yield statement was introduced (PEP-342) • You could now use yield as an expression • For example, on the right side of an assignment def grep(pattern): grep.py print quot;Looking for %squot; % pattern while True: line = (yield) if pattern in line: print line, • Question : What is its value? Copyright (C) 2009, David Beazley, http://www.dabeaz.com 23 Coroutines • If you use yield more generally, you get a coroutine • These do more than just generate values • Instead, functions can consume values sent to it. >>> g = grep(quot;pythonquot;) >>> g.next() # Prime it (explained shortly) Looking for python >>> g.send(quot;Yeah, but no, but yeah, but noquot;) >>> g.send(quot;A series of tubesquot;) >>> g.send(quot;python generators rock!quot;) python generators rock! >>> • Sent values are returned by (yield) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 24
  • 13. Coroutine Execution • Execution is the same as for a generator • When you call a coroutine, nothing happens • They only run in response to next() and send() methods Notice that no output was produced >>> g = grep(quot;pythonquot;) >>> g.next() Looking for python On first operation, >>> coroutine starts running Copyright (C) 2009, David Beazley, http://www.dabeaz.com 25 Coroutine Priming • All coroutines must be quot;primedquot; by first calling .next() (or send(None)) • This advances execution to the location of the first yield expression. def grep(pattern): print quot;Looking for %squot; % pattern while True: .next() advances the line = (yield) coroutine to the if pattern in line: first yield expression print line, • At this point, it's ready to receive a value Copyright (C) 2009, David Beazley, http://www.dabeaz.com 26
  • 14. Using a Decorator • Remembering to call .next() is easy to forget • Solved by wrapping coroutines with a decorator def coroutine(func): coroutine.py def start(*args,**kwargs): cr = func(*args,**kwargs) cr.next() return cr return start @coroutine def grep(pattern): ... • I will use this in most of the future examples Copyright (C) 2009, David Beazley, http://www.dabeaz.com 27 Closing a Coroutine • A coroutine might run indefinitely • Use .close() to shut it down >>> g = grep(quot;pythonquot;) >>> g.next() # Prime it Looking for python >>> g.send(quot;Yeah, but no, but yeah, but noquot;) >>> g.send(quot;A series of tubesquot;) >>> g.send(quot;python generators rock!quot;) python generators rock! >>> g.close() • Note: Garbage collection also calls close() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 28
  • 15. Catching close() • close() can be caught (GeneratorExit) @coroutine grepclose.py def grep(pattern): print quot;Looking for %squot; % pattern try: while True: line = (yield) if pattern in line: print line, except GeneratorExit: print quot;Going away. Goodbyequot; • You cannot ignore this exception • Only legal action is to clean up and return Copyright (C) 2009, David Beazley, http://www.dabeaz.com 29 Throwing an Exception • Exceptions can be thrown inside a coroutine >>> g = grep(quot;pythonquot;) >>> g.next() # Prime it Looking for python >>> g.send(quot;python generators rock!quot;) python generators rock! >>> g.throw(RuntimeError,quot;You're hosedquot;) Traceback (most recent call last): File quot;<stdin>quot;, line 1, in <module> File quot;<stdin>quot;, line 4, in grep RuntimeError: You're hosed >>> • Exception originates at the yield expression • Can be caught/handled in the usual ways Copyright (C) 2009, David Beazley, http://www.dabeaz.com 30
  • 16. Interlude • Despite some similarities, Generators and coroutines are basically two different concepts • Generators produce values • Coroutines tend to consume values • It is easy to get sidetracked because methods meant for coroutines are sometimes described as a way to tweak generators that are in the process of producing an iteration pattern (i.e., resetting its value). This is mostly bogus. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 31 A Bogus Example • A quot;generatorquot; that produces and receives values def countdown(n): bogus.py print quot;Counting down fromquot;, n while n >= 0: newvalue = (yield n) # If a new value got sent in, reset n with it if newvalue is not None: n = newvalue else: n -= 1 • It runs, but it's quot;flakyquot; and hard to understand c = countdown(5) 5 Notice how a value for n in c: output 2 got quot;lostquot; in the print n 1 iteration protocol if n == 5: 0 c.send(3) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 32
  • 17. Keeping it Straight • Generators produce data for iteration • Coroutines are consumers of data • To keep your brain from exploding, you don't mix the two concepts together • Coroutines are not related to iteration • Note : There is a use of having yield produce a value in a coroutine, but it's not tied to iteration. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 33 Part 2 Coroutines, Pipelines, and Dataflow Copyright (C) 2009, David Beazley, http://www.dabeaz.com 34
  • 18. Processing Pipelines • Coroutines can be used to set up pipes send() send() send() coroutine coroutine coroutine • You just chain coroutines together and push data through the pipe with send() operations Copyright (C) 2009, David Beazley, http://www.dabeaz.com 35 Pipeline Sources • The pipeline needs an initial source (a producer) send() send() source coroutine • The source drives the entire pipeline def source(target): while not done: item = produce_an_item() ... target.send(item) ... target.close() • It is typically not a coroutine Copyright (C) 2009, David Beazley, http://www.dabeaz.com 36
  • 19. Pipeline Sinks • The pipeline must have an end-point (sink) send() send() coroutine sink • Collects all data sent to it and processes it @coroutine def sink(): try: while True: item = (yield) # Receive an item ... except GeneratorExit: # Handle .close() # Done ... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 37 An Example • A source that mimics Unix 'tail -f' import time cofollow.py def follow(thefile, target): thefile.seek(0,2) # Go to the end of the file while True: line = thefile.readline() if not line: time.sleep(0.1) # Sleep briefly continue target.send(line) • A sink that just prints the lines @coroutine def printer(): while True: line = (yield) print line, Copyright (C) 2009, David Beazley, http://www.dabeaz.com 38
  • 20. An Example • Hooking it together f = open(quot;access-logquot;) follow(f, printer()) • A picture send() follow() printer() • Critical point : follow() is driving the entire computation by reading lines and pushing them into the printer() coroutine Copyright (C) 2009, David Beazley, http://www.dabeaz.com 39 Pipeline Filters • Intermediate stages both receive and send send() send() coroutine • Typically perform some kind of data transformation, filtering, routing, etc. @coroutine def filter(target): while True: item = (yield) # Receive an item # Transform/filter item ... # Send it along to the next stage target.send(item) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 40
  • 21. A Filter Example • A grep filter coroutine @coroutine copipe.py def grep(pattern,target): while True: line = (yield) # Receive a line if pattern in line: target.send(line) # Send to next stage • Hooking it up f = open(quot;access-logquot;) follow(f, grep('python', printer())) • A picture send() send() follow() grep() printer() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 41 Interlude • Coroutines flip generators around generators/iteration input generator generator generator for x in s: sequence coroutines send() send() source coroutine coroutine • Key difference. Generators pull data through the pipe with iteration. Coroutines push data into the pipeline with send(). Copyright (C) 2009, David Beazley, http://www.dabeaz.com 42
  • 22. Being Branchy • With coroutines, you can send data to multiple destinations send() coroutine coroutine send() send() send() source coroutine coroutine send() coroutine • The source simply quot;sendsquot; data. Further routing of that data can be arbitrarily complex Copyright (C) 2009, David Beazley, http://www.dabeaz.com 43 Example : Broadcasting • Broadcast to multiple targets @coroutine cobroadcast.py def broadcast(targets): while True: item = (yield) for target in targets: target.send(item) • This takes a sequence of coroutines (targets) and sends received items to all of them. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 44
  • 23. Example : Broadcasting • Example use: f = open(quot;access-logquot;) follow(f, broadcast([grep('python',printer()), grep('ply',printer()), grep('swig',printer())]) ) grep('python') printer() follow broadcast grep('ply') printer() grep('swig') printer() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 45 Example : Broadcasting • A more disturbing variation... f = open(quot;access-logquot;) cobroadcast2.py p = printer() follow(f, broadcast([grep('python',p), grep('ply',p), grep('swig',p)]) ) grep('python') follow broadcast grep('ply') printer() grep('swig') Copyright (C) 2009, David Beazley, http://www.dabeaz.com 46
  • 24. Interlude • Coroutines provide more powerful data routing possibilities than simple iterators • If you built a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc. • Although there are some limitations (later) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 47 A Digression • In preparing this tutorial, I found myself wishing that variable assignment was an expression @coroutine @coroutine def printer(): def printer(): while True: line = (yield) vs. while (line = yield): print line, print line, • However, I'm not holding my breath on that... • Actually, I'm expecting to be flogged with a rubber chicken for even suggesting it. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 48
  • 25. Coroutines vs. Objects • Coroutines are somewhat similar to OO design patterns involving simple handler objects class GrepHandler(object): def __init__(self,pattern, target): self.pattern = pattern self.target = target def send(self,line): if self.pattern in line: self.target.send(line) • The coroutine version @coroutine def grep(pattern,target): while True: line = (yield) if pattern in line: target.send(line) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 49 Coroutines vs. Objects • There is a certain quot;conceptual simplicityquot; • A coroutine is one function definition • If you define a handler class... • You need a class definition • Two method definitions • Probably a base class and a library import • Essentially you're stripping the idea down to the bare essentials (like a generator vs. iterator) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 50
  • 26. Coroutines vs. Objects • Coroutines are faster • A micro benchmark @coroutine benchmark.py def null(): while True: item = (yield) line = 'python is nice' p1 = grep('python',null()) # Coroutine p2 = GrepHandler('python',null()) # Object • Send in 1,000,000 lines timeit(quot;p1.send(line)quot;, quot;from __main__ import line,p1quot;) 0.60 s timeit(quot;p2.send(line)quot;, quot;from __main__ import line,p2quot;) 0.92 s Copyright (C) 2009, David Beazley, http://www.dabeaz.com 51 Coroutines & Objects • Understanding the performance difference class GrepHandler(object): ... def send(self,line): if self.pattern in line: self.target.send(line) Look at these self lookups! • Look at the coroutine @coroutine def grep(pattern, target): while True: line = (yield) if pattern in line: quot;selfquot; free target.send(d) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 52
  • 27. Part 3 Coroutines and Event Dispatching Copyright (C) 2009, David Beazley, http://www.dabeaz.com 53 Event Handling • Coroutines can be used to write various components that process event streams • Let's look at an example... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 54
  • 28. Problem • Where is my ^&#&@* bus? • Chicago Transit Authority (CTA) equips most of its buses with real-time GPS tracking • You can get current data on every bus on the street as a big XML document • Use quot;The Googlequot; to search for details... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 55 Some XML <?xml version=quot;1.0quot;?> <buses> <bus> ! ! <id>7574</id> ! <route>147</route> ! ! <color>#3300ff</color> ! ! <revenue>true</revenue> ! ! <direction>North Bound</direction> ! ! <latitude>41.925682067871094</latitude> ! ! <longitude>-87.63092803955078</longitude> ! <pattern>2499</pattern> ! <patternDirection>North Bound</patternDirection> ! <run>P675</run> <finalStop><![CDATA[Paulina & Howard Terminal]]></finalStop> <operator>42493</operator> </bus> <bus> ... </bus> </buses> Copyright (C) 2009, David Beazley, http://www.dabeaz.com 56
  • 29. XML Parsing • There are many possible ways to parse XML • An old-school approach: SAX • SAX is an event driven interface Handler Object class Handler: def startElement(): events ... XML Parser def endElement(): ... def characters(): ... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 57 Minimal SAX Example import xml.sax basicsax.py class MyHandler(xml.sax.ContentHandler): def startElement(self,name,attrs): print quot;startElementquot;, name def endElement(self,name): print quot;endElementquot;, name def characters(self,text): print quot;charactersquot;, repr(text)[:40] xml.sax.parse(quot;somefile.xmlquot;,MyHandler()) • You see this same programming pattern in other settings (e.g., HTMLParser module) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 58
  • 30. Some Issues • SAX is often used because it can be used to incrementally process huge XML files without a large memory footprint • However, the event-driven nature of SAX parsing makes it rather awkward and low-level to deal with Copyright (C) 2009, David Beazley, http://www.dabeaz.com 59 From SAX to Coroutines • You can dispatch SAX events into coroutines • Consider this SAX handler cosax.py import xml.sax class EventHandler(xml.sax.ContentHandler): def __init__(self,target): self.target = target def startElement(self,name,attrs): self.target.send(('start',(name,attrs._attrs))) def characters(self,text): self.target.send(('text',text)) def endElement(self,name): self.target.send(('end',name)) • It does nothing, but send events to a target Copyright (C) 2009, David Beazley, http://www.dabeaz.com 60
  • 31. An Event Stream • The big picture events send() SAX Parser Handler (event,value) 'start' ('direction',{}) 'end' 'direction' 'text' 'North Bound' Event type Event values • Observe : Coding this was straightforward Copyright (C) 2009, David Beazley, http://www.dabeaz.com 61 Event Processing • To do anything interesting, you have to process the event stream • Example: Convert bus elements into dictionaries (XML sucks, dictionaries rock) <bus> { ! ! <id>7574</id> 'id' : '7574', ! <route>147</route> ! 'route' : '147', ! <revenue>true</revenue> ! 'revenue' : 'true', ! <direction>North Bound</direction> ! 'direction' : 'North Bound' ! ... ! ... </bus> } Copyright (C) 2009, David Beazley, http://www.dabeaz.com 62
  • 32. Buses to Dictionaries @coroutine buses.py def buses_to_dicts(target): while True: event, value = (yield) # Look for the start of a <bus> element if event == 'start' and value[0] == 'bus': busdict = { } fragments = [] # Capture text of inner elements in a dict while True: event, value = (yield) if event == 'start': fragments = [] elif event == 'text': fragments.append(value) elif event == 'end': if value != 'bus': busdict[value] = quot;quot;.join(fragments) else: target.send(busdict) break Copyright (C) 2009, David Beazley, http://www.dabeaz.com 63 State Machines • The previous code works by implementing a simple state machine ('start',('bus',*)) A B ('end','bus') • State A: Looking for a bus • State B: Collecting bus attributes • Comment : Coroutines are perfect for this Copyright (C) 2009, David Beazley, http://www.dabeaz.com 64
  • 33. Buses to Dictionaries @coroutine def buses_to_dicts(target): while True: event, value = (yield) A # Look for the start of a <bus> element if event == 'start' and value[0] == 'bus': busdict = { } fragments = [] # Capture text of inner elements in a dict while True: event, value = (yield) if event == 'start': fragments = [] elif event == 'text': fragments.append(value) elif event == 'end': B if value != 'bus': busdict[value] = quot;quot;.join(fragments) else: target.send(busdict) break Copyright (C) 2009, David Beazley, http://www.dabeaz.com 65 Filtering Elements • Let's filter on dictionary fields @coroutine def filter_on_field(fieldname,value,target): while True: d = (yield) if d.get(fieldname) == value: target.send(d) • Examples: filter_on_field(quot;routequot;,quot;22quot;,target) filter_on_field(quot;directionquot;,quot;North Boundquot;,target) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 66
  • 34. Processing Elements • Where's my bus? @coroutine def bus_locations(): while True: bus = (yield) print quot;%(route)s,%(id)s,quot;%(direction)squot;,quot; quot;%(latitude)s,%(longitude)squot; % bus • This receives dictionaries and prints a table 22,1485,quot;North Boundquot;,41.880481123924255,-87.62948191165924 22,1629,quot;North Boundquot;,42.01851969751819,-87.6730209876751 ... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 67 Hooking it Together • Find all locations of the North Bound #22 bus (the slowest moving object in the universe) xml.sax.parse(quot;allroutes.xmlquot;, EventHandler( buses_to_dicts( filter_on_field(quot;routequot;,quot;22quot;, filter_on_field(quot;directionquot;,quot;North Boundquot;, bus_locations()))) )) • This final step involves a bit of plumbing, but each of the parts is relatively simple Copyright (C) 2009, David Beazley, http://www.dabeaz.com 68
  • 35. How Low Can You Go? • I've picked this XML example for reason • One interesting thing about coroutines is that you can push the initial data source as low- level as you want to make it without rewriting all of the processing stages • Let's say SAX just isn't quite fast enough... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 69 XML Parsing with Expat • Let's strip it down.... import xml.parsers.expat coexpat.py def expat_parse(f,target): parser = xml.parsers.expat.ParserCreate() parser.buffer_size = 65536 parser.buffer_text = True parser.returns_unicode = False parser.StartElementHandler = lambda name,attrs: target.send(('start',(name,attrs))) parser.EndElementHandler = lambda name: target.send(('end',name)) parser.CharacterDataHandler = lambda data: target.send(('text',data)) parser.ParseFile(f) • expat is low-level (a C extension module) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 70
  • 36. Performance Contest • SAX version (on a 30MB XML input) xml.sax.parse(quot;allroutes.xmlquot;,EventHandler( buses_to_dicts( filter_on_field(quot;routequot;,quot;22quot;, 8.37s filter_on_field(quot;directionquot;,quot;North Boundquot;, bus_locations()))))) • Expat version expat_parse(open(quot;allroutes.xmlquot;), buses_to_dicts( filter_on_field(quot;routequot;,quot;22quot;, 4.51s filter_on_field(quot;directionquot;,quot;North Boundquot;, (83% speedup) bus_locations())))) • No changes to the processing stages Copyright (C) 2009, David Beazley, http://www.dabeaz.com 71 Going Lower • You can even drop send() operations into C • A skeleton of how this works... cxml/cxmlparse.c PyObject * py_parse(PyObject *self, PyObject *args) { PyObject *filename; PyObject *target; PyObject *send_method; if (!PyArg_ParseArgs(args,quot;sOquot;,&filename,&target)) { return NULL; } send_method = PyObject_GetAttrString(target,quot;sendquot;); ... /* Invoke target.send(item) */ args = Py_BuildValue(quot;(O)quot;,item); result = PyEval_CallObject(send_meth,args); ... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 72
  • 37. Performance Contest • Expat version expat_parse(open(quot;allroutes.xmlquot;), buses_to_dicts( filter_on_field(quot;routequot;,quot;22quot;, 4.51s filter_on_field(quot;directionquot;,quot;North Boundquot;, bus_locations()))))) • A custom C extension written directly on top of the expat C library (code not shown) cxmlparse.parse(quot;allroutes.xmlquot;, buses_to_dicts( filter_on_field(quot;routequot;,quot;22quot;, 2.95s filter_on_field(quot;directionquot;,quot;North Boundquot;, bus_locations()))))) (55% speedup) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 73 Interlude • ElementTree has fast incremental XML parsing from xml.etree.cElementTree import iterparse iterbus.py for event,elem in iterparse(quot;allroutes.xmlquot;,('start','end')): if event == 'start' and elem.tag == 'buses': buses = elem elif event == 'end' and elem.tag == 'bus': busdict = dict((child.tag,child.text) for child in elem) if (busdict['route'] == '22' and busdict['direction'] == 'North Bound'): print quot;%(id)s,%(route)s,quot;%(direction)squot;,quot; quot;%(latitude)s,%(longitude)squot; % busdict buses.remove(elem) 3.04s • Observe: Coroutines are in the same range Copyright (C) 2009, David Beazley, http://www.dabeaz.com 74
  • 38. Part 4 From Data Processing to Concurrent Programming Copyright (C) 2009, David Beazley, http://www.dabeaz.com 75 The Story So Far • Coroutines are similar to generators • You can create collections of small processing components and connect them together • You can process data by setting up pipelines, dataflow graphs, etc. • You can use coroutines with code that has tricky execution (e.g., event driven systems) • However, there is so much more going on... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 76
  • 39. A Common Theme • You send data to coroutines • You send data to threads (via queues) • You send data to processes (via messages) • Coroutines naturally tie into problems involving threads and distributed systems. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 77 Basic Concurrency • You can package coroutines inside threads or subprocesses by adding extra layers Thread Host coroutine socket coroutine queue Thread queue source coroutine coroutine pipe Subprocess coroutine • Will sketch out some basic ideas... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 78
  • 40. A Threaded Target @coroutine cothread.py def threaded(target): messages = Queue() def run_target(): while True: item = messages.get() if item is GeneratorExit: target.close() return else: target.send(item) Thread(target=run_target).start() try: while True: item = (yield) messages.put(item) except GeneratorExit: messages.put(GeneratorExit) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 79 A Threaded Target @coroutine def threaded(target): messages = Queue() A message queue def run_target(): while True: item = messages.get() if item is GeneratorExit: target.close() return else: target.send(item) Thread(target=run_target).start() try: while True: item = (yield) messages.put(item) except GeneratorExit: messages.put(GeneratorExit) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 80
  • 41. A Threaded Target @coroutine def threaded(target): messages = Queue() def run_target(): A thread. Loop while True: forever, pulling items item = messages.get() out of the message if item is GeneratorExit: queue and sending target.close() them to the target return else: target.send(item) Thread(target=run_target).start() try: while True: item = (yield) messages.put(item) except GeneratorExit: messages.put(GeneratorExit) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 81 A Threaded Target @coroutine def threaded(target): messages = Queue() def run_target(): while True: item = messages.get() if item is GeneratorExit: target.close() return else: target.send(item) Thread(target=run_target).start() try: while True: item = (yield) Receive items and messages.put(item) pass them into the except GeneratorExit: thread (via the queue) messages.put(GeneratorExit) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 82
  • 42. A Threaded Target @coroutine def threaded(target): messages = Queue() def run_target(): while True: item = messages.get() if item is GeneratorExit: target.close() return else: Handle close() so target.send(item) that the thread shuts Thread(target=run_target).start() down correctly try: while True: item = (yield) messages.put(item) except GeneratorExit: messages.put(GeneratorExit) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 83 A Thread Example • Example of hooking things up xml.sax.parse(quot;allroutes.xmlquot;, EventHandler( buses_to_dicts( threaded( filter_on_field(quot;routequot;,quot;22quot;, filter_on_field(quot;directionquot;,quot;North Boundquot;, bus_locations())) )))) • A caution: adding threads makes this example run about 50% slower. Copyright (C) 2009, David Beazley, http://www.dabeaz.com 84
  • 43. A Picture • Here is an overview of the last example Main Program xml.sax.parse EventHandler Thread buses_to_dicts filter_on_field filter_on_field bus_locations Copyright (C) 2009, David Beazley, http://www.dabeaz.com 85 A Subprocess Target • Can also bridge two coroutines over a file/pipe @coroutine coprocess.py def sendto(f): try: while True: item = (yield) pickle.dump(item,f) f.flush() except StopIteration: f.close() def recvfrom(f,target): try: while True: item = pickle.load(f) target.send(item) except EOFError: target.close() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 86
  • 44. A Subprocess Target • High Level Picture pipe/socket sendto() recvfrom() pickle.dump() pickle.load() • Of course, the devil is in the details... • You would not do this unless you can recover the cost of the underlying communication (e.g., you have multiple CPUs and there's enough processing to make it worthwhile) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 87 Implementation vs. Environ • With coroutines, you can separate the implementation of a task from its execution environment • The coroutine is the implementation • The environment is whatever you choose (threads, subprocesses, network, etc.) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 88
  • 45. A Caution • Creating huge collections of coroutines, threads, and processes might be a good way to create an unmaintainable application (although it might increase your job security) • And it might make your program run slower! • You need to carefully study the problem to know if any of this is a good idea Copyright (C) 2009, David Beazley, http://www.dabeaz.com 89 Some Hidden Dangers • The send() method on a coroutine must be properly synchronized • If you call send() on an already-executing coroutine, your program will crash • Example : Multiple threads sending data into the same target coroutine cocrash.py Copyright (C) 2009, David Beazley, http://www.dabeaz.com 90
  • 46. Limitations • You also can't create loops or cycles send() send() source coroutine coroutine send() • Stacked sends are building up a kind of call-stack (send() doesn't return until the target yields) • If you call a coroutine that's already in the process of sending, you'll get an error • send() doesn't suspend coroutine execution Copyright (C) 2009, David Beazley, http://www.dabeaz.com 91 Part 5 Coroutines as Tasks Copyright (C) 2009, David Beazley, http://www.dabeaz.com 92
  • 47. The Task Concept • In concurrent programming, one typically subdivides problems into quot;tasksquot; • Tasks have a few essential features • Independent control flow • Internal state • Can be scheduled (suspended/resumed) • Can communicate with other tasks • Claim : Coroutines are tasks Copyright (C) 2009, David Beazley, http://www.dabeaz.com 93 Are Coroutines Tasks? • Let's look at the essential parts • Coroutines have their own control flow. @coroutine def grep(pattern): statements print quot;Looking for %squot; % pattern while True: line = (yield) if pattern in line: print line, • A coroutine is just a sequence of statements like any other Python function Copyright (C) 2009, David Beazley, http://www.dabeaz.com 94
  • 48. Are Coroutines Tasks? • Coroutines have their internal own state • For example : local variables @coroutine def grep(pattern): print quot;Looking for %squot; % pattern while True: locals line = (yield) if pattern in line: print line, • The locals live as long as the coroutine is active • They establish an execution environment Copyright (C) 2009, David Beazley, http://www.dabeaz.com 95 Are Coroutines Tasks? • Coroutines can communicate • The .send() method sends data to a coroutine @coroutine def grep(pattern): print quot;Looking for %squot; % pattern while True: line = (yield) send(msg) if pattern in line: print line, • yield expressions receive input Copyright (C) 2009, David Beazley, http://www.dabeaz.com 96
  • 49. Are Coroutines Tasks? • Coroutines can be suspended and resumed • yield suspends execution • send() resumes execution • close() terminates execution Copyright (C) 2009, David Beazley, http://www.dabeaz.com 97 I'm Convinced • Very clearly, coroutines look like tasks • But they're not tied to threads • Or subprocesses • A question : Can you perform multitasking without using either of those concepts? • Multitasking using nothing but coroutines? Copyright (C) 2009, David Beazley, http://www.dabeaz.com 98
  • 50. Part 6 A Crash Course in Operating Systems Copyright (C) 2009, David Beazley, http://www.dabeaz.com 99 Program Execution • On a CPU, a program is a series of instructions _main: int main() { pushl %ebp int i, total = 0; for (i = 0; i < 10; i++) cc movl subl %esp, %ebp $24, %esp { movl $0, -12(%ebp) total += i; movl $0, -16(%ebp) } jmp L2 } L3: movl -16(%ebp), %eax • When running, there leal addl -12(%ebp), %edx %eax, (%edx) is no notion of doing leal -16(%ebp), %eax incl (%eax) more than one thing L2: at a time (or any kind cmpl jle $9, -16(%ebp) L3 of task switching) leave ret Copyright (C) 2009, David Beazley, http://www.dabeaz.com 100
  • 51. The Multitasking Problem • CPUs don't know anything about multitasking • Nor do application programs • Well, surely something has to know about it! • Hint: It's the operating system Copyright (C) 2009, David Beazley, http://www.dabeaz.com 101 Operating Systems • As you hopefully know, the operating system (e.g., Linux, Windows) is responsible for running programs on your machine • And as you have observed, the operating system does allow more than one process to execute at once (e.g., multitasking) • It does this by rapidly switching between tasks • Question : How does it do that? Copyright (C) 2009, David Beazley, http://www.dabeaz.com 102
  • 52. A Conundrum • When a CPU is running your program, it is not running the operating system • Question: How does the operating system (which is not running) make an application (which is running) switch to another task? • The quot;context-switchingquot; problem... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 103 Interrupts and Traps • There are usually only two mechanisms that an operating system uses to gain control • Interrupts - Some kind of hardware related signal (data received, timer, keypress, etc.) • Traps - A software generated signal • In both cases, the CPU briefly suspends what it is doing, and runs code that's part of the OS • It is at this time the OS might switch tasks Copyright (C) 2009, David Beazley, http://www.dabeaz.com 104
  • 53. Traps and System Calls • Low-level system calls are actually traps • It is a special CPU instruction read(fd,buf,nbytes) read: push %ebx mov 0x10(%esp),%edx • When a trap instruction mov 0xc(%esp),%ecx mov 0x8(%esp),%ebx mov $0x3,%eax executes, the program int $0x80 trap suspends execution at pop %ebx ... that point • And the OS takes over Copyright (C) 2009, David Beazley, http://www.dabeaz.com 105 High Level Overview • Traps are what make an OS work • The OS drops your program on the CPU • It runs until it hits a trap (system call) • The program suspends and the OS runs • Repeat trap trap trap run run run run OS executes Copyright (C) 2009, David Beazley, http://www.dabeaz.com 106
  • 54. Task Switching • Here's what typically happens when an OS runs multiple tasks. trap trap trap Task A: run run run task switch trap trap Task B: run run • On each trap, the system switches to a different task (cycling between them) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 107 Task Scheduling • To run many tasks, add a bunch of queues Ready Queue Running task task task task task CPU CPU Wait Queues Traps task task task task task task Copyright (C) 2009, David Beazley, http://www.dabeaz.com 108
  • 55. An Insight • The yield statement is a kind of quot;trapquot; • No really! • When a generator function hits a quot;yieldquot; statement, it immediately suspends execution • Control is passed back to whatever code made the generator function run (unseen) • If you treat yield as a trap, you can build a multitasking quot;operating systemquot;--all in Python! Copyright (C) 2009, David Beazley, http://www.dabeaz.com 109 Part 7 Let's Build an Operating System (You may want to put on your 5-point safety harness) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 110
  • 56. Our Challenge • Build a multitasking quot;operating systemquot; • Use nothing but pure Python code • No threads • No subprocesses • Use generators/coroutines Copyright (C) 2009, David Beazley, http://www.dabeaz.com 111 Some Motivation • There has been a lot of recent interest in alternatives to threads (especially due to the GIL) • Non-blocking and asynchronous I/O • Example: servers capable of supporting thousands of simultaneous client connections • A lot of work has focused on event-driven systems or the quot;Reactor Modelquot; (e.g., Twisted) • Coroutines are a whole different twist... Copyright (C) 2009, David Beazley, http://www.dabeaz.com 112
  • 57. Step 1: Define Tasks • A task object class Task(object): pyos1.py taskid = 0 def __init__(self,target): Task.taskid += 1 self.tid = Task.taskid # Task ID self.target = target # Target coroutine self.sendval = None # Value to send def run(self): return self.target.send(self.sendval) • A task is a wrapper around a coroutine • There is only one operation : run() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 113 Task Example • Here is how this wrapper behaves # A very simple generator def foo(): print quot;Part 1quot; yield print quot;Part 2quot; yield >>> t1 = Task(foo()) # Wrap in a Task >>> t1.run() Part 1 >>> t1.run() Part 2 >>> • run() executes the task to the next yield (a trap) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 114
  • 58. Step 2: The Scheduler class Scheduler(object): def __init__(self): pyos2.py self.ready = Queue() self.taskmap = {} def new(self,target): newtask = Task(target) self.taskmap[newtask.tid] = newtask self.schedule(newtask) return newtask.tid def schedule(self,task): self.ready.put(task) def mainloop(self): while self.taskmap: task = self.ready.get() result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 115 Step 2: The Scheduler class Scheduler(object): def __init__(self): self.ready = Queue() A queue of tasks that self.taskmap = {} are ready to run def new(self,target): newtask = Task(target) self.taskmap[newtask.tid] = newtask self.schedule(newtask) return newtask.tid def schedule(self,task): self.ready.put(task) def mainloop(self): while self.taskmap: task = self.ready.get() result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 116
  • 59. Step 2: The Scheduler class Scheduler(object): def __init__(self): self.ready = Queue() self.taskmap = {} Introduces a new task def new(self,target): newtask = Task(target) to the scheduler self.taskmap[newtask.tid] = newtask self.schedule(newtask) return newtask.tid def schedule(self,task): self.ready.put(task) def mainloop(self): while self.taskmap: task = self.ready.get() result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 117 Step 2: The Scheduler class Scheduler(object): def __init__(self): self.ready = Queue() self.taskmap = {} A dictionary that def new(self,target): keeps track of all newtask = Task(target) self.taskmap[newtask.tid] = newtask active tasks (each self.schedule(newtask) task has a unique return newtask.tid integer task ID) def schedule(self,task): self.ready.put(task) (more later) def mainloop(self): while self.taskmap: task = self.ready.get() result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 118
  • 60. Step 2: The Scheduler class Scheduler(object): def __init__(self): self.ready = Queue() self.taskmap = {} def new(self,target): newtask = Task(target) self.taskmap[newtask.tid] = newtask self.schedule(newtask) return newtask.tid Put a task onto the def schedule(self,task): ready queue. This self.ready.put(task) makes it available def mainloop(self): to run. while self.taskmap: task = self.ready.get() result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 119 Step 2: The Scheduler class Scheduler(object): def __init__(self): self.ready = Queue() self.taskmap = {} def new(self,target): newtask = Task(target) self.taskmap[newtask.tid] = newtask self.schedule(newtask) return newtask.tid def schedule(self,task): self.ready.put(task) The main scheduler def mainloop(self): loop. It pulls tasks off the while self.taskmap: queue and runs them to task = self.ready.get() the next yield. result = task.run() self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 120
  • 61. First Multitasking • Two tasks: def foo(): while True: print quot;I'm fooquot; yield def bar(): while True: print quot;I'm barquot; yield • Running them into the scheduler sched = Scheduler() sched.new(foo()) sched.new(bar()) sched.mainloop() Copyright (C) 2009, David Beazley, http://www.dabeaz.com 121 First Multitasking • Example output: I'm foo I'm bar I'm foo I'm bar I'm foo I'm bar • Emphasize: yield is a trap • Each task runs until it hits the yield • At this point, the scheduler regains control and switches to the other task Copyright (C) 2009, David Beazley, http://www.dabeaz.com 122
  • 62. Problem : Task Termination • The scheduler crashes if a task returns def foo(): taskcrash.py for i in xrange(10): print quot;I'm fooquot; yield ... I'm foo I'm bar I'm foo I'm bar Traceback (most recent call last): File quot;crash.pyquot;, line 20, in <module> sched.mainloop() File quot;scheduler.pyquot;, line 26, in mainloop result = task.run() File quot;task.pyquot;, line 13, in run return self.target.send(self.sendval) StopIteration Copyright (C) 2009, David Beazley, http://www.dabeaz.com 123 Step 3: Task Exit class Scheduler(object): pyos3.py ... def exit(self,task): print quot;Task %d terminatedquot; % task.tid del self.taskmap[task.tid] ... def mainloop(self): while self.taskmap: task = self.ready.get() try: result = task.run() except StopIteration: self.exit(task) continue self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 124
  • 63. Step 3: Task Exit Remove the task class Scheduler(object): from the scheduler's ... def exit(self,task): task map print quot;Task %d terminatedquot; % task.tid del self.taskmap[task.tid] ... def mainloop(self): while self.taskmap: task = self.ready.get() try: result = task.run() except StopIteration: self.exit(task) continue self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 125 Step 3: Task Exit class Scheduler(object): ... def exit(self,task): print quot;Task %d terminatedquot; % task.tid del self.taskmap[task.tid] ... def mainloop(self): while self.taskmap: task = self.ready.get() try: result = task.run() Catch task exit and except StopIteration: self.exit(task) cleanup continue self.schedule(task) Copyright (C) 2009, David Beazley, http://www.dabeaz.com 126