Changing reschedule_delay internals
[nepi.git] / src / nepi / resources / linux / ccn / ccnd.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.trace import Trace, TraceAttr
22 from nepi.execution.resource import ResourceManager, clsinit_copy, \
23         ResourceState
24 from nepi.resources.linux.application import LinuxApplication
25 from nepi.resources.linux.node import OSType
26 from nepi.util.timefuncs import tnow, tdiffsec
27
28 import os
29
30 # TODO: use ccndlogging to dynamically change the logging level
31
32
33 @clsinit_copy
34 class LinuxCCND(LinuxApplication):
35     _rtype = "LinuxCCND"
36
37     @classmethod
38     def _register_attributes(cls):
39         debug = Attribute("debug", "Sets the CCND_DEBUG environmental variable. "
40             " Allowed values are : \n"
41             "  0 - no messages \n"
42             "  1 - basic messages (any non-zero value gets these) \n"
43             "  2 - interest messages \n"
44             "  4 - content messages \n"
45             "  8 - matching details \n"
46             "  16 - interest details \n"
47             "  32 - gory interest details \n"
48             "  64 - log occasional human-readable timestamps \n"
49             "  128 - face registration debugging \n"
50             "  -1 - max logging \n"
51             "  Or apply bitwise OR to these values to get combinations of them",
52             type = Types.Integer,
53             flags = Flags.Design)
54
55         port = Attribute("port", "Sets the CCN_LOCAL_PORT environmental variable. "
56             "Defaults to 9695 ", 
57             flags = Flags.Design)
58  
59         sockname = Attribute("sockname",
60             "Sets the CCN_LOCAL_SCOKNAME environmental variable. "
61             "Defaults to /tmp/.ccnd.sock", 
62             flags = Flags.Design)
63
64         capacity = Attribute("capacity",
65             "Sets the CCND_CAP environmental variable. "
66             "Capacity limit in terms of ContentObjects",
67             flags = Flags.Design)
68
69         mtu = Attribute("mtu", "Sets the CCND_MTU environmental variable. ",
70             flags = Flags.Design)
71   
72         data_pause = Attribute("dataPauseMicrosec",
73             "Sets the CCND_DATA_PAUSE_MICROSEC environmental variable. ",
74             flags = Flags.Design)
75
76         default_stale = Attribute("defaultTimeToStale",
77              "Sets the CCND_DEFAULT_TIME_TO_STALE environmental variable. ",
78             flags = Flags.Design)
79
80         max_stale = Attribute("maxTimeToStale",
81             "Sets the CCND_MAX_TIME_TO_STALE environmental variable. ",
82             flags = Flags.Design)
83
84         max_rte = Attribute("maxRteMicrosec",
85             "Sets the CCND_MAX_RTE_MICROSEC environmental variable. ",
86             flags = Flags.Design)
87
88         keystore = Attribute("keyStoreDirectory",
89             "Sets the CCND_KEYSTORE_DIRECTORY environmental variable. ",
90             flags = Flags.Design)
91
92         listen_on = Attribute("listenOn",
93             "Sets the CCND_LISTEN_ON environmental variable. ",
94             flags = Flags.Design)
95
96         autoreg = Attribute("autoreg",
97             "Sets the CCND_AUTOREG environmental variable. ",
98             flags = Flags.Design)
99
100         prefix = Attribute("prefix",
101             "Sets the CCND_PREFIX environmental variable. ",
102             flags = Flags.Design)
103
104         cls._register_attribute(debug)
105         cls._register_attribute(port)
106         cls._register_attribute(sockname)
107         cls._register_attribute(capacity)
108         cls._register_attribute(mtu)
109         cls._register_attribute(data_pause)
110         cls._register_attribute(default_stale)
111         cls._register_attribute(max_stale)
112         cls._register_attribute(max_rte)
113         cls._register_attribute(keystore)
114         cls._register_attribute(listen_on)
115         cls._register_attribute(autoreg)
116         cls._register_attribute(prefix)
117
118     @classmethod
119     def _register_traces(cls):
120         log = Trace("log", "CCND log output")
121         status = Trace("status", "ccndstatus output")
122
123         cls._register_trace(log)
124         cls._register_trace(status)
125
126     def __init__(self, ec, guid):
127         super(LinuxCCND, self).__init__(ec, guid)
128         self._home = "ccnd-%s" % self.guid
129         self._version = "ccnx"
130
131     @property
132     def version(self):
133         return self._version
134
135     @property
136     def path(self):
137         return "PATH=$PATH:${BIN}/%s/" % self.version 
138
139     def do_deploy(self):
140         if not self.node or self.node.state < ResourceState.READY:
141             self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state )
142             
143             # ccnd needs to wait until node is deployed and running
144             self.ec.schedule(self.reschedule_delay, self.deploy)
145         else:
146             if not self.get("command"):
147                 self.set("command", self._start_command)
148             
149             if not self.get("depends"):
150                 self.set("depends", self._dependencies)
151
152             if not self.get("sources"):
153                 self.set("sources", self._sources)
154
155             sources = self.get("sources")
156             source = sources.split(" ")[0]
157             basename = os.path.basename(source)
158             self._version = ( basename.strip().replace(".tar.gz", "")
159                     .replace(".tar","")
160                     .replace(".gz","")
161                     .replace(".zip","") )
162
163             if not self.get("build"):
164                 self.set("build", self._build)
165
166             if not self.get("install"):
167                 self.set("install", self._install)
168
169             if not self.get("env"):
170                 self.set("env", self._environment)
171
172             command = self.get("command")
173
174             self.info("Deploying command '%s' " % command)
175
176             self.do_discover()
177             self.do_provision()
178
179             self.set_ready()
180
181     def upload_start_command(self):
182         command = self.get("command")
183         env = self.get("env")
184
185         # We want to make sure the ccnd is running
186         # before the experiment starts.
187         # Run the command as a bash script in background,
188         # in the host ( but wait until the command has
189         # finished to continue )
190         env = self.replace_paths(env)
191         command = self.replace_paths(command)
192
193         shfile = os.path.join(self.app_home, "start.sh")
194         self.node.run_and_wait(command, self.run_home,
195                 shfile = shfile,
196                 overwrite = False,
197                 env = env)
198
199     def do_start(self):
200         if self.state == ResourceState.READY:
201             command = self.get("command")
202             self.info("Starting command '%s'" % command)
203
204             self.set_started()
205         else:
206             msg = " Failed to execute command '%s'" % command
207             self.error(msg, out, err)
208             raise RuntimeError, msg
209
210     def do_stop(self):
211         command = self.get('command') or ''
212         
213         if self.state == ResourceState.STARTED:
214             self.info("Stopping command '%s'" % command)
215
216             command = "ccndstop"
217             env = self.get("env") 
218
219             # replace application specific paths in the command
220             command = self.replace_paths(command)
221             env = env and self.replace_paths(env)
222
223             # Upload the command to a file, and execute asynchronously
224             shfile = os.path.join(self.app_home, "stop.sh")
225             self.node.run_and_wait(command, self.run_home,
226                         shfile = shfile,
227                         overwrite = False,
228                         env = env,
229                         pidfile = "ccndstop_pidfile", 
230                         ecodefile = "ccndstop_exitcode", 
231                         stdout = "ccndstop_stdout", 
232                         stderr = "ccndstop_stderr")
233
234             self.set_stopped()
235     
236     @property
237     def state(self):
238         # First check if the ccnd has failed
239         state_check_delay = 0.5
240         if self._state == ResourceState.STARTED and \
241                 tdiffsec(tnow(), self._last_state_check) > state_check_delay:
242             (out, err), proc = self._ccndstatus()
243
244             retcode = proc.poll()
245
246             if retcode == 1 and err.find("No such file or directory") > -1:
247                 # ccnd is not running (socket not found)
248                 self.set_stopped()
249             elif retcode:
250                 # other errors ...
251                 msg = " Failed to execute command '%s'" % self.get("command")
252                 self.error(msg, out, err)
253                 self.fail()
254
255             self._last_state_check = tnow()
256
257         return self._state
258
259     def _ccndstatus(self):
260         env = self.get('env') or ""
261         environ = self.node.format_environment(env, inline = True)
262         command = environ + " ccndstatus"
263         command = self.replace_paths(command)
264     
265         return self.node.execute(command)
266
267     @property
268     def _start_command(self):
269         return "ccndstart"
270
271     @property
272     def _dependencies(self):
273         if self.node.use_rpm:
274             return ( " autoconf openssl-devel  expat-devel libpcap-devel "
275                 " ecryptfs-utils-devel libxml2-devel automake gawk " 
276                 " gcc gcc-c++ git pcre-devel make ")
277         elif self.node.use_deb:
278             return ( " autoconf libssl-dev libexpat-dev libpcap-dev "
279                 " libecryptfs0 libxml2-utils automake gawk gcc g++ "
280                 " git-core pkg-config libpcre3-dev make ")
281         return ""
282
283     @property
284     def _sources(self):
285         return "http://www.ccnx.org/releases/ccnx-0.8.2.tar.gz"
286
287     @property
288     def _build(self):
289         sources = self.get("sources").split(" ")[0]
290         sources = os.path.basename(sources)
291
292         return (
293             # Evaluate if ccnx binaries are already installed
294             " ( "
295                 " test -f ${BIN}/%(version)s/ccnd && "
296                 " echo 'binaries found, nothing to do' "
297             " ) || ( "
298             # If not, untar and build
299                 " ( "
300                     " mkdir -p ${SRC}/%(version)s && "
301                     " tar xf ${SRC}/%(sources)s --strip-components=1 -C ${SRC}/%(version)s "
302                  " ) && "
303                     "cd ${SRC}/%(version)s && "
304                     # Just execute and silence warnings...
305                     " ( ./configure && make ) "
306              " )") % ({ 'sources': sources,
307                         'version': self.version
308                  })
309
310     @property
311     def _install(self):
312         return (
313             # Evaluate if ccnx binaries are already installed
314             " ( "
315                 " test -f ${BIN}/%(version)s/ccnd && "
316                 " echo 'binaries found, nothing to do' "
317             " ) || ( "
318             # If not, install
319                 "  mkdir -p ${BIN}/%(version)s && "
320                 "  mv ${SRC}/%(version)s/bin/* ${BIN}/%(version)s/ "
321             " )"
322             ) % ({ 'version': self.version
323                  })
324
325     @property
326     def _environment(self):
327         envs = dict({
328             "debug": "CCND_DEBUG",
329             "port": "CCN_LOCAL_PORT",
330             "sockname" : "CCN_LOCAL_SOCKNAME",
331             "capacity" : "CCND_CAP",
332             "mtu" : "CCND_MTU",
333             "dataPauseMicrosec" : "CCND_DATA_PAUSE_MICROSEC",
334             "defaultTimeToStale" : "CCND_DEFAULT_TIME_TO_STALE",
335             "maxTimeToStale" : "CCND_MAX_TIME_TO_STALE",
336             "maxRteMicrosec" : "CCND_MAX_RTE_MICROSEC",
337             "keyStoreDirectory" : "CCND_KEYSTORE_DIRECTORY",
338             "listenOn" : "CCND_LISTEN_ON",
339             "autoreg" : "CCND_AUTOREG",
340             "prefix" : "CCND_PREFIX",
341             })
342
343         env = self.path 
344         env += " ".join(map(lambda k: "%s=%s" % (envs.get(k), str(self.get(k))) \
345             if self.get(k) else "", envs.keys()))
346         
347         return env            
348
349     def valid_connection(self, guid):
350         # TODO: Validate!
351         return True
352