2008-06-10 23:40:25 -03:00
|
|
|
#
|
|
|
|
# Example where a pool of http servers share a single listening socket
|
|
|
|
#
|
|
|
|
# On Windows this module depends on the ability to pickle a socket
|
|
|
|
# object so that the worker processes can inherit a copy of the server
|
|
|
|
# object. (We import `multiprocessing.reduction` to enable this pickling.)
|
|
|
|
#
|
|
|
|
# Not sure if we should synchronize access to `socket.accept()` method by
|
|
|
|
# using a process-shared lock -- does not seem to be necessary.
|
|
|
|
#
|
Merged revisions 67398,67423-67424,67432,67440-67441,67444-67445,67454,67457,67463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67398 | benjamin.peterson | 2008-11-26 18:39:17 +0100 (Wed, 26 Nov 2008) | 1 line
fix typo in sqlite3 docs
........
r67423 | jesse.noller | 2008-11-28 19:59:35 +0100 (Fri, 28 Nov 2008) | 2 lines
issue4238: bsd support for cpu_count
........
r67424 | christian.heimes | 2008-11-28 20:33:33 +0100 (Fri, 28 Nov 2008) | 1 line
Retain copyright of processing examples. This was requested by a Debian maintainer during packaging of the multiprocessing package for 2.4/2.5
........
r67432 | benjamin.peterson | 2008-11-29 00:18:46 +0100 (Sat, 29 Nov 2008) | 1 line
SVN format 9 is the same it seems
........
r67440 | jeremy.hylton | 2008-11-29 00:42:59 +0100 (Sat, 29 Nov 2008) | 4 lines
Move definition int sval into branch of ifdef where it is used.
Otherwise, you get a warning about an undefined variable.
........
r67441 | jeremy.hylton | 2008-11-29 01:09:16 +0100 (Sat, 29 Nov 2008) | 2 lines
Reflow long lines.
........
r67444 | amaury.forgeotdarc | 2008-11-29 03:03:32 +0100 (Sat, 29 Nov 2008) | 2 lines
Fix a small typo in docstring
........
r67445 | benjamin.peterson | 2008-11-30 04:07:33 +0100 (Sun, 30 Nov 2008) | 1 line
StringIO.close() stops you from using the buffer, too
........
r67454 | benjamin.peterson | 2008-11-30 15:43:23 +0100 (Sun, 30 Nov 2008) | 1 line
note the version that works
........
r67457 | christian.heimes | 2008-11-30 22:16:28 +0100 (Sun, 30 Nov 2008) | 1 line
w# requires Py_ssize_t
........
r67463 | skip.montanaro | 2008-12-01 02:55:22 +0100 (Mon, 01 Dec 2008) | 1 line
typo in comment
........
2008-12-05 05:00:55 -04:00
|
|
|
# Copyright (c) 2006-2008, R Oudkerk
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
2008-06-10 23:40:25 -03:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from multiprocessing import Process, current_process, freeze_support
|
|
|
|
from BaseHTTPServer import HTTPServer
|
|
|
|
from SimpleHTTPServer import SimpleHTTPRequestHandler
|
|
|
|
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
import multiprocessing.reduction # make sockets pickable/inheritable
|
|
|
|
|
|
|
|
|
|
|
|
def note(format, *args):
|
2008-08-19 16:06:19 -03:00
|
|
|
sys.stderr.write('[%s]\t%s\n' % (current_process().name, format%args))
|
2008-06-10 23:40:25 -03:00
|
|
|
|
|
|
|
|
|
|
|
class RequestHandler(SimpleHTTPRequestHandler):
|
|
|
|
# we override log_message() to show which process is handling the request
|
|
|
|
def log_message(self, format, *args):
|
|
|
|
note(format, *args)
|
|
|
|
|
|
|
|
def serve_forever(server):
|
|
|
|
note('starting server')
|
|
|
|
try:
|
|
|
|
server.serve_forever()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def runpool(address, number_of_processes):
|
|
|
|
# create a single server object -- children will each inherit a copy
|
|
|
|
server = HTTPServer(address, RequestHandler)
|
|
|
|
|
|
|
|
# create child processes to act as workers
|
|
|
|
for i in range(number_of_processes-1):
|
|
|
|
Process(target=serve_forever, args=(server,)).start()
|
|
|
|
|
|
|
|
# main process also acts as a worker
|
|
|
|
serve_forever(server)
|
|
|
|
|
|
|
|
|
|
|
|
def test():
|
|
|
|
DIR = os.path.join(os.path.dirname(__file__), '..')
|
|
|
|
ADDRESS = ('localhost', 8000)
|
|
|
|
NUMBER_OF_PROCESSES = 4
|
|
|
|
|
|
|
|
print 'Serving at http://%s:%d using %d worker processes' % \
|
|
|
|
(ADDRESS[0], ADDRESS[1], NUMBER_OF_PROCESSES)
|
|
|
|
print 'To exit press Ctrl-' + ['C', 'Break'][sys.platform=='win32']
|
|
|
|
|
|
|
|
os.chdir(DIR)
|
|
|
|
runpool(ADDRESS, NUMBER_OF_PROCESSES)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
freeze_support()
|
|
|
|
test()
|