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 version 2 as
7 # published by the Free Software Foundation;
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.
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/>.
17 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19 from nepi.execution.attribute import Attribute, Flags, Types
20 from nepi.execution.resource import clsinit_copy, ResourceState
21 from nepi.resources.linux.ns3.ccn.ns3ccndceapplication import LinuxNS3CCNDceApplication
24 class LinuxNS3DceFIBEntry(LinuxNS3CCNDceApplication):
25 _rtype = "linux::ns3::dce::FIBEntry"
28 def _register_attributes(cls):
29 uri = Attribute("uri",
30 "URI prefix to match and route for this FIB entry",
34 protocol = Attribute("protocol",
35 "Transport protocol used in network connection to peer "
36 "for this FIB entry. One of 'udp' or 'tcp'.",
37 type = Types.Enumerate,
39 allowed = ["udp", "tcp"],
42 host = Attribute("host",
43 "Peer hostname used in network connection for this FIB entry. ",
46 port = Attribute("port",
47 "Peer port address used in network connection to peer "
48 "for this FIB entry.",
52 "Peer host public IP used in network connection for this FIB entry. ",
55 home = Attribute("home", "Sets HOME environmental variable. ",
59 cls._register_attribute(uri)
60 cls._register_attribute(protocol)
61 cls._register_attribute(host)
62 cls._register_attribute(port)
63 cls._register_attribute(ip)
64 cls._register_attribute(home)
66 def _instantiate_object(self):
67 if not self.get("binary"):
68 self.set("binary", "ccndc")
70 if not self.get("arguments"):
71 self.set("arguments", self._arguments)
73 if not self.get("environment"):
74 self.set("environment", self._environment)
76 super(LinuxNS3DceFIBEntry, self)._instantiate_object()
79 def _environment(self):
84 env = ";".join(["%s=%s" % (envs.get(k), str(self.get(k))) for k in [k for k in list(envs.keys()) if self.get(k)]])
93 args.append(self.get("uri"))
94 if self.get("protocol"):
95 args.append(self.get("protocol"))
97 args.append(self.get("host"))
99 args.append(self.get("port"))
101 args.append(self.get("ip"))
103 return ";".join(args)