b7e282908b0507f7601498a5e4c520a2c20886ef
[nepi.git] / src / nepi / resources / netns / netnsswitch.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.attribute import Attribute, Flags, Types
21 from nepi.execution.resource import clsinit_copy
22 from nepi.resources.netns.netnsbase import NetNSBase
23
24 @clsinit_copy
25 class NetNSSwitch(NetNSBase):
26     _rtype = "netns::Switch"
27
28     @classmethod
29     def _register_attributes(cls):
30         up = Attribute("up", "Switch up", 
31                 default = True,
32                 type = Types.Bool)
33
34         cls._register_attribute(up)
35
36     @property
37     def emulation(self):
38         return self.node.emulation
39
40     @property
41     def node(self):
42         return self.interface.node
43
44     @property
45     def interface(self):
46         from nepi.resources.netns.netnsinterface import NetNSInterface
47         interface = self.get_connected(NetNSInterface.get_rtype())
48
49         if not interface: 
50             msg = "Switch not connected to any Interface!!"
51             self.error(msg)
52             raise RuntimeError, msg
53
54         return interface[0]
55
56     @property
57     def _rms_to_wait(self):
58         return [self.emulation]
59
60     def _instantiate_object(self):
61         self._uuid = self.emulation.create("Switch")
62         self.emulation.emu_set(self.uuid, "up", self.get("up"))
63