remove dependency of Config module from TrustedRoots class
[sfa.git] / sfa / util / config.py
1 ##
2 # Geniwrapper Configuration Info
3 #
4 # This module holds configuration parameters for geniwrapper. There are two
5 # main pieces of information that are used: the database connection and
6 # the PLCAPI connection
7 ##
8
9 ##
10 # Geniwrapper uses a MYSQL database to store records. This database may be
11 # co-located with the PLC database, or it may be a separate database. The
12 # following parameters define the connection to the database.
13 #
14 # Note that Geniwrapper does not access any of the PLC databases directly via
15 # a mysql connection; All PLC databases are accessed via PLCAPI.
16
17 ### $Id$
18 ### $URL$
19
20 import os.path
21 import traceback
22
23 from sfa.util.debug import log
24
25 class Config:
26     """
27     Parse the bash/Python/PHP version of the configuration file. Very
28     fast but no type conversions.
29     """
30
31     def __init__(self, config_file = "/etc/sfa/sfa_config"):
32         self.config_file = None
33         self.config_path = None
34         self.load(config_file)
35
36     def load(self, config_file):
37         try:
38             execfile(config_file, self.__dict__)
39             self.config_file = config_file
40             self.config_path = os.path.dirname(config_file)
41         except IOError, e:
42             raise IOError, "Could not find the configuration file: %s" % config_file
43
44     def get_trustedroots_dir(self):
45         return self.config_path + os.sep + 'trusted_roots'
46
47     def get_openflow_aggrMgr_info(self):
48         aggr_mgr_ip = 'localhost'
49         if (hasattr(self,'OPENFLOW_AGGREGATE_MANAGER_IP')):
50             aggr_mgr_ip = self.OPENFLOW_AGGREGATE_MANAGER_IP
51
52         aggr_mgr_port = 2603
53         if (hasattr(self,'OPENFLOW_AGGREGATE_MANAGER_PORT')):
54             aggr_mgr_port = self.OPENFLOW_AGGREGATE_MANAGER_PORT
55
56         return (aggr_mgr_ip,aggr_mgr_port)
57
58     def get_aggregate_rspec_type(self):
59         if (hasattr(self,'SFA_AGGREGATE_RSPEC_TYPE')):
60             return self.SFA_AGGREGATE_RSPEC_TYPE
61         else:
62             return "pl"
63
64     def get_plc_dbinfo(self):
65         return {
66             'dbname' : self.SFA_PLC_DB_NAME,
67             'address' : self.SFA_PLC_DB_HOST,
68             'port' : self.SFA_PLC_DB_PORT,
69             'user' : self.SFA_PLC_DB_USER,
70             'password' : self.SFA_PLC_DB_PASSWORD
71             }
72
73     ##
74     # Geniwrapper uses a PLCAPI connection to perform operations on the registry,
75     # such as creating and deleting slices. This connection requires an account
76     # on the PLC server with full administrator access.
77     #
78     # The Url parameter controls whether the connection uses PLCAPI directly (i.e.
79     # Geniwrapper is located on the same machine as PLC), or uses a XMLRPC connection
80     # to the PLC machine. If you wish to use the API directly, then remove the Url
81     # field from the dictionary. 
82
83     def get_plc_auth(self):
84         return {
85             'AuthMethod': 'capability',
86             'Username': self.SFA_PLC_USER,
87             'AuthString':  self.SFA_PLC_PASSWORD,
88             "Url": self.SFA_PLC_URL
89             }