applied the except and raise fixers to the master branch to close the gap with py3
[nepi.git] / src / nepi / resources / netns / netnsnodeinterface.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.attribute import Attribute, Flags, Types
20 from nepi.execution.resource import clsinit_copy
21 from nepi.resources.netns.netnsinterface import NetNSInterface
22
23 @clsinit_copy
24 class NetNSNodeInterface(NetNSInterface):
25     _rtype = "netns::NodeInterface"
26
27     @classmethod
28     def _register_attributes(cls):
29         up = Attribute("up", "Interface up", 
30                 default = True,
31                 type = Types.Bool)
32
33         cls._register_attribute(up)
34
35     @property
36     def emulation(self):
37         return self.node.emulation
38
39     @property
40     def node(self):
41         from nepi.resources.netns.netnsnode import NetNSNode
42         node = self.get_connected(NetNSNode.get_rtype())
43
44         if not node: 
45             msg = "Route not connected to Node!!"
46             self.error(msg)
47             raise RuntimeError(msg)
48
49         return node[0]
50
51     @property
52     def switch(self):
53         from nepi.resources.netns.netnsswitch import NetNSSwitch
54         switch = self.get_connected(NetNSSwitch.get_rtype())
55         if switch: return switch[0]
56         return None
57
58     @property
59     def _rms_to_wait(self):
60         return [self.node, self.switch]
61
62     def _instantiate_object(self):
63         self._uuid = self.emulation.invoke(self.node.uuid, "add_if")
64         self.emulation.invoke(self.switch.uuid, "connect", self.uuid)
65         self.emulation.emu_set(self.uuid, "up", self.get("up"))
66
67