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