blob: 5c9a680677c99eeae9fbb6aa036e10d383a31555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env python3
"""
This small example program demonstrates one way to integerate with Einhorn using
Python (3).
It serves up the current working directory over HTTP on either the
Einhorn-supplied socket or localhost:8080.
"""
import os
import sys
import socket
import socketserver
import http.server
import logging as log
class EinhornTCPServer(socketserver.TCPServer):
def __init__(self, server_address, RequestHandlerClass):
socketserver.BaseServer.__init__(self, server_address, RequestHandlerClass)
# Try to sniff first socket
try:
fd = int(os.environ['EINHORN_FD_0'])
log.debug("Will try to listen with fd=%d" % fd)
except KeyError:
raise EnvironmentError("Couldn't find EINHORN_FD_0 env variable... is this running under einhorn?")
self.socket = socket.socket(fileno=fd)
# alternative?
#self.socket = socket.fromfd(socket.AF_INET, socket.SOCK_STREAM, fd)
try:
self.server_activate()
except:
self.server_close()
raise
if __name__ == "__main__":
log.basicConfig(
format="%(filename)s [%(process)d] %(levelname)s: %(message)s",
level=log.DEBUG)
Handler = http.server.SimpleHTTPRequestHandler
try:
httpd = EinhornTCPServer(None, Handler)
except EnvironmentError as ee:
log.warn(str(ee))
log.info("Falling back on vanilla http server on 8080")
httpd = socketserver.TCPServer(("localhost", 8080), Handler)
log.debug("Serving!")
try:
httpd.serve_forever()
except KeyboardInterrupt:
log.warn("Caught KeyboardInterrupt, shutting down")
httpd.server_close()
|