README moves to markdown
[nepi.git] / nepi / resources / ns3 / classes / minstrel_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 version 2 as
7 #    published by the Free Software Foundation;
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17
18 from nepi.execution.attribute import Attribute, Flags, Types
19 from nepi.execution.trace import Trace, TraceAttr
20 from nepi.execution.resource import ResourceManager, clsinit_copy, \
21         ResourceState
22 from nepi.resources.ns3.ns3wifiremotestationmanager import NS3BaseWifiRemoteStationManager 
23
24 @clsinit_copy
25 class NS3MinstrelWifiManager(NS3BaseWifiRemoteStationManager):
26     _rtype = "ns3::MinstrelWifiManager"
27
28     @classmethod
29     def _register_attributes(cls):
30         
31         attr_updatestatistics = Attribute("UpdateStatistics",
32             "The interval between updating statistics table ",
33             type = Types.String,
34             default = "+100000000.0ns",  
35             allowed = None,
36             range = None,    
37             flags = Flags.Reserved | Flags.Construct)
38
39         cls._register_attribute(attr_updatestatistics)
40
41         attr_lookaroundrate = Attribute("LookAroundRate",
42             "the percentage to try other rates",
43             type = Types.Double,
44             default = "10",  
45             allowed = None,
46             range = None,    
47             flags = Flags.Reserved | Flags.Construct)
48
49         cls._register_attribute(attr_lookaroundrate)
50
51         attr_ewma = Attribute("EWMA",
52             "EWMA level",
53             type = Types.Double,
54             default = "75",  
55             allowed = None,
56             range = None,    
57             flags = Flags.Reserved | Flags.Construct)
58
59         cls._register_attribute(attr_ewma)
60
61         attr_samplecolumn = Attribute("SampleColumn",
62             "The number of columns used for sampling",
63             type = Types.Double,
64             default = "10",  
65             allowed = None,
66             range = None,    
67             flags = Flags.Reserved | Flags.Construct)
68
69         cls._register_attribute(attr_samplecolumn)
70
71         attr_packetlength = Attribute("PacketLength",
72             "The packet length used for calculating mode TxTime",
73             type = Types.Double,
74             default = "1200",  
75             allowed = None,
76             range = None,    
77             flags = Flags.Reserved | Flags.Construct)
78
79         cls._register_attribute(attr_packetlength)
80
81         attr_islowlatency = Attribute("IsLowLatency",
82             "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.",
83             type = Types.Bool,
84             default = "True",  
85             allowed = None,
86             range = None,    
87             flags = Flags.Reserved | Flags.Construct)
88
89         cls._register_attribute(attr_islowlatency)
90
91         attr_maxssrc = Attribute("MaxSsrc",
92             "The maximum number of retransmission attempts for an RTS. This value will not have any effect on some rate control algorithms.",
93             type = Types.Integer,
94             default = "7",  
95             allowed = None,
96             range = None,    
97             flags = Flags.Reserved | Flags.Construct)
98
99         cls._register_attribute(attr_maxssrc)
100
101         attr_maxslrc = Attribute("MaxSlrc",
102             "The maximum number of retransmission attempts for a DATA packet. This value will not have any effect on some rate control algorithms.",
103             type = Types.Integer,
104             default = "7",  
105             allowed = None,
106             range = None,    
107             flags = Flags.Reserved | Flags.Construct)
108
109         cls._register_attribute(attr_maxslrc)
110
111         attr_rtsctsthreshold = Attribute("RtsCtsThreshold",
112             "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.",
113             type = Types.Integer,
114             default = "2346",  
115             allowed = None,
116             range = None,    
117             flags = Flags.Reserved | Flags.Construct)
118
119         cls._register_attribute(attr_rtsctsthreshold)
120
121         attr_fragmentationthreshold = Attribute("FragmentationThreshold",
122             "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.",
123             type = Types.Integer,
124             default = "2346",  
125             allowed = None,
126             range = None,    
127             flags = Flags.Reserved | Flags.Construct)
128
129         cls._register_attribute(attr_fragmentationthreshold)
130
131         attr_nonunicastmode = Attribute("NonUnicastMode",
132             "Wifi mode used for non-unicast transmissions.",
133             type = Types.String,
134             default = "Invalid-WifiMode",  
135             allowed = None,
136             range = None,    
137             flags = Flags.Reserved | Flags.Construct)
138
139         cls._register_attribute(attr_nonunicastmode)
140
141         attr_defaulttxpowerlevel = Attribute("DefaultTxPowerLevel",
142             "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.",
143             type = Types.Integer,
144             default = "0",  
145             allowed = None,
146             range = None,    
147             flags = Flags.Reserved | Flags.Construct)
148
149         cls._register_attribute(attr_defaulttxpowerlevel)
150
151
152
153     @classmethod
154     def _register_traces(cls):
155         
156         mactxrtsfailed = Trace("MacTxRtsFailed", "The transmission of a RTS by the MAC layer has failed")
157
158         cls._register_trace(mactxrtsfailed)
159
160         mactxdatafailed = Trace("MacTxDataFailed", "The transmission of a data packet by the MAC layer has failed")
161
162         cls._register_trace(mactxdatafailed)
163
164         mactxfinalrtsfailed = Trace("MacTxFinalRtsFailed", "The transmission of a RTS has exceeded the maximum number of attempts")
165
166         cls._register_trace(mactxfinalrtsfailed)
167
168         mactxfinaldatafailed = Trace("MacTxFinalDataFailed", "The transmission of a data packet has exceeded the maximum number of attempts")
169
170         cls._register_trace(mactxfinaldatafailed)
171
172
173
174     def __init__(self, ec, guid):
175         super(NS3MinstrelWifiManager, self).__init__(ec, guid)
176         self._home = "ns3-minstrel-wifi-manager-%s" % self.guid