]> git.decadent.org.uk Git - dak.git/blob - daklib/dakmultiprocessing.py
Merge remote branch 'origin/master' into multiprocessing
[dak.git] / daklib / dakmultiprocessing.py
1 #!/usr/bin/env python
2 # vim:set et sw=4:
3
4 """
5 multiprocessing for DAK
6
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2011  Ansgar Burchardt <ansgar@debian.org>
9 @license: GNU General Public License version 2 or later
10 """
11
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
16
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
26 ###############################################################################
27
28 import multiprocessing
29
30 class Pool():
31     def __init__(self, *args, **kwds):
32         self.pool = multiprocessing.Pool(*args, **kwds)
33         self.results = []
34
35     def apply_async(self, func, args=(), kwds={}, callback=None):
36         self.results.append(self.pool.apply_async(func, args, kwds, callback))
37
38     def close(self):
39         self.pool.close()
40
41     def join(self):
42         self.pool.join()
43         for r in self.results:
44             r.get()