-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration.py
42 lines (35 loc) · 1.48 KB
/
configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import configparser
import os.path
import logging
class Configuration:
"""
parse and validates information provided by
"""
demandedConfigurationKeys = []
configfile = ""
def __init__(self, configfile, demandedConfigurationKeys=[]):
self.configfile = configfile
if os.path.exists(self.configfile):
self.demandedConfigurationKeys = demandedConfigurationKeys
self.integrateDataFromConfigfile()
else:
logging.error("config file '%s' not found" % (configfile))
raise Exception(
"no configuration present in file '%s'" % (configfile))
def integrateDataFromConfigfile(self) -> None:
config = configparser.ConfigParser()
config.read(self.configfile)
configvalues = dict(config.items("ServiceConfiguration"))
# set all configuration values as object properties
for key in configvalues:
setattr(self, key, configvalues[key])
if configvalues[key]:
try:
self.demandedConfigurationKeys.remove(key)
except:
pass
logging.debug("configuration: %s=%s" % (key, configvalues[key]))
# test if all mandatory configuration values are present
if(len(self.demandedConfigurationKeys) != 0):
raise Exception("The following values are missing in config file '%s': %s" % (
self.configfile, self.demandedConfigurationKeys))