X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=python3%2Fashd%2Fserve.py;h=6111ec62790e8ebcbad41bbbceece6aefbd91629;hb=002ee932fc0b689ce424a7ef7a1efb9491cb7ecb;hp=d78cec9f7a50d0d761f035fe77b92789b98f2d69;hpb=d570c3a5c601a7484761f547e8c655eefca70230;p=ashd.git diff --git a/python3/ashd/serve.py b/python3/ashd/serve.py index d78cec9..6111ec6 100644 --- a/python3/ashd/serve.py +++ b/python3/ashd/serve.py @@ -79,14 +79,35 @@ class handler(object): def close(self): pass + @classmethod + def parseargs(cls, **args): + if len(args) > 0: + raise ValueError("unknown handler argument: " + next(iter(args))) + return {} + class freethread(handler): - def __init__(self, **kw): + def __init__(self, *, max=None, **kw): super().__init__(**kw) self.current = set() self.lk = threading.Lock() + self.tcond = threading.Condition(self.lk) + self.max = max + + @classmethod + def parseargs(cls, *, max=None, **args): + ret = super().parseargs(**args) + if max: + ret["max"] = int(max) + return ret def handle(self, req): - reqthread(target=self.run, args=[req]).start() + with self.lk: + while self.max is not None and len(self.current) >= self.max: + self.tcond.wait() + th = reqthread(target=self.run, args=[req]) + th.start() + while th.is_alive() and th not in self.current: + self.tcond.wait() def ckflush(self, req): while len(req.buffer) > 0: @@ -98,6 +119,7 @@ class freethread(handler): th = threading.current_thread() with self.lk: self.current.add(th) + self.tcond.notify_all() try: env = req.mkenv() with perf.request(env) as reqevent: @@ -115,6 +137,7 @@ class freethread(handler): finally: with self.lk: self.current.remove(th) + self.tcond.notify_all() finally: req.close() @@ -124,11 +147,11 @@ class freethread(handler): if len(self.current) > 0: th = next(iter(self.current)) else: - th = None + return th.join() class threadpool(handler): - def __init__(self, *, min=0, max=20, live=10, **kw): + def __init__(self, *, min=0, max=20, live=300, **kw): super().__init__(**kw) self.current = set() self.free = set() @@ -142,6 +165,17 @@ class threadpool(handler): for i in range(self.min): self.newthread() + @classmethod + def parseargs(cls, *, min=None, max=None, live=None, **args): + ret = super().parseargs(**args) + if min: + ret["min"] = int(min) + if max: + ret["max"] = int(max) + if live: + ret["live"] = int(live) + return ret + def newthread(self): with self.lk: th = reqthread(target=self.loop) @@ -228,3 +262,20 @@ class threadpool(handler): names = {"free": freethread, "pool": threadpool} + +def parsehspec(spec): + if ":" not in spec: + return spec, {} + nm, spec = spec.split(":", 1) + args = {} + while spec: + if "," in spec: + part, spec = spec.split(",", 1) + else: + part, spec = spec, None + if "=" in part: + key, val = part.split("=", 1) + else: + key, val = part, "" + args[key] = val + return nm, args