2 # NEPI, a framework to manage network experiments
3 # Copyright (C) 2014 INRIA
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.
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.
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/>.
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
20 from nepi.execution.attribute import Attribute, Flags, Types
21 from nepi.execution.resource import clsinit_copy
22 from nepi.resources.netns.netnsinterface import NetNSInterface
25 class NetNSNodeInterface(NetNSInterface):
26 _rtype = "netns::NodeInterface"
29 def _register_attributes(cls):
30 up = Attribute("up", "Interface up",
34 cls._register_attribute(up)
38 return self.node.emulation
42 from nepi.resources.netns.netnsnode import NetNSNode
43 node = self.get_connected(NetNSNode.get_rtype())
46 msg = "Route not connected to Node!!"
48 raise RuntimeError, msg
54 from nepi.resources.netns.netnsswitch import NetNSSwitch
55 switch = self.get_connected(NetNSSwitch.get_rtype())
56 if switch: return switch[0]
60 def _rms_to_wait(self):
61 return [self.node, self.switch]
63 def _instantiate_object(self):
64 self._uuid = self.emulation.invoke(self.node.uuid, "add_if")
65 self.emulation.invoke(self.switch.uuid, "connect", self.uuid)
66 self.emulation.emu_set(self.uuid, "up", self.get("up"))