Use function for sending krpc responses, and add spew parameter.
[quix0rs-apt-p2p.git] / apt_dht / apt_dht_conf.py
1
2 import os, sys
3 from ConfigParser import SafeConfigParser
4
5 from twisted.python import log, versions
6
7 class ConfigError(Exception):
8     def __init__(self, message):
9         self.message = message
10     def __str__(self):
11         return repr(self.message)
12
13 version = versions.Version('apt-dht', 0, 0, 0)
14 home = os.path.expandvars('${HOME}')
15 if home == '${HOME}' or not os.path.isdir(home):
16     home = os.path.expanduser('~')
17     if not os.path.isdir(home):
18         home = os.path.abspath(os.path.dirname(sys.argv[0]))
19
20 DEFAULTS = {
21
22     # Port to listen on for all requests (TCP and UDP)
23     'PORT': '9977',
24     
25     # Directory to store the downloaded files in
26     'CACHE_DIR': home + '/.apt-dht/cache',
27     
28     # User name to try and run as
29     'USERNAME': '',
30
31     # Which DHT implementation to use.
32     # It must be possile to do "from <DHT>.DHT import DHT" to get a class that
33     # implements the IDHT interface.
34     'DHT': 'apt_dht_Khashmir',
35
36     # Whether to only run the DHT (for providing only a bootstrap node)
37     'DHT-ONLY': 'no',
38 }
39
40 DHT_DEFAULTS = {
41     # bootstrap nodes to contact to join the DHT
42     'BOOTSTRAP': """www.camrdale.org:9977
43         steveholt.hopto.org:9976""",
44     
45     # whether this node is a bootstrap node
46     'BOOTSTRAP_NODE': "no",
47     
48     # Kademlia "K" constant, this should be an even number
49     'K': '8',
50     
51     # SHA1 is 160 bits long
52     'HASH_LENGTH': '160',
53     
54     # checkpoint every this many seconds
55     'CHECKPOINT_INTERVAL': '15m', # fifteen minutes
56     
57     ### SEARCHING/STORING
58     # concurrent xmlrpc calls per find node/value request!
59     'CONCURRENT_REQS': '4',
60     
61     # how many hosts to post to
62     'STORE_REDUNDANCY': '3',
63     
64     ###  ROUTING TABLE STUFF
65     # how many times in a row a node can fail to respond before it's booted from the routing table
66     'MAX_FAILURES': '3',
67     
68     # never ping a node more often than this
69     'MIN_PING_INTERVAL': '15m', # fifteen minutes
70     
71     # refresh buckets that haven't been touched in this long
72     'BUCKET_STALENESS': '1h', # one hour
73     
74     ###  KEY EXPIRER
75     # time before expirer starts running
76     'KEINITIAL_DELAY': '15s', # 15 seconds - to clean out old stuff in persistent db
77     
78     # time between expirer runs
79     'KE_DELAY': '20m', # 20 minutes
80     
81     # expire entries older than this
82     'KE_AGE': '1h', # 60 minutes
83     
84     # whether to spew info about the requests/responses in the protocol
85     'SPEW': 'yes',
86 }
87
88 class AptDHTConfigParser(SafeConfigParser):
89     """
90     Adds 'gettime' to ConfigParser to interpret the suffixes.
91     """
92     time_multipliers={
93         's': 1,    #seconds
94         'm': 60,   #minutes
95         'h': 3600, #hours
96         'd': 86400,#days
97         }
98
99     def gettime(self, section, option):
100         mult = 1
101         value = self.get(section, option)
102         if len(value) == 0:
103             raise ConfigError("Configuration parse error: [%s] %s" % (section, option))
104         suffix = value[-1].lower()
105         if suffix in self.time_multipliers.keys():
106             mult = self.time_multipliers[suffix]
107             value = value[:-1]
108         return int(value)*mult
109     def getstring(self, section, option):
110         return self.get(section,option)
111     def getstringlist(self, section, option):
112         return self.get(section,option).split()
113     def optionxform(self, option):
114         return option.upper()
115
116 config = AptDHTConfigParser(DEFAULTS)
117 config.add_section(config.get('DEFAULT', 'DHT'))
118 for k in DHT_DEFAULTS:
119     config.set(config.get('DEFAULT', 'DHT'), k, DHT_DEFAULTS[k])