Linux/Ns-3/Dce cross experiments
[nepi.git] / src / nepi / resources / ns3 / ns3fdnetdevice.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 @clsinit_copy
24 class NS3BaseFdNetDevice(NS3BaseNetDevice):
25     _rtype = "abstract::ns3::FdNetDevice"
26
27     @property
28     def _rms_to_wait(self):
29         rms = set([self.node])
30         return rms
31
32     def _configure_mac_address(self):
33         # The wifimac is the one responsible for
34         # configuring the MAC address
35         pass
36
37     def _connect_object(self):
38         node = self.node
39         if node and node.uuid not in self.connected:
40             self.simulation.invoke(node.uuid, "AddDevice", self.uuid)
41             self._connected.add(node.uuid)
42
43     def _instantiate_object(self):
44         """ just validate that the simulator is in real time
45         mode, otherwise it is not going to work
46         """
47
48         mode = self.simulation.get("simulatorImplementationType")
49         if mode != "ns3::RealtimeSimulatorImpl":
50             msg = "The simulation must run in real time!!"
51             self.error(msg)
52             raise RuntimeError, msg
53         
54         super(NS3BaseFdNetDevice, self)._instantiate_object()
55
56     def recv_fd(self):
57         address = self.simulation.invoke(self.uuid, "recvFD")
58         return address
59