Changing reschedule_delay internals
[nepi.git] / src / nepi / resources / linux / ccn / ccncat.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 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.ccn.ccnapplication import LinuxCCNApplication
23
24 import os
25
26 @clsinit_copy
27 class LinuxCCNCat(LinuxCCNApplication):
28     _rtype = "LinuxCCNCat"
29
30     @classmethod
31     def _register_attributes(cls):
32         content_name = Attribute("contentName",
33             "Content name for the content to peek",
34             flags = Flags.Design)
35
36         pipeline = Attribute("pipeline",
37             "CCNCat pipeline",
38             flags = Flags.Design)
39
40         cls._register_attribute(content_name)
41         cls._register_attribute(pipeline)
42
43     def __init__(self, ec, guid):
44         super(LinuxCCNCat, self).__init__(ec, guid)
45         self._home = "ccncat-%s" % self.guid
46
47     def do_deploy(self):
48         if not self.ccnd or self.ccnd.state < ResourceState.READY:
49             self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state )
50             self.ec.schedule(self.reschedule_delay, self.deploy)
51         else:
52             command = self.get("command")
53             if not command:
54                 command = "ccncat %s" % self.get("contentName")
55             if self.get("pipeline"):
56                 command += " -p %s " % self.get("pipeline")
57
58             self.set("command", command) 
59
60             self.info("Deploying command '%s' " % command)
61             
62             if not self.get("env"):
63                 self.set("env", self._environment)
64
65             self.do_discover()
66             self.do_provision()
67
68             self.set_ready()
69
70     def valid_connection(self, guid):
71         # TODO: Validate!
72         return True
73