2017-04-25 16:45:34 +01:00
|
|
|
"""
|
2016-09-15 01:15:43 +01:00
|
|
|
tdma.py: EMANE TDMA model bindings for CORE
|
2017-04-25 16:45:34 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
from core import emane
|
|
|
|
from core.emane.emanemodel import EmaneModel
|
|
|
|
from core.emane.universal import EmaneUniversalModel
|
|
|
|
from core.enumerations import ConfigDataTypes
|
|
|
|
from core.misc import log
|
|
|
|
|
|
|
|
logger = log.get_logger(__name__)
|
2016-09-15 01:15:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
class EmaneTdmaModel(EmaneModel):
|
2017-04-25 16:45:34 +01:00
|
|
|
def __init__(self, session, object_id=None):
|
|
|
|
EmaneModel.__init__(self, session, object_id)
|
2016-09-15 01:15:43 +01:00
|
|
|
|
|
|
|
# model name
|
2017-04-25 16:45:34 +01:00
|
|
|
name = "emane_tdma"
|
|
|
|
if emane.VERSION >= emane.EMANE101:
|
2016-09-15 01:15:43 +01:00
|
|
|
xml_path = '/usr/share/emane/xml/models/mac/tdmaeventscheduler'
|
|
|
|
else:
|
|
|
|
raise Exception("EMANE TDMA requires EMANE 1.0.1 or greater")
|
2017-04-25 16:45:34 +01:00
|
|
|
|
2016-09-15 01:15:43 +01:00
|
|
|
# MAC parameters
|
|
|
|
_confmatrix_mac = [
|
2017-04-25 16:45:34 +01:00
|
|
|
("enablepromiscuousmode", ConfigDataTypes.BOOL.value, '0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'True,False', 'enable promiscuous mode'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("flowcontrolenable", ConfigDataTypes.BOOL.value, '0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'On,Off', 'enable traffic flow control'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("flowcontroltokens", ConfigDataTypes.UINT16.value, '10',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'number of flow control tokens'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("fragmentcheckthreshold", ConfigDataTypes.UINT16.value, '2',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'rate in seconds for check if fragment reassembly efforts should be abandoned'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("fragmenttimeoutthreshold", ConfigDataTypes.UINT16.value, '5',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'threshold in seconds to wait for another packet fragment for reassembly'),
|
2017-04-25 16:45:34 +01:00
|
|
|
('neighbormetricdeletetime', ConfigDataTypes.FLOAT.value, '60.0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'neighbor RF reception timeout for removal from neighbor table (sec)'),
|
2017-04-25 16:45:34 +01:00
|
|
|
('neighbormetricupdateinterval', ConfigDataTypes.FLOAT.value, '1.0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'neighbor table update interval (sec)'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("pcrcurveuri", ConfigDataTypes.STRING.value, '%s/tdmabasemodelpcr.xml' % xml_path,
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'SINR/PCR curve file'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("queue.aggregationenable", ConfigDataTypes.BOOL.value, '1',
|
2016-09-15 01:15:43 +01:00
|
|
|
'On,Off', 'enable transmit packet aggregation'),
|
2017-04-25 16:45:34 +01:00
|
|
|
('queue.aggregationslotthreshold', ConfigDataTypes.FLOAT.value, '90.0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'percentage of a slot that must be filled in order to conclude aggregation'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("queue.depth", ConfigDataTypes.UINT16.value, '256',
|
2016-09-15 01:15:43 +01:00
|
|
|
'', 'size of the per service class downstream packet queues (packets)'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("queue.fragmentationenable", ConfigDataTypes.BOOL.value, '1',
|
2016-09-15 01:15:43 +01:00
|
|
|
'On,Off', 'enable packet fragmentation (over multiple slots)'),
|
2017-04-25 16:45:34 +01:00
|
|
|
("queue.strictdequeueenable", ConfigDataTypes.BOOL.value, '0',
|
2016-09-15 01:15:43 +01:00
|
|
|
'On,Off', 'enable strict dequeueing to specified queues only'),
|
|
|
|
]
|
|
|
|
|
|
|
|
# PHY parameters from Universal PHY
|
2017-04-25 16:45:34 +01:00
|
|
|
_confmatrix_phy = EmaneUniversalModel.config_matrix
|
2016-09-15 01:15:43 +01:00
|
|
|
|
2017-04-25 16:45:34 +01:00
|
|
|
config_matrix = _confmatrix_mac + _confmatrix_phy
|
2016-09-15 01:15:43 +01:00
|
|
|
|
|
|
|
# value groupings
|
2017-04-25 16:45:34 +01:00
|
|
|
config_groups = "TDMA MAC Parameters:1-%d|Universal PHY Parameters:%d-%d" % (
|
|
|
|
len(_confmatrix_mac), len(_confmatrix_mac) + 1, len(config_matrix))
|
2016-09-15 01:15:43 +01:00
|
|
|
|
|
|
|
def buildnemxmlfiles(self, e, ifc):
|
2017-04-25 16:45:34 +01:00
|
|
|
"""
|
|
|
|
Build the necessary nem, mac, and phy XMLs in the given path.
|
|
|
|
If an individual NEM has a nonstandard config, we need to build
|
|
|
|
that file also. Otherwise the WLAN-wide nXXemane_tdmanem.xml,
|
|
|
|
nXXemane_tdmamac.xml, nXXemane_tdmaphy.xml are used.
|
|
|
|
"""
|
|
|
|
values = e.getifcconfig(self.object_id, self.name, self.getdefaultvalues(), ifc)
|
2016-09-15 01:15:43 +01:00
|
|
|
if values is None:
|
|
|
|
return
|
|
|
|
nemdoc = e.xmldoc("nem")
|
|
|
|
nem = nemdoc.getElementsByTagName("nem").pop()
|
|
|
|
nem.setAttribute("name", "TDMA NEM")
|
2017-04-25 16:45:34 +01:00
|
|
|
e.appendtransporttonem(nemdoc, nem, self.object_id, ifc)
|
2016-09-15 01:15:43 +01:00
|
|
|
mactag = nemdoc.createElement("mac")
|
|
|
|
mactag.setAttribute("definition", self.macxmlname(ifc))
|
|
|
|
nem.appendChild(mactag)
|
|
|
|
phytag = nemdoc.createElement("phy")
|
|
|
|
phytag.setAttribute("definition", self.phyxmlname(ifc))
|
|
|
|
nem.appendChild(phytag)
|
|
|
|
e.xmlwrite(nemdoc, self.nemxmlname(ifc))
|
|
|
|
|
|
|
|
names = list(self.getnames())
|
|
|
|
macnames = names[:len(self._confmatrix_mac)]
|
|
|
|
phynames = names[len(self._confmatrix_mac):]
|
|
|
|
# make any changes to the mac/phy names here to e.g. exclude them from
|
|
|
|
# the XML output
|
|
|
|
|
|
|
|
macdoc = e.xmldoc("mac")
|
|
|
|
mac = macdoc.getElementsByTagName("mac").pop()
|
|
|
|
mac.setAttribute("name", "TDMA MAC")
|
|
|
|
mac.setAttribute("library", "tdmaeventschedulerradiomodel")
|
|
|
|
# append MAC options to macdoc
|
2017-04-25 16:45:34 +01:00
|
|
|
map(lambda n: mac.appendChild(e.xmlparam(macdoc, n, self.valueof(n, values))), macnames)
|
2016-09-15 01:15:43 +01:00
|
|
|
e.xmlwrite(macdoc, self.macxmlname(ifc))
|
|
|
|
|
|
|
|
phydoc = EmaneUniversalModel.getphydoc(e, self, values, phynames)
|
|
|
|
e.xmlwrite(phydoc, self.phyxmlname(ifc))
|