README moves to markdown
[nepi.git] / src / nepi / resources / ns3 / classes / arf_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 NS3ArfWifiManager(NS3BaseWifiRemoteStationManager):
26     _rtype = "ns3::ArfWifiManager"
27
28     @classmethod
29     def _register_attributes(cls):
30         
31         attr_timerthreshold = Attribute("TimerThreshold",
32             "The \'timer\' threshold in the ARF algorithm.",
33             type = Types.Integer,
34             default = "15",  
35             allowed = None,
36             range = None,    
37             flags = Flags.Reserved | Flags.Construct)
38
39         cls._register_attribute(attr_timerthreshold)
40
41         attr_successthreshold = Attribute("SuccessThreshold",
42             "The minimum number of sucessfull transmissions to try a new rate.",
43             type = Types.Integer,
44             default = "10",  
45             allowed = None,
46             range = None,    
47             flags = Flags.Reserved | Flags.Construct)
48
49         cls._register_attribute(attr_successthreshold)
50
51         attr_islowlatency = Attribute("IsLowLatency",
52             "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.",
53             type = Types.Bool,
54             default = "True",  
55             allowed = None,
56             range = None,    
57             flags = Flags.Reserved | Flags.Construct)
58
59         cls._register_attribute(attr_islowlatency)
60
61         attr_maxssrc = Attribute("MaxSsrc",
62             "The maximum number of retransmission attempts for an RTS. This value will not have any effect on some rate control algorithms.",
63             type = Types.Integer,
64             default = "7",  
65             allowed = None,
66             range = None,    
67             flags = Flags.Reserved | Flags.Construct)
68
69         cls._register_attribute(attr_maxssrc)
70
71         attr_maxslrc = Attribute("MaxSlrc",
72             "The maximum number of retransmission attempts for a DATA packet. This value will not have any effect on some rate control algorithms.",
73             type = Types.Integer,
74             default = "7",  
75             allowed = None,
76             range = None,    
77             flags = Flags.Reserved | Flags.Construct)
78
79         cls._register_attribute(attr_maxslrc)
80
81         attr_rtsctsthreshold = Attribute("RtsCtsThreshold",
82             "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.",
83             type = Types.Integer,
84             default = "2346",  
85             allowed = None,
86             range = None,    
87             flags = Flags.Reserved | Flags.Construct)
88
89         cls._register_attribute(attr_rtsctsthreshold)
90
91         attr_fragmentationthreshold = Attribute("FragmentationThreshold",
92             "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.",
93             type = Types.Integer,
94             default = "2346",  
95             allowed = None,
96             range = None,    
97             flags = Flags.Reserved | Flags.Construct)
98
99         cls._register_attribute(attr_fragmentationthreshold)
100
101         attr_nonunicastmode = Attribute("NonUnicastMode",
102             "Wifi mode used for non-unicast transmissions.",
103             type = Types.String,
104             default = "Invalid-WifiMode",  
105             allowed = None,
106             range = None,    
107             flags = Flags.Reserved | Flags.Construct)
108
109         cls._register_attribute(attr_nonunicastmode)
110
111         attr_defaulttxpowerlevel = Attribute("DefaultTxPowerLevel",
112             "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.",
113             type = Types.Integer,
114             default = "0",  
115             allowed = None,
116             range = None,    
117             flags = Flags.Reserved | Flags.Construct)
118
119         cls._register_attribute(attr_defaulttxpowerlevel)
120
121
122
123     @classmethod
124     def _register_traces(cls):
125         
126         mactxrtsfailed = Trace("MacTxRtsFailed", "The transmission of a RTS by the MAC layer has failed")
127
128         cls._register_trace(mactxrtsfailed)
129
130         mactxdatafailed = Trace("MacTxDataFailed", "The transmission of a data packet by the MAC layer has failed")
131
132         cls._register_trace(mactxdatafailed)
133
134         mactxfinalrtsfailed = Trace("MacTxFinalRtsFailed", "The transmission of a RTS has exceeded the maximum number of attempts")
135
136         cls._register_trace(mactxfinalrtsfailed)
137
138         mactxfinaldatafailed = Trace("MacTxFinalDataFailed", "The transmission of a data packet has exceeded the maximum number of attempts")
139
140         cls._register_trace(mactxfinaldatafailed)
141
142
143
144     def __init__(self, ec, guid):
145         super(NS3ArfWifiManager, self).__init__(ec, guid)
146         self._home = "ns3-arf-wifi-manager-%s" % self.guid