Lots of work on the motivating paper, and a new figure.
[quix0rs-apt-p2p.git] / apt-dht.py
1 #!/usr/bin/env python
2
3 # Load apt-dht application
4 #
5 # There are two ways apt-dht can be started:
6 #  1. twistd -y apt-dht
7 #     - twistd will load this file and execute the app
8 #       in 'application' variable
9 #  2. from command line
10 #     - __name__ will be '__main__'
11
12 import pwd,sys
13
14 from twisted.application import service, internet, app, strports
15 from twisted.internet import reactor
16 from twisted.python import usage, log
17 from twisted.web2 import channel
18
19 from apt_dht.apt_dht_conf import config, version
20 from apt_dht.interfaces import IDHT
21
22 config_file = []
23
24 if __name__ == '__main__':
25     # Parse command line parameters when started on command line
26     class AptDHTOptions(usage.Options):
27         optFlags = [
28             ['help', 'h', 'Print this help message'],
29             ]
30         optParameters = [
31             ['config-file', 'c', [], "Configuration file"],
32             ['log-file', 'l', '-', "File to log to, - for stdout"],
33             ]
34         longdesc="apt-dht is a peer-to-peer downloader for apt users"
35         def opt_version(self):
36             print "apt-dht %s" % version.short()
37             sys.exit(0)
38
39     opts = AptDHTOptions()
40     try:
41         opts.parseOptions()
42     except usage.UsageError, ue:
43         print '%s: %s' % (sys.argv[0], ue)
44         sys.exit(1)
45
46     config_file = opts.opts['config-file']
47     log_file = opts.opts['log-file']
48     if log_file == '-':
49         f = sys.stdout
50     else:
51         f = open(log_file, 'w')
52     log.startLogging(f, setStdout=1)
53
54 config.read(config_file)
55 if config.has_option('DEFAULT', 'username') and config.get('DEFAULT', 'username'):
56     uid,gid = pwd.getpwnam(config.get('DEFAULT', 'username'))[2:4]
57 else:
58     uid,gid = None,None
59
60 log.msg('Starting application')
61 application = service.Application("apt-dht", uid, gid)
62 #print service.IProcess(application).processName
63 #service.IProcess(application).processName = 'apt-dht'
64
65 log.msg('Starting DHT')
66 DHT = __import__(config.get('DEFAULT', 'DHT')+'.DHT', globals(), locals(), ['DHT'])
67 assert IDHT.implementedBy(DHT.DHT), "You must provide a DHT implementation that implements the IDHT interface."
68 myDHT = DHT.DHT()
69
70 if not config.getboolean('DEFAULT', 'DHT-only'):
71     log.msg('Starting main application server')
72     from apt_dht.apt_dht import AptDHT
73     myapp = AptDHT(myDHT)
74     factory = myapp.getHTTPFactory()
75     s = strports.service('tcp:'+config.get('DEFAULT', 'port'), factory)
76     s.setServiceParent(application)
77 else:
78     myDHT.loadConfig(config, config.get('DEFAULT', 'DHT'))
79     myDHT.join()
80
81 if __name__ == '__main__':
82     # Run on command line
83     service.IServiceCollection(application).privilegedStartService()
84     service.IServiceCollection(application).startService()
85     reactor.run()