blob: a9fa3c33958a0becae1cfcc1177d0db6aefe9e09 [file] [log] [blame]
Chetan Gaonkercfcce782016-05-10 10:10:42 -07001#
2# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonker7997bb42016-03-28 09:46:15 -070016import os
17import json
18##load the olt config
19
20class OltConfig:
21 def __init__(self, olt_conf_file = ''):
22 if not olt_conf_file:
23 self.olt_conf_file = os.getenv('OLT_CONFIG')
24 else:
25 self.olt_conf_file = olt_conf_file
26 try:
27 self.olt_handle = open(self.olt_conf_file, 'r')
28 self.olt_conf = json.load(self.olt_handle)
Chetan Gaonker4ca5cca2016-04-11 13:59:35 -070029 self.olt_conf['olt'] = True
Chetan Gaonker7997bb42016-03-28 09:46:15 -070030 except:
31 self.olt_handle = None
32 self.olt_conf = {}
33 self.olt_conf['olt'] = False
34
35 def on_olt(self):
36 return self.olt_conf['olt'] is True
37
38 def olt_port_map(self):
Chetan Gaonker5209fe82016-04-19 10:09:53 -070039 if self.on_olt() and self.olt_conf.has_key('port_map'):
Chetan Gaonker7997bb42016-03-28 09:46:15 -070040 port_map = {}
Chetan Gaonker5209fe82016-04-19 10:09:53 -070041 port_map['ports'] = self.olt_conf['port_map']['ports']
42 port_map['start_vlan'] = 0
43 if self.olt_conf['port_map'].has_key('host'):
44 port_map['host'] = self.olt_conf['port_map']['host']
45 else:
46 port_map['host'] = 'ovsbr0'
47 if self.olt_conf['port_map'].has_key('start_vlan'):
48 port_map['start_vlan'] = int(self.olt_conf['port_map']['start_vlan'])
49
Chetan Gaonker7997bb42016-03-28 09:46:15 -070050 ##Build a rx/tx port number to interface map
Chetan Gaonker5209fe82016-04-19 10:09:53 -070051 port_map[1] = self.olt_conf['port_map']['rx']
52 port_map[2] = self.olt_conf['port_map']['tx']
Chetan Gaonker7997bb42016-03-28 09:46:15 -070053 port_map[port_map[1]] = 1
54 port_map[port_map[2]] = 2
55 return port_map
56 else:
57 return None
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070058
59 def olt_device_data(self):
60 if self.on_olt():
61 accessDeviceDict = {}
62 accessDeviceDict['uplink'] = str(self.olt_conf['uplink'])
63 accessDeviceDict['vlan'] = str(self.olt_conf['vlan'])
64 return accessDeviceDict
65 return None