applied the except and raise fixers to the master branch to close the gap with py3
[nepi.git] / src / nepi / resources / ns3 / ns3wifiremotestationmanager.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 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
18
19 from nepi.execution.resource import clsinit_copy
20 from nepi.resources.ns3.ns3base import NS3Base
21 from nepi.resources.ns3.ns3netdevice import NS3BaseNetDevice
22
23 @clsinit_copy
24 class NS3BaseWifiRemoteStationManager(NS3Base):
25     _rtype = "abstract::ns3::WifiRemoteStationManager"
26
27     @property
28     def node(self):
29         return self.device.node
30
31     @property
32     def device(self):
33         from nepi.resources.ns3.ns3wifinetdevice import NS3BaseWifiNetDevice
34         devices = self.get_connected(NS3BaseWifiNetDevice.get_rtype())
35
36         if not devices: 
37             msg = "WifiRemoteStationManager not connected to device"
38             self.error(msg)
39             raise RuntimeError(msg)
40
41         return devices[0]
42
43     @property
44     def _rms_to_wait(self):
45         rms = set()
46         rms.add(self.device)
47         return rms
48
49     def _connect_object(self):
50         device = self.device
51         if device.uuid not in self.connected:
52             self.simulation.invoke(device.uuid, "SetRemoteStationManager", self.uuid)
53             self._connected.add(device.uuid)
54