Changing reschedule_delay internals
[nepi.git] / src / nepi / resources / ns3 / classes / constant_rate_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
23 from nepi.resources.ns3.ns3wifiremotestationmanager import NS3BaseWifiRemoteStationManager 
24
25 @clsinit_copy
26 class NS3ConstantRateWifiManager(NS3BaseWifiRemoteStationManager):
27     _rtype = "ns3::ConstantRateWifiManager"
28
29     @classmethod
30     def _register_attributes(cls):
31         
32         attr_datamode = Attribute("DataMode",
33             "The transmission mode to use for every data packet transmission",
34             type = Types.String,
35             default = "OfdmRate6Mbps",  
36             allowed = None,
37             range = None,    
38             flags = Flags.Reserved | Flags.Construct)
39
40         cls._register_attribute(attr_datamode)
41
42         attr_controlmode = Attribute("ControlMode",
43             "The transmission mode to use for every control packet transmission.",
44             type = Types.String,
45             default = "OfdmRate6Mbps",  
46             allowed = None,
47             range = None,    
48             flags = Flags.Reserved | Flags.Construct)
49
50         cls._register_attribute(attr_controlmode)
51
52         attr_islowlatency = Attribute("IsLowLatency",
53             "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.",
54             type = Types.Bool,
55             default = "True",  
56             allowed = None,
57             range = None,    
58             flags = Flags.Reserved | Flags.Construct)
59
60         cls._register_attribute(attr_islowlatency)
61
62         attr_maxssrc = Attribute("MaxSsrc",
63             "The maximum number of retransmission attempts for an RTS. This value will not have any effect on some rate control algorithms.",
64             type = Types.Integer,
65             default = "7",  
66             allowed = None,
67             range = None,    
68             flags = Flags.Reserved | Flags.Construct)
69
70         cls._register_attribute(attr_maxssrc)
71
72         attr_maxslrc = Attribute("MaxSlrc",
73             "The maximum number of retransmission attempts for a DATA packet. 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_maxslrc)
81
82         attr_rtsctsthreshold = Attribute("RtsCtsThreshold",
83             "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.",
84             type = Types.Integer,
85             default = "2346",  
86             allowed = None,
87             range = None,    
88             flags = Flags.Reserved | Flags.Construct)
89
90         cls._register_attribute(attr_rtsctsthreshold)
91
92         attr_fragmentationthreshold = Attribute("FragmentationThreshold",
93             "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.",
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_fragmentationthreshold)
101
102         attr_nonunicastmode = Attribute("NonUnicastMode",
103             "Wifi mode used for non-unicast transmissions.",
104             type = Types.String,
105             default = "Invalid-WifiMode",  
106             allowed = None,
107             range = None,    
108             flags = Flags.Reserved | Flags.Construct)
109
110         cls._register_attribute(attr_nonunicastmode)
111
112         attr_defaulttxpowerlevel = Attribute("DefaultTxPowerLevel",
113             "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.",
114             type = Types.Integer,
115             default = "0",  
116             allowed = None,
117             range = None,    
118             flags = Flags.Reserved | Flags.Construct)
119
120         cls._register_attribute(attr_defaulttxpowerlevel)
121
122
123
124     @classmethod
125     def _register_traces(cls):
126         
127         mactxrtsfailed = Trace("MacTxRtsFailed", "The transmission of a RTS by the MAC layer has failed")
128
129         cls._register_trace(mactxrtsfailed)
130
131         mactxdatafailed = Trace("MacTxDataFailed", "The transmission of a data packet by the MAC layer has failed")
132
133         cls._register_trace(mactxdatafailed)
134
135         mactxfinalrtsfailed = Trace("MacTxFinalRtsFailed", "The transmission of a RTS has exceeded the maximum number of attempts")
136
137         cls._register_trace(mactxfinalrtsfailed)
138
139         mactxfinaldatafailed = Trace("MacTxFinalDataFailed", "The transmission of a data packet has exceeded the maximum number of attempts")
140
141         cls._register_trace(mactxfinaldatafailed)
142
143
144
145     def __init__(self, ec, guid):
146         super(NS3ConstantRateWifiManager, self).__init__(ec, guid)
147         self._home = "ns3-constant-rate-wifi-manager-%s" % self.guid