applied the except and raise fixers to the master branch to close the gap with py3
[nepi.git] / src / nepi / resources / ns3 / ns3propagationdelaymodel.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
22 @clsinit_copy
23 class NS3BasePropagationDelayModel(NS3Base):
24     _rtype = "abstract::ns3::PropagationDelayModel"
25
26     @property
27     def simulation(self):
28         return self.channel.simulation
29
30     @property
31     def channel(self):
32         from nepi.resources.ns3.ns3wifichannel import NS3BaseWifiChannel
33         channels = self.get_connected(NS3BaseWifiChannel.get_rtype())
34
35         if not channels: 
36             msg = "PropagationDelayModel not connected to channel"
37             self.error(msg)
38             raise RuntimeError(msg)
39
40         return channels[0]
41
42     @property
43     def _rms_to_wait(self):
44         others = set()
45         others.add(self.channel)
46         return others
47
48     def _connect_object(self):
49         channel = self.channel
50         if channel.uuid not in self.connected:
51             self.simulation.invoke(channel.uuid, "SetPropagationDelayModel", self.uuid)
52             self._connected.add(channel.uuid)
53