Changing reschedule_delay internals
[nepi.git] / src / nepi / resources / linux / ns3 / ccn / ns3ccnpokedceapplication.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, ResourceState
22 from nepi.resources.linux.ns3.ccn.ns3ccndceapplication \
23         import LinuxNS3CCNDceApplication
24
25 import os
26 import tempfile
27
28 @clsinit_copy
29 class LinuxNS3DceCCNPoke(LinuxNS3CCNDceApplication):
30     _rtype = "ns3::LinuxDceCCNPoke"
31
32     @classmethod
33     def _register_attributes(cls):
34         content_name = Attribute("contentName",
35                 "Content name for the requested content object. ",
36                 flags = Flags.Design)
37         content = Attribute("content",
38                 "Content to poke (as a text string). ",
39                 flags = Flags.Design)
40
41         cls._register_attribute(content_name)
42         cls._register_attribute(content)
43
44     def _instantiate_object(self):
45         if not self.get("binary"):
46             self.set("binary", "ccnpoke")
47             
48         if self.get("contentName"):
49             self.set("arguments", self.get("contentName"))
50
51         # Create temporary local file to store content
52         content = self.get("content")
53         f = tempfile.NamedTemporaryFile(delete=False)
54         f.write(content)
55         f.close()
56
57         localpath = f.name
58         dcepath = os.path.join("/tmp", os.path.basename(localpath))
59
60         self.set("environment", "HOME=/root")
61         self.set("files", "%s=%s" % (localpath, dcepath))
62         self.set("stdinFile", dcepath)
63
64         super(LinuxNS3DceCCNPoke, self)._instantiate_object()
65