BaseHTTPServer get_request not called till first request

  • Thread starter Adam Tauno Williams
  • Start date
A

Adam Tauno Williams

Looking at <http://code.activestate.com/recipes/425210/> and
<http://code.activestate.com/recipes/499376/> as examples I've attempted
to create a BaseHTTPServer class that times-out accept() ever X seconds
to check some other work. This seems to work well, but only once the
HTTPServer object has received its first request. Up until the first
request get_request() is not invoked and not timeout occurs.

class HTTPServer(BaseHTTPServer.HTTPServer):

def server_bind(self):
BaseHTTPServer.HTTPServer.server_bind(self)
self.socket.settimeout(1)
self._shutdown = False

def get_request(self):
while not self._shutdown:
try:
print ' HTTP worker {0} waiting.'.format(self.pid)
self.log.debug('Waiting for connection...')
s, a = self.socket.accept()
s.settimeout(None)
return (s, a)
except socket.timeout:
/// do other work ///
return None, None

The "HTTP worker" message is not seen until the server has taken a
request, then it seems to dutifully do the timeout.
 
Y

yousay

Looking at <http://code.activestate.com/recipes/425210/> and
<http://code.activestate.com/recipes/499376/> as examples I've attempted
to create a BaseHTTPServer class that times-out accept() ever X seconds
to check some other work.  This seems to work well, but only once the
HTTPServer object has received its first request.  Up until the first
request get_request() is not invoked and not timeout occurs.

class HTTPServer(BaseHTTPServer.HTTPServer):

    def server_bind(self):
        BaseHTTPServer.HTTPServer.server_bind(self)
        self.socket.settimeout(1)
        self._shutdown = False

    def get_request(self):
        while not self._shutdown:
            try:
                print ' HTTP worker {0} waiting.'.format(self.pid)
                self.log.debug('Waiting for connection...')
                s, a = self.socket.accept()
                s.settimeout(None)
                return (s, a)
            except socket.timeout:
                /// do other work ///
        return None, None

The "HTTP worker" message is not seen until the server has taken a
request, then it seems to dutifully do the timeout.

--
OpenGroupware developer: (e-mail address removed)
<http://whitemiceconsulting.blogspot.com/>
OpenGroupare & Cyrus IMAPd documenation @
<http://docs.opengroupware.org/Members/whitemice/wmogag/file_view>

your class Name is the same to the superClass,may be have influence
 
A

Adam Tauno Williams

your class Name is the same to the superClass,may be have influence

Nope, changed the name of the class (cleaned out all the *.pyc files),
and the initial wait still does not time out.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top