144cfe27dcde96f23ac76a0a1e9567816255c355
[nepi.git] / src / nepi / resources / netns / netnsipv4address.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 NetNSIPv4Address(NetNSBase):
26     _rtype = "netns::IPv4Address"
27
28     @classmethod
29     def _register_attributes(cls):
30         ip = Attribute("ip", "IPv4 address", flags=Flags.Design)
31         prefix = Attribute("prefix", "IPv4 prefix", flags=Flags.Design)
32
33         cls._register_attribute(ip)
34         cls._register_attribute(prefix)
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 = "IPv4Address not connected to 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.interface]
59
60     def _instantiate_object(self):
61         self._uuid = self.emulation.invoke(self.interface.uuid, "add_v4_address",
62                 self.get("ip"), self.get("prefix"))
63
64