X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python3%2Fashd-wsgi3;h=e6c39a4d0551c2b905a7d5f8053ac1b7b45ea59a;hb=c329061e49e3e62619200dd4ef61f7c096337d72;hp=da60cfaed60021061628fe2900f2e38496df8431;hpb=a83cfbbc86364b00ad24c0dc7e626345a2185287;p=ashd.git diff --git a/python3/ashd-wsgi3 b/python3/ashd-wsgi3 index da60cfa..e6c39a4 100755 --- a/python3/ashd-wsgi3 +++ b/python3/ashd-wsgi3 @@ -1,27 +1,39 @@ #!/usr/bin/python3 -import sys, os, getopt, threading, time, locale, collections -import ashd.proto, ashd.util +import sys, os, getopt, threading, logging, time, locale, collections +import ashd.proto, ashd.util, ashd.perf +try: + import pdm.srv +except: + pdm = None def usage(out): - out.write("usage: ashd-wsgi3 [-hA] [-p MODPATH] [-l REQLIMIT] HANDLER-MODULE [ARGS...]\n") + out.write("usage: ashd-wsgi3 [-hAL] [-m PDM-SPEC] [-p MODPATH] [-l REQLIMIT] HANDLER-MODULE [ARGS...]\n") reqlimit = 0 modwsgi_compat = False -opts, args = getopt.getopt(sys.argv[1:], "+hAp:l:") +setlog = True +opts, args = getopt.getopt(sys.argv[1:], "+hALp:l:m:") for o, a in opts: if o == "-h": usage(sys.stdout) sys.exit(0) elif o == "-p": sys.path.insert(0, a) + elif o == "-L": + setlog = False elif o == "-A": modwsgi_compat = True elif o == "-l": reqlimit = int(a) + elif o == "-m": + if pdm is not None: + pdm.srv.listen(a) if len(args) < 1: usage(sys.stderr) sys.exit(1) +if setlog: + logging.basicConfig(format="ashd-wsgi3(%(name)s): %(levelname)s: %(message)s") try: handlermod = __import__(args[0], fromlist = ["dummy"]) @@ -178,18 +190,21 @@ def dowsgi(req): resp[:] = status, headers return write - respiter = handler(env, startreq) - try: + with ashd.perf.request(env) as reqevent: + respiter = handler(env, startreq) try: - for data in respiter: - write(data) - if resp: - flushreq() - except closed: - pass - finally: - if hasattr(respiter, "close"): - respiter.close() + try: + for data in respiter: + write(data) + if resp: + flushreq() + except closed: + pass + finally: + if hasattr(respiter, "close"): + respiter.close() + if resp: + reqevent.response(resp) flightlock = threading.Condition() inflight = 0