Changing reschedule_delay internals
[nepi.git] / src / nepi / resources / linux / ccn / ccnapplication.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.resource import clsinit_copy, ResourceState
21 from nepi.resources.linux.application import LinuxApplication
22 from nepi.resources.linux.ccn.ccnd import LinuxCCND
23
24 import os
25
26 @clsinit_copy
27 class LinuxCCNApplication(LinuxApplication):
28     _rtype = "LinuxCCNApplication"
29
30     def __init__(self, ec, guid):
31         super(LinuxCCNApplication, self).__init__(ec, guid)
32         self._home = "ccnapp-%s" % self.guid
33
34     @property
35     def ccnd(self):
36         ccnd = self.get_connected(LinuxCCND.get_rtype())
37         if ccnd: return ccnd[0]
38         return None
39
40     @property
41     def node(self):
42         if self.ccnd: return self.ccnd.node
43         return None
44
45     def do_deploy(self):
46         if not self.ccnd or self.ccnd.state < ResourceState.READY:
47             self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state )
48             self.ec.schedule(self.reschedule_delay, self.deploy)
49         else:
50             command = self.get("command") or ""
51
52             self.info("Deploying command '%s' " % command)
53             
54             if not self.get("env"):
55                 self.set("env", self._environment)
56
57             self.do_discover()
58             self.do_provision()
59
60             self.set_ready()
61
62     @property
63     def _environment(self):
64         return self.ccnd.path
65        
66     def valid_connection(self, guid):
67         # TODO: Validate!
68         return True
69