]> jfr.im git - irc/quakenet/qwebirc.git/blame - run.py
Accept opmenu into default branch.
[irc/quakenet/qwebirc.git] / run.py
CommitLineData
8b8ebb78 1#!/usr/bin/env python
1d924d97 2# this entire thing is a hack and badly needs reimplementing
a409b906
CP
3import bin.compile
4bin.compile.vcheck()
5
8b8ebb78
CP
6DEFAULT_PORT = 9090
7
8from twisted.scripts.twistd import run
9from optparse import OptionParser
42fdc4c6 10import sys, os, config
8b8ebb78
CP
11
12def run_twistd(args1=None, args2=None):
13 args = [sys.argv[0]]
14 if args1 is not None:
15 args.extend(args1)
16 args.append("qwebirc")
17 if args2 is not None:
18 args.extend(args2)
19 sys.argv = args
20 run()
21
22def help_reactors(*args):
23 run_twistd(["--help-reactors"])
24 sys.exit(1)
25
26DEFAULT_REACTOR = "select" if os.name == "nt" else "poll"
27
28parser = OptionParser()
29parser.add_option("-n", "--no-daemon", help="Don't run in the background.", action="store_false", dest="daemonise", default=True)
30parser.add_option("--help-reactors", help="Display a list of reactor names.", action="callback", callback=help_reactors)
31parser.add_option("-b", "--debug", help="Run in the Python Debugger.", action="store_true", dest="debug", default=False)
0f3c92dc 32parser.add_option("-t", "--tracebacks", help="Display tracebacks in error pages (this reveals a LOT of information, do NOT use in production!)", action="store_true", dest="tracebacks", default=False)
8b8ebb78
CP
33parser.add_option("-r", "--reactor", help="Which reactor to use (see --help-reactors for a list).", dest="reactor", default=DEFAULT_REACTOR)
34parser.add_option("-p", "--port", help="Port to start the server on.", type="int", dest="port", default=DEFAULT_PORT)
35parser.add_option("-l", "--logfile", help="Path to twisted log file.", dest="logfile")
36parser.add_option("-c", "--clf", help="Path to web CLF (Combined Log Format) log file.", dest="clogfile")
42fdc4c6
CP
37
38sargs = sys.argv[1:]
39if "ARGS" in dir(config):
40 import shlex
41 sargs = shlex.split(config.ARGS) + sargs
42
43(options, args) = parser.parse_args(args=sargs)
8b8ebb78
CP
44
45args1, args2 = [], []
46
47if not options.daemonise:
48 args1.append("-n")
49if options.debug:
50 args1.append("-b")
4bc06f30
CP
51
52if options.reactor != DEFAULT_REACTOR:
53 args1+=["--reactor", options.reactor]
8b8ebb78
CP
54if options.logfile:
55 args+=["--logfile", options.logfile]
56
57args2+=["--port", options.port]
0f3c92dc
CP
58if not options.tracebacks:
59 args2.append("-n")
8b8ebb78
CP
60if options.clogfile:
61 args2+=["--logfile", options.clogfile]
0f3c92dc 62
8b8ebb78 63run_twistd(args1, args2)