1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
"""Implementation of a thread-pool working with channels"""
from thread import WorkerThread
from channel import (
Channel,
WChannel,
RChannel
)
class Node(object):
"""A quick and dirty to the point implementation of a simple, and slow ascyclic graph.
Its not designed to support big graphs, and sports only the functionality
we need"""
__slots__ = ('in_nodes', 'out_nodes')
class Graph(object):
"""A simple graph implementation, keeping nodes and providing basic access and
editing functions"""
__slots__ = "nodes"
def add_node(self, node):
pass
def del_node(self, node):
pass
def visit_input_depth_first(self, node, visitor=lambda n: True ):
"""Visit all input nodes of the given node, depth first, calling visitor
for each node on our way. If the function returns False, the traversal
will not go any deeper, but continue at the next branch"""
pass
class TaskNode(Node):
"""Couples an input channel, an output channel, as well as a processing function
together.
It may contain additional information on how to handel read-errors from the
input channel"""
__slots__ = ('in_rc', 'out_wc', 'fun')
def is_done(self):
""":return: True if we are finished processing"""
return self.out_wc.closed
class RPoolChannel(RChannel):
""" A read-only pool channel may not be wrapped or derived from, but it provides slots to call
before and after an item is to be read.
It acts like a handle to the underlying task"""
__slots__ = ('_task', '_pool', '_pre_cb', '_post_cb')
def set_post_cb(self, fun = lambda item: item):
"""Install a callback to call after the item has been read. The function
returns a possibly changed item. If it raises, the exception will be propagated
in an IOError, indicating read-failure
If a function is not provided, the call is effectively uninstalled."""
def set_pre_cb(self, fun = lambda : None):
"""Install a callback to call before an item is read from the channel.
If it fails, the read will fail with an IOError
If a function is not provided, the call is effectively uninstalled."""
def read(block=False, timeout=None):
"""Read an item that was processed by one of our threads
:note: Triggers task dependency handling needed to provide the necessary
input"""
#{ Internal
def _read(self, block=False, timeout=None):
"""Calls the underlying channel's read directly, without triggering
the pool"""
return RChannel.read(self, block, timeout)
#} END internal
class PoolWorker(WorkerThread):
"""A worker thread which gets called to deal with Tasks. Tasks provide channls
with actual work, whose result will be send to the tasks output channel"""
@classmethod
def perform_task(cls, task):
# note : when getting the input channel, be sure not to trigger
# RPoolChannel
pass
class ThreadPool(Graph):
"""A thread pool maintains a set of one or more worker threads, but supports
a fully serial mode in which case the amount of threads is zero.
Work is distributed via Channels, which form a dependency graph. The evaluation
is lazy, as work will only be done once an output is requested.
:note: the current implementation returns channels which are meant to be
used only from the main thread"""
__slots__ = ( '_workers', # list of worker threads
'_queue', # master queue for tasks
'_ordered_tasks_cache' # tasks in order of evaluation, mapped by read channel
)
def del_node(self, task):
"""Delete the node ( being a task ), but delete the entries in our output channel
cache as well"""
def set_pool_size(self, size=0):
"""Set the amount of workers to use in this pool.
:param size: if 0, the pool will do all work itself in the calling thread,
otherwise the work will be distributed among the given amount of threads"""
def add_task(self, task):
"""Add a new task to be processed.
:return: your task instance with its output channel set. It can be used
to retrieve processed items"""
|