2016-12-06 13:04:52 +01:00
|
|
|
import ConfigParser
|
2017-01-15 10:50:02 +01:00
|
|
|
import datetime
|
|
|
|
import shutil
|
|
|
|
import os
|
2016-12-06 10:47:39 +01:00
|
|
|
|
2017-01-11 14:27:19 +01:00
|
|
|
from singleton import Singleton
|
2017-01-15 10:50:02 +01:00
|
|
|
import state
|
2017-01-11 14:27:19 +01:00
|
|
|
|
2017-05-15 12:18:07 +02:00
|
|
|
BMConfigDefaults = {
|
|
|
|
"bitmessagesettings": {
|
|
|
|
"maxaddrperstreamsend": 500,
|
|
|
|
"maxbootstrapconnections": 20,
|
2017-05-24 16:49:16 +02:00
|
|
|
"maxdownloadrate": 0,
|
2017-05-15 12:18:07 +02:00
|
|
|
"maxoutboundconnections": 8,
|
|
|
|
"maxtotalconnections": 200,
|
2017-05-24 16:49:16 +02:00
|
|
|
"maxuploadrate": 0,
|
|
|
|
},
|
2017-07-10 07:08:10 +02:00
|
|
|
"threads": {
|
|
|
|
"receive": 3,
|
|
|
|
},
|
2017-05-24 16:49:16 +02:00
|
|
|
"network": {
|
2017-08-09 17:34:47 +02:00
|
|
|
"bind": '',
|
2018-02-03 11:46:39 +01:00
|
|
|
"dandelion": 90,
|
2017-05-27 19:09:21 +02:00
|
|
|
},
|
|
|
|
"inventory": {
|
|
|
|
"storage": "sqlite",
|
2017-06-02 15:43:35 +02:00
|
|
|
"acceptmismatch": False,
|
2017-05-15 12:18:07 +02:00
|
|
|
},
|
2017-06-24 12:17:01 +02:00
|
|
|
"knownnodes": {
|
|
|
|
"maxnodes": 20000,
|
|
|
|
},
|
2017-05-15 12:18:07 +02:00
|
|
|
"zlib": {
|
|
|
|
'maxsize': 1048576
|
|
|
|
}
|
|
|
|
}
|
2017-01-11 14:27:19 +01:00
|
|
|
|
|
|
|
@Singleton
|
2016-12-06 13:04:52 +01:00
|
|
|
class BMConfigParser(ConfigParser.SafeConfigParser):
|
2016-12-06 10:47:39 +01:00
|
|
|
def set(self, section, option, value=None):
|
2016-12-06 11:01:17 +01:00
|
|
|
if self._optcre is self.OPTCRE or value:
|
|
|
|
if not isinstance(value, basestring):
|
|
|
|
raise TypeError("option values must be strings")
|
2017-06-27 13:19:12 +02:00
|
|
|
if not self.validate(section, option, value):
|
|
|
|
raise ValueError("Invalid value %s" % str(value))
|
2016-12-06 13:04:52 +01:00
|
|
|
return ConfigParser.ConfigParser.set(self, section, option, value)
|
2016-12-06 11:01:17 +01:00
|
|
|
|
2017-06-24 12:13:35 +02:00
|
|
|
def get(self, section, option, raw=False, variables=None):
|
2017-05-24 16:49:16 +02:00
|
|
|
try:
|
|
|
|
if section == "bitmessagesettings" and option == "timeformat":
|
2017-06-24 12:13:35 +02:00
|
|
|
return ConfigParser.ConfigParser.get(self, section, option, raw, variables)
|
|
|
|
return ConfigParser.ConfigParser.get(self, section, option, True, variables)
|
2017-05-24 16:49:16 +02:00
|
|
|
except ConfigParser.InterpolationError:
|
2017-06-24 12:13:35 +02:00
|
|
|
return ConfigParser.ConfigParser.get(self, section, option, True, variables)
|
2017-05-15 12:18:07 +02:00
|
|
|
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError) as e:
|
|
|
|
try:
|
|
|
|
return BMConfigDefaults[section][option]
|
2017-05-24 16:49:16 +02:00
|
|
|
except (KeyError, ValueError, AttributeError):
|
2017-05-15 12:18:07 +02:00
|
|
|
raise e
|
2016-12-06 11:01:17 +01:00
|
|
|
|
2017-01-11 14:27:19 +01:00
|
|
|
def safeGetBoolean(self, section, field):
|
2017-05-15 12:18:07 +02:00
|
|
|
try:
|
|
|
|
return self.getboolean(section, field)
|
2017-05-24 16:49:16 +02:00
|
|
|
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError, ValueError, AttributeError):
|
2017-05-15 12:18:07 +02:00
|
|
|
return False
|
2017-01-11 14:27:19 +01:00
|
|
|
|
2017-02-26 17:46:02 +01:00
|
|
|
def safeGetInt(self, section, field, default=0):
|
2017-05-15 12:18:07 +02:00
|
|
|
try:
|
|
|
|
return self.getint(section, field)
|
2017-05-24 16:49:16 +02:00
|
|
|
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError, ValueError, AttributeError):
|
2017-05-15 12:18:07 +02:00
|
|
|
return default
|
2017-01-14 23:18:06 +01:00
|
|
|
|
2017-01-11 14:27:19 +01:00
|
|
|
def safeGet(self, section, option, default = None):
|
2017-05-15 12:18:07 +02:00
|
|
|
try:
|
2017-01-11 14:27:19 +01:00
|
|
|
return self.get(section, option)
|
2017-05-24 16:49:16 +02:00
|
|
|
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError, ValueError, AttributeError):
|
2017-01-11 14:27:19 +01:00
|
|
|
return default
|
|
|
|
|
2017-06-24 12:13:35 +02:00
|
|
|
def items(self, section, raw=False, variables=None):
|
|
|
|
return ConfigParser.ConfigParser.items(self, section, True, variables)
|
2016-12-06 11:01:17 +01:00
|
|
|
|
2017-05-15 12:18:07 +02:00
|
|
|
def addresses(self):
|
|
|
|
return filter(lambda x: x.startswith('BM-'), BMConfigParser().sections())
|
|
|
|
|
2017-06-27 13:19:12 +02:00
|
|
|
def read(self, filenames):
|
|
|
|
ConfigParser.ConfigParser.read(self, filenames)
|
|
|
|
for section in self.sections():
|
|
|
|
for option in self.options(section):
|
|
|
|
try:
|
|
|
|
if not self.validate(section, option, ConfigParser.ConfigParser.get(self, section, option)):
|
|
|
|
try:
|
|
|
|
newVal = BMConfigDefaults[section][option]
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
ConfigParser.ConfigParser.set(self, section, option, newVal)
|
|
|
|
except ConfigParser.InterpolationError:
|
|
|
|
continue
|
|
|
|
|
2017-01-15 10:50:02 +01:00
|
|
|
def save(self):
|
|
|
|
fileName = os.path.join(state.appdata, 'keys.dat')
|
|
|
|
fileNameBak = fileName + "." + datetime.datetime.now().strftime("%Y%j%H%M%S%f") + '.bak'
|
|
|
|
# create a backup copy to prevent the accidental loss due to the disk write failure
|
|
|
|
try:
|
|
|
|
shutil.copyfile(fileName, fileNameBak)
|
|
|
|
# The backup succeeded.
|
|
|
|
fileNameExisted = True
|
2017-02-08 14:19:02 +01:00
|
|
|
except (IOError, Exception):
|
2017-01-15 10:50:02 +01:00
|
|
|
# The backup failed. This can happen if the file didn't exist before.
|
|
|
|
fileNameExisted = False
|
|
|
|
# write the file
|
|
|
|
with open(fileName, 'wb') as configfile:
|
|
|
|
self.write(configfile)
|
|
|
|
# delete the backup
|
|
|
|
if fileNameExisted:
|
|
|
|
os.remove(fileNameBak)
|
2017-06-27 13:19:12 +02:00
|
|
|
|
|
|
|
def validate(self, section, option, value):
|
|
|
|
try:
|
|
|
|
return getattr(self, "validate_%s_%s" % (section, option))(value)
|
|
|
|
except AttributeError:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def validate_bitmessagesettings_maxoutboundconnections(self, value):
|
|
|
|
try:
|
|
|
|
value = int(value)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
if value < 0 or value > 8:
|
|
|
|
return False
|
|
|
|
return True
|