2012-06-06 23:39:37 +00:00
|
|
|
import json, threading, Queue
|
2012-06-06 23:23:23 +00:00
|
|
|
import requests
|
2012-06-07 05:02:17 +00:00
|
|
|
import pathod, utils
|
2012-06-09 03:08:51 +00:00
|
|
|
import tutils
|
2012-06-06 23:23:23 +00:00
|
|
|
|
2012-06-06 23:39:37 +00:00
|
|
|
IFACE = "127.0.0.1"
|
|
|
|
|
2012-06-06 23:23:23 +00:00
|
|
|
class Daemon:
|
2012-06-07 05:02:17 +00:00
|
|
|
def __init__(self, staticdir=None, anchors=(), ssl=None):
|
2012-06-06 23:23:23 +00:00
|
|
|
self.app = pathod.make_app(staticdir=staticdir, anchors=anchors)
|
|
|
|
self.q = Queue.Queue()
|
2012-06-07 05:02:17 +00:00
|
|
|
self.thread = PaThread(self.q, self.app, ssl)
|
2012-06-06 23:23:23 +00:00
|
|
|
self.thread.start()
|
|
|
|
self.port = self.q.get(True, 5)
|
2012-06-07 05:02:17 +00:00
|
|
|
self.urlbase = "%s://%s:%s"%("https" if ssl else "http", IFACE, self.port)
|
2012-06-06 23:23:23 +00:00
|
|
|
|
2012-06-06 23:39:37 +00:00
|
|
|
def info(self):
|
2012-06-07 05:02:17 +00:00
|
|
|
resp = requests.get("%s/api/info"%self.urlbase, verify=False)
|
|
|
|
return resp.json
|
2012-06-06 23:23:23 +00:00
|
|
|
|
|
|
|
def shutdown(self):
|
2012-06-07 05:02:17 +00:00
|
|
|
requests.post("%s/api/shutdown"%self.urlbase, verify=False)
|
2012-06-07 04:35:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PaThread(threading.Thread):
|
2012-06-07 05:02:17 +00:00
|
|
|
def __init__(self, q, app, ssl):
|
2012-06-07 04:35:54 +00:00
|
|
|
threading.Thread.__init__(self)
|
2012-06-07 05:02:17 +00:00
|
|
|
self.q, self.app, self.ssl = q, app, ssl
|
2012-06-07 04:35:54 +00:00
|
|
|
self.port = None
|
|
|
|
|
|
|
|
# begin nocover
|
|
|
|
def run(self):
|
2012-06-07 05:02:17 +00:00
|
|
|
if self.ssl is True:
|
|
|
|
ssloptions = dict(
|
|
|
|
keyfile = utils.data.path("resources/server.key"),
|
|
|
|
certfile = utils.data.path("resources/server.crt"),
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
ssloptions = self.ssl
|
|
|
|
self.server, self.port = pathod.make_server(self.app, 0, IFACE, ssloptions)
|
2012-06-07 04:35:54 +00:00
|
|
|
self.q.put(self.port)
|
|
|
|
pathod.run(self.server)
|