Adding NS3 FDNetDevice RM
[nepi.git] / src / nepi / resources / ns3 / ns3wifinetdevice.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 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 from nepi.execution.resource import clsinit_copy
21 from nepi.resources.ns3.ns3netdevice import NS3BaseNetDevice
22
23 WIFI_STANDARDS = dict({
24     "WIFI_PHY_STANDARD_holland": 5,
25     "WIFI_PHY_STANDARD_80211p_SCH": 7,
26     "WIFI_PHY_STANDARD_80211_5Mhz": 4,
27     "WIFI_PHY_UNKNOWN": 8,
28     "WIFI_PHY_STANDARD_80211_10Mhz": 3,
29     "WIFI_PHY_STANDARD_80211g": 2,
30     "WIFI_PHY_STANDARD_80211p_CCH": 6,
31     "WIFI_PHY_STANDARD_80211a": 0,
32     "WIFI_PHY_STANDARD_80211b": 1
33 })
34
35 @clsinit_copy
36 class NS3BaseWifiNetDevice(NS3BaseNetDevice):
37     _rtype = "abstract::ns3::WifiNetDevice"
38
39     @property
40     def _rms_to_wait(self):
41         rms = set([self.node, self.node.ipv4])
42         return rms
43
44     def _configure_mac_address(self):
45         # The wifimac is the one responsible for
46         # configuring the MAC address
47         pass
48
49     def _connect_object(self):
50         node = self.node
51         if node and node.uuid not in self.connected:
52             self.simulation.invoke(node.uuid, "AddDevice", self.uuid)
53             self._connected.add(node.uuid)
54