93b19b7b28e6dd02ab3d171ac31637359309f6e6
[nepi.git] / src / nepi / resources / ns3 / classes / ideal_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 NS3IdealWifiManager(NS3BaseWifiRemoteStationManager):
27     _rtype = "ns3::IdealWifiManager"
28
29     @classmethod
30     def _register_attributes(cls):
31         
32         attr_berthreshold = Attribute("BerThreshold",
33             "The maximum Bit Error Rate acceptable at any transmission mode",
34             type = Types.Double,
35             default = "1e-05",  
36             allowed = None,
37             range = None,    
38             flags = Flags.Reserved | Flags.Construct)
39
40         cls._register_attribute(attr_berthreshold)
41
42         attr_islowlatency = Attribute("IsLowLatency",
43             "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.",
44             type = Types.Bool,
45             default = "True",  
46             allowed = None,
47             range = None,    
48             flags = Flags.Reserved | Flags.Construct)
49
50         cls._register_attribute(attr_islowlatency)
51
52         attr_maxssrc = Attribute("MaxSsrc",
53             "The maximum number of retransmission attempts for an RTS. This value will not have any effect on some rate control algorithms.",
54             type = Types.Integer,
55             default = "7",  
56             allowed = None,
57             range = None,    
58             flags = Flags.Reserved | Flags.Construct)
59
60         cls._register_attribute(attr_maxssrc)
61
62         attr_maxslrc = Attribute("MaxSlrc",
63             "The maximum number of retransmission attempts for a DATA packet. 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_maxslrc)
71
72         attr_rtsctsthreshold = Attribute("RtsCtsThreshold",
73             "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.",
74             type = Types.Integer,
75             default = "2346",  
76             allowed = None,
77             range = None,    
78             flags = Flags.Reserved | Flags.Construct)
79
80         cls._register_attribute(attr_rtsctsthreshold)
81
82         attr_fragmentationthreshold = Attribute("FragmentationThreshold",
83             "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.",
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_fragmentationthreshold)
91
92         attr_nonunicastmode = Attribute("NonUnicastMode",
93             "Wifi mode used for non-unicast transmissions.",
94             type = Types.String,
95             default = "Invalid-WifiMode",  
96             allowed = None,
97             range = None,    
98             flags = Flags.Reserved | Flags.Construct)
99
100         cls._register_attribute(attr_nonunicastmode)
101
102         attr_defaulttxpowerlevel = Attribute("DefaultTxPowerLevel",
103             "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.",
104             type = Types.Integer,
105             default = "0",  
106             allowed = None,
107             range = None,    
108             flags = Flags.Reserved | Flags.Construct)
109
110         cls._register_attribute(attr_defaulttxpowerlevel)
111
112
113
114     @classmethod
115     def _register_traces(cls):
116         
117         mactxrtsfailed = Trace("MacTxRtsFailed", "The transmission of a RTS by the MAC layer has failed")
118
119         cls._register_trace(mactxrtsfailed)
120
121         mactxdatafailed = Trace("MacTxDataFailed", "The transmission of a data packet by the MAC layer has failed")
122
123         cls._register_trace(mactxdatafailed)
124
125         mactxfinalrtsfailed = Trace("MacTxFinalRtsFailed", "The transmission of a RTS has exceeded the maximum number of attempts")
126
127         cls._register_trace(mactxfinalrtsfailed)
128
129         mactxfinaldatafailed = Trace("MacTxFinalDataFailed", "The transmission of a data packet has exceeded the maximum number of attempts")
130
131         cls._register_trace(mactxfinaldatafailed)
132
133
134
135     def __init__(self, ec, guid):
136         super(NS3IdealWifiManager, self).__init__(ec, guid)
137         self._home = "ns3-ideal-wifi-manager-%s" % self.guid