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