Merge commit 'refs/merge-requests/3' of git://gitorious.org/radicale/radicale into merge-requests/3

This commit is contained in:
Guillaume Ayoub 2011-04-02 18:42:20 +02:00
commit d577661767
3 changed files with 66 additions and 10 deletions

4
config
View File

@ -7,6 +7,10 @@
[server] [server]
# CalDAV server hostname, empty for all hostnames # CalDAV server hostname, empty for all hostnames
# if you want to bind to multiple interfaces, seperate them with a comma
# NOTE: IPv6 adresses are configured to only allow IPv6 connections
# hence for binding to all IPv4 and IPv6 interfaces:
# host = ::, 0.0.0.0
host = host =
# CalDAV server port # CalDAV server port
port = 5232 port = 5232

View File

@ -38,6 +38,7 @@ arguments.
import os import os
import sys import sys
import optparse import optparse
import threading, signal
import radicale import radicale
@ -97,8 +98,42 @@ if options.daemon:
sys.exit() sys.exit()
sys.stdout = sys.stderr = open(os.devnull, "w") sys.stdout = sys.stderr = open(os.devnull, "w")
def exit (servers):
"""Cleanly shutdown all servers.
Might be called multiple times."""
for s in servers:
s.shutdown()
# Launch calendar server # Launch calendar server
server_class = radicale.HTTPSServer if options.ssl else radicale.HTTPServer server_class = radicale.HTTPSServer if options.ssl else radicale.HTTPServer
servers = []
threads = []
for host in (x.strip() for x in options.host.split(',')):
try:
server = server_class( server = server_class(
(options.host, options.port), radicale.CalendarHTTPHandler) (host, options.port), radicale.CalendarHTTPHandler)
server.serve_forever() servers.append(server)
t = threading.Thread(target = server.serve_forever)
threads.append(t)
t.start()
except:
exit(servers)
raise
# clean exit on SIGTERM
signal.signal(signal.SIGTERM, lambda *a: exit(servers))
try:
while threads:
threads[0].join(1) # try one second
if threading.active_count() <= len(threads):
# at least one thread died -- exit all
break
except KeyboardInterrupt:
# no unwanted traceback :)
pass
finally:
exit(servers)

View File

@ -85,9 +85,24 @@ class HTTPServer(server.HTTPServer):
# Maybe a Pylint bug, ``__init__`` calls ``server.HTTPServer.__init__`` # Maybe a Pylint bug, ``__init__`` calls ``server.HTTPServer.__init__``
# pylint: disable=W0231 # pylint: disable=W0231
def __init__(self, address, handler): def __init__(self, address, handler, bind_and_activate = True):
"""Create server.""" """Create server."""
server.HTTPServer.__init__(self, address, handler) self.use_ipv6 = ':' in address[0]
if self.use_ipv6:
self.address_family = socket.AF_INET6
# call superclass, but do NOT bind and activate, as we might change socketopts
server.HTTPServer.__init__(self, address, handler, bind_and_activate = False)
if self.use_ipv6:
# only allow IPv6 connections to the IPv6 socket
self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, 1)
if bind_and_activate:
self.server_bind()
self.server_activate()
self.acl = acl.load() self.acl = acl.load()
# pylint: enable=W0231 # pylint: enable=W0231
@ -96,20 +111,22 @@ class HTTPSServer(HTTPServer):
"""HTTPS server.""" """HTTPS server."""
PROTOCOL = "https" PROTOCOL = "https"
def __init__(self, address, handler): def __init__(self, address, handler, bind_and_activate = True):
"""Create server by wrapping HTTP socket in an SSL socket.""" """Create server by wrapping HTTP socket in an SSL socket."""
# Fails with Python 2.5, import if needed # Fails with Python 2.5, import if needed
# pylint: disable=F0401 # pylint: disable=F0401
import ssl import ssl
# pylint: enable=F0401 # pylint: enable=F0401
HTTPServer.__init__(self, address, handler) HTTPServer.__init__(self, address, handler, False)
self.socket = ssl.wrap_socket( self.socket = ssl.wrap_socket(
socket.socket(self.address_family, self.socket_type), self.socket, # we can use this, it is not bound yet
server_side=True, server_side=True,
certfile=config.get("server", "certificate"), certfile=config.get("server", "certificate"),
keyfile=config.get("server", "key"), keyfile=config.get("server", "key"),
ssl_version=ssl.PROTOCOL_SSLv23) ssl_version=ssl.PROTOCOL_SSLv23)
if bind_and_activate:
self.server_bind() self.server_bind()
self.server_activate() self.server_activate()