1 /// @file htslib/thread_pool.h
2 /// Thread pool for multi-threading applications.
3 /*
4     Copyright (c) 2013-2017, 2019, 2020 Genome Research Ltd.
5 
6     Author: James Bonfield <jkb@sanger.ac.uk>
7 
8 Permission is hereby granted, free of charge, to any person obtaining a copy
9 of this software and associated documentation files (the "Software"), to deal
10 in the Software without restriction, including without limitation the rights
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the Software is
13 furnished to do so, subject to the following conditions:
14 
15 The above copyright notice and this permission notice shall be included in
16 all copies or substantial portions of the Software.
17 
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 DEALINGS IN THE SOFTWARE.  */
25 
26 /*
27  * This file implements a thread pool for multi-threading applications.  It
28  * consists of two distinct interfaces: thread pools and thread process
29  * queues (a queue of both jobs to-do and of the results of completed jobs).
30  * Do not confuse "process" here with a unix PID; rather it is analogous to a
31  * program reading a stream of data blocks, processing them in some manner,
32  * and outputting a stream of new data blocks.
33  *
34  * The pool of threads is given a function pointer and void* data to pass in.
35  * This means the pool can run jobs of multiple types, albeit first come
36  * first served with no job scheduling except to pick tasks for the
37  * processes that have room to store the result.
38  *
39  * Upon completion, the return value from the function pointer is
40  * added to back to the process result queue if required.  We may have
41  * multiple "processes" in use for the one pool.
42  *
43  * To see example usage, please look at the #ifdef TEST_MAIN code in
44  * thread_pool.c.
45  */
46 module htslib.thread_pool;
47 
48 @system:
49 nothrow:
50 @nogc:
51 
52 extern (C):
53 
54 /*-----------------------------------------------------------------------------
55  * Opaque data types.
56  *
57  * Actual definitions are in thread_pool_internal.h, but these should only
58  * be used by thread_pool.c itself.
59  */
60 
61 /*
62  * An hts_tpool_process implements a queue of input jobs to process and a
63  * queue of resulting output  post-processing.  Internally it consists of two
64  * buffered queues, analogous to the pipes in a unix pipeline:
65  *    ...input | process |  output...
66  *
67  * Both input and output queues have size limits to prevent either queue from
68  * growing too large and serial numbers to ensure sequential consumption of
69  * the output.
70  *
71  * The thread pool may have many heterogeneous tasks, each using its own
72  * process mixed into the same thread pool.
73  */
74 struct hts_tpool_process;
75 
76 /*
77  * The single pool structure itself.
78  *
79  * This knows nothing about the nature of the jobs or where their output is
80  * going, but it maintains a list of process-queues associated with this pool
81  * from which the jobs are taken.
82  */
83 struct hts_tpool;
84 
85 /*
86  * An output, after job has executed.
87  */
88 struct hts_tpool_result;
89 
90 /*-----------------------------------------------------------------------------
91  * Thread pool external functions
92  */
93 
94 /*
95  * Creates a worker pool with n worker threads.
96  *
97  * Returns pool pointer on success;
98  *         NULL on failure
99  *
100  * The hts_tpool struct returned by a successful call should be freed
101  * via hts_tpool_destroy() when it is no longer needed.
102  */
103 hts_tpool* hts_tpool_init(int n);
104 
105 /*
106  * Returns the number of requested threads for a pool.
107  */
108 int hts_tpool_size(hts_tpool* p);
109 
110 /// Add an item to the work pool.
111 /**
112  * @param p     Thread pool
113  * @param q     Process queue
114  * @param func  Function run by the thread pool
115  * @param arg   Data for use by func()
116  * @return 0 on success
117  *        -1 on failure
118  */
119 // FIXME: should this drop the hts_tpool*p argument? It's just q->p
120 int hts_tpool_dispatch(
121     hts_tpool* p,
122     hts_tpool_process* q,
123     void* function(void* arg) func,
124     void* arg);
125 
126 /// Add an item to the work pool, with nonblocking option.
127 /**
128  * @param p         Thread pool
129  * @param q         Process queue
130  * @param func      Function run by the thread pool
131  * @param arg       Data for use by func()
132  * @param nonblock  Non-blocking flag (see description)
133  * @return 0 on success
134  *        -1 on failure
135  *
136  * The @p nonblock parameter can take one of the following values:
137  *      0 => block if input queue is full
138  *     +1 => don't block if input queue is full, but do not add task
139  *     -1 => add task regardless of whether queue is full (over-size)
140  *
141  * If @p nonblock is +1 and the queue is full, -1 will be returned and
142  * `errno` is set to `EAGAIN`.
143  */
144 int hts_tpool_dispatch2(
145     hts_tpool* p,
146     hts_tpool_process* q,
147     void* function(void* arg) func,
148     void* arg,
149     int nonblock);
150 
151 /// Add an item to the work pool, with nonblocking and cleanup callbacks.
152 /**
153  * @param p               Thread pool
154  * @param q               Process queue
155  * @param exec_func       Function run by the thread pool
156  * @param arg             Data for use by func()
157  * @param job_cleanup     Callback to clean up when discarding jobs
158  * @param result_cleanup  Callback to clean up when discarding result data
159  * @param nonblock        Non-blocking flag (see description)
160  * @return 0 on success
161  *        -1 on failure
162  *
163  * The @p nonblock parameter can take one of the following values:
164  *      0 => block if input queue is full
165  *     +1 => don't block if input queue is full, but do not add task
166  *     -1 => add task regardless of whether queue is full (over-size)
167  *
168  * If @p nonblock is +1 and the queue is full, -1 will be returned and
169  * `errno` is set to `EAGAIN`.
170  *
171  * The job_cleanup() and result_cleanup() callbacks are used when discarding
172  * data from a queue, for example when calling hts_tpool_process_reset()
173  * or hts_tpool_process_destroy().
174  *
175  * If not NULL, job_cleanup() will be called for each pending job with the
176  * value of @p arg that was set for that job.  This can be used to free
177  * any data associated with @p arg, and also @p arg itself.
178  *
179  * Similarly, result_cleanup() can be used to free any results left by
180  * jobs that had started before hts_tpool_process_reset() was called.
181  * The argument passed to result_cleanup() is the pointer that would
182  * have been returned by calling hts_tpool_result_data() on the result
183  * when pulled from the queue.
184  *
185  * job_cleanup() and result_cleanup() are only called when discarding jobs.
186  * For jobs that are processed normally, it is the responsibility of
187  * exec_func() and / or consumers of any results to do any cleaning up
188  * necessary.
189  */
190 int hts_tpool_dispatch3(
191     hts_tpool* p,
192     hts_tpool_process* q,
193     void* function(void* arg) exec_func,
194     void* arg,
195     void function(void* arg) job_cleanup,
196     void function(void* data) result_cleanup,
197     int nonblock);
198 
199 /*
200  * Wakes up a single thread stuck in dispatch and make it return with
201  * errno EAGAIN.
202  */
203 void hts_tpool_wake_dispatch(hts_tpool_process* q);
204 
205 /*
206  * Flushes the process-queue, but doesn't exit. This simply drains the queue
207  * and ensures all worker threads have finished their current tasks
208  * associated with this process.
209  *
210  * NOT: This does not mean the worker threads are not executing jobs in
211  * another process-queue.
212  *
213  * Returns 0 on success;
214  *        -1 on failure
215  */
216 int hts_tpool_process_flush(hts_tpool_process* q);
217 
218 /*
219  * Resets a process to the initial state.
220  *
221  * This removes any queued up input jobs, disables any notification of
222  * new results/output, flushes what is left and then discards any
223  * queued output.  Anything consumer stuck in a wait on results to
224  * appear should stay stuck and will only wake up when new data is
225  * pushed through the queue.
226  *
227  * Returns 0 on success;
228  *        -1 on failure
229  */
230 int hts_tpool_process_reset(hts_tpool_process* q, int free_results);
231 
232 /* Returns the process queue size */
233 int hts_tpool_process_qsize(hts_tpool_process* q);
234 
235 /*
236  * Destroys a thread pool.  The threads are joined into the main
237  * thread so they will finish their current work load.
238  */
239 void hts_tpool_destroy(hts_tpool* p);
240 
241 /*
242  * Destroys a thread pool without waiting on jobs to complete.
243  * Use hts_tpool_kill(p) to quickly exit after a fatal error.
244  */
245 void hts_tpool_kill(hts_tpool* p);
246 
247 /*
248  * Pulls the next item off the process result queue.  The caller should free
249  * it (and any internals as appropriate) after use.  This doesn't wait for a
250  * result to be present.
251  *
252  * Results will be returned in strict order.
253  *
254  * Returns hts_tpool_result pointer if a result is ready.
255  *         NULL if not.
256  */
257 hts_tpool_result* hts_tpool_next_result(hts_tpool_process* q);
258 
259 /*
260  * Pulls the next item off the process result queue.  The caller should free
261  * it (and any internals as appropriate) after use.  This will wait for
262  * a result to be present if none are currently available.
263  *
264  * Results will be returned in strict order.
265  *
266  * Returns hts_tpool_result pointer if a result is ready.
267  *         NULL on error or during shutdown.
268  */
269 hts_tpool_result* hts_tpool_next_result_wait(hts_tpool_process* q);
270 
271 /*
272  * Frees a result 'r' and if free_data is true also frees
273  * the internal r->data result too.
274  */
275 void hts_tpool_delete_result(hts_tpool_result* r, int free_data);
276 
277 /*
278  * Returns the data portion of a hts_tpool_result, corresponding
279  * to the actual "result" itself.
280  */
281 void* hts_tpool_result_data(hts_tpool_result* r);
282 
283 /*
284  * Initialises a thread process-queue.
285  *
286  * In_only, if true, indicates that the process generates does not need to
287  * hold any output.  Otherwise an output queue is used to store the results
288  * of processing each input job.
289  *
290  * Results hts_tpool_process pointer on success;
291  *         NULL on failure
292  *
293  * The hts_tpool_process struct returned by a successful call should be freed
294  * via hts_tpool_process_destroy() when it is no longer needed.
295  */
296 hts_tpool_process* hts_tpool_process_init(hts_tpool* p, int qsize, int in_only);
297 
298 /* Deallocates memory for a thread process-queue.
299  * Must be called before the thread pool is destroyed.
300  */
301 void hts_tpool_process_destroy(hts_tpool_process* q);
302 
303 /*
304  * Returns true if there are no items in the process results queue and
305  * also none still pending.
306  */
307 int hts_tpool_process_empty(hts_tpool_process* q);
308 
309 /*
310  * Returns the number of completed jobs in the process results queue.
311  */
312 int hts_tpool_process_len(hts_tpool_process* q);
313 
314 /*
315  * Returns the number of completed jobs in the process results queue plus the
316  * number running and queued up to run.
317  */
318 int hts_tpool_process_sz(hts_tpool_process* q);
319 
320 /*
321  * Shutdown a process.
322  *
323  * This sets the shutdown flag and wakes any threads waiting on process
324  * condition variables.
325  */
326 void hts_tpool_process_shutdown(hts_tpool_process* q);
327 
328 /*
329  * Returns whether this process queue has been shutdown.
330  * Return value of 1 signifies normal shutdown while >1 signifies it
331  * was shutdown due to an error condition.
332  */
333 int hts_tpool_process_is_shutdown(hts_tpool_process* q);
334 
335 /*
336  * Attach and detach a thread process-queue with / from the thread pool
337  * scheduler.
338  *
339  * We need to do attach after making a thread process, but may also wish
340  * to temporarily detach if we wish to stop running jobs on a specific
341  * process while permitting other process to continue.
342  */
343 void hts_tpool_process_attach(hts_tpool* p, hts_tpool_process* q);
344 
345 void hts_tpool_process_detach(hts_tpool* p, hts_tpool_process* q);
346 
347 /*
348  * Increment and decrement the reference count in a process-queue.
349  * If the queue is being driven from two external (non thread-pool)
350  * threads, eg "main" and a "reader", this permits each end to
351  * decrement its use of the process-queue independently.
352  */
353 void hts_tpool_process_ref_incr(hts_tpool_process* q);
354 
355 void hts_tpool_process_ref_decr(hts_tpool_process* q);
356