f01a090ce3413b8d7a648401c73820c16427c5d2
[nepi.git] / src / nepi / resources / ns3 / classes / onoe_wifi_manager.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2014 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 from nepi.execution.attribute import Attribute, Flags, Types
20 from nepi.execution.trace import Trace, TraceAttr
21 from nepi.execution.resource import ResourceManager, clsinit_copy, \
22         ResourceState, reschedule_delay
23 from nepi.resources.ns3.ns3wifiremotestationmanager import NS3BaseWifiRemoteStationManager 
24
25 @clsinit_copy
26 class NS3OnoeWifiManager(NS3BaseWifiRemoteStationManager):
27     _rtype = "ns3::OnoeWifiManager"
28
29     @classmethod
30     def _register_attributes(cls):
31         
32         attr_updateperiod = Attribute("UpdatePeriod",
33             "The interval between decisions about rate control changes",
34             type = Types.String,
35             default = "+1000000000.0ns",  
36             allowed = None,
37             range = None,    
38             flags = Flags.Reserved | Flags.Construct)
39
40         cls._register_attribute(attr_updateperiod)
41
42         attr_raisethreshold = Attribute("RaiseThreshold",
43             "Attempt to raise the rate if we hit that threshold",
44             type = Types.Integer,
45             default = "10",  
46             allowed = None,
47             range = None,    
48             flags = Flags.Reserved | Flags.Construct)
49
50         cls._register_attribute(attr_raisethreshold)
51
52         attr_addcreditthreshold = Attribute("AddCreditThreshold",
53             "Add credit threshold",
54             type = Types.Integer,
55             default = "10",  
56             allowed = None,
57             range = None,    
58             flags = Flags.Reserved | Flags.Construct)
59
60         cls._register_attribute(attr_addcreditthreshold)
61
62         attr_islowlatency = Attribute("IsLowLatency",
63             "If true, we attempt to modelize a so-called low-latency device: a device where decisions about tx parameters can be made on a per-packet basis and feedback about the transmission of each packet is obtained before sending the next. Otherwise, we modelize a  high-latency device, that is a device where we cannot update our decision about tx parameters after every packet transmission.",
64             type = Types.Bool,
65             default = "True",  
66             allowed = None,
67             range = None,    
68             flags = Flags.Reserved | Flags.Construct)
69
70         cls._register_attribute(attr_islowlatency)
71
72         attr_maxssrc = Attribute("MaxSsrc",
73             "The maximum number of retransmission attempts for an RTS. This value will not have any effect on some rate control algorithms.",
74             type = Types.Integer,
75             default = "7",  
76             allowed = None,
77             range = None,    
78             flags = Flags.Reserved | Flags.Construct)
79
80         cls._register_attribute(attr_maxssrc)
81
82         attr_maxslrc = Attribute("MaxSlrc",
83             "The maximum number of retransmission attempts for a DATA packet. This value will not have any effect on some rate control algorithms.",
84             type = Types.Integer,
85             default = "7",  
86             allowed = None,
87             range = None,    
88             flags = Flags.Reserved | Flags.Construct)
89
90         cls._register_attribute(attr_maxslrc)
91
92         attr_rtsctsthreshold = Attribute("RtsCtsThreshold",
93             "If  the size of the data packet + LLC header + MAC header + FCS trailer is bigger than this value, we use an RTS/CTS handshake before sending the data, as per IEEE Std. 802.11-2012, Section 9.3.5. This value will not have any effect on some rate control algorithms.",
94             type = Types.Integer,
95             default = "2346",  
96             allowed = None,
97             range = None,    
98             flags = Flags.Reserved | Flags.Construct)
99
100         cls._register_attribute(attr_rtsctsthreshold)
101
102         attr_fragmentationthreshold = Attribute("FragmentationThreshold",
103             "If the size of the data packet + LLC header + MAC header + FCS trailer is biggerthan this value, we fragment it such that the size of the fragments are equal or smaller than this value, as per IEEE Std. 802.11-2012, Section 9.5. This value will not have any effect on some rate control algorithms.",
104             type = Types.Integer,
105             default = "2346",  
106             allowed = None,
107             range = None,    
108             flags = Flags.Reserved | Flags.Construct)
109
110         cls._register_attribute(attr_fragmentationthreshold)
111
112         attr_nonunicastmode = Attribute("NonUnicastMode",
113             "Wifi mode used for non-unicast transmissions.",
114             type = Types.String,
115             default = "Invalid-WifiMode",  
116             allowed = None,
117             range = None,    
118             flags = Flags.Reserved | Flags.Construct)
119
120         cls._register_attribute(attr_nonunicastmode)
121
122         attr_defaulttxpowerlevel = Attribute("DefaultTxPowerLevel",
123             "Default power level to be used for transmissions. This is the power level that is used by all those WifiManagers that do notimplement TX power control.",
124             type = Types.Integer,
125             default = "0",  
126             allowed = None,
127             range = None,    
128             flags = Flags.Reserved | Flags.Construct)
129
130         cls._register_attribute(attr_defaulttxpowerlevel)
131
132
133
134     @classmethod
135     def _register_traces(cls):
136         
137         mactxrtsfailed = Trace("MacTxRtsFailed", "The transmission of a RTS by the MAC layer has failed")
138
139         cls._register_trace(mactxrtsfailed)
140
141         mactxdatafailed = Trace("MacTxDataFailed", "The transmission of a data packet by the MAC layer has failed")
142
143         cls._register_trace(mactxdatafailed)
144
145         mactxfinalrtsfailed = Trace("MacTxFinalRtsFailed", "The transmission of a RTS has exceeded the maximum number of attempts")
146
147         cls._register_trace(mactxfinalrtsfailed)
148
149         mactxfinaldatafailed = Trace("MacTxFinalDataFailed", "The transmission of a data packet has exceeded the maximum number of attempts")
150
151         cls._register_trace(mactxfinaldatafailed)
152
153
154
155     def __init__(self, ec, guid):
156         super(NS3OnoeWifiManager, self).__init__(ec, guid)
157         self._home = "ns3-onoe-wifi-manager-%s" % self.guid