use print() - import print_function - should be fine for both py2 and py3
[nepi.git] / examples / linux / hello_world.py
1 #!/usr/bin/env python
2 #
3 #    NEPI, a framework to manage network experiments
4 #    Copyright (C) 2013 INRIA
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License version 2 as
8 #    published by the Free Software Foundation;
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 # Example of how to run this experiment (replace with your information):
21 #
22 # $ cd <path-to-nepi>
23 # python examples/linux/hello_world.py -a <hostname> -u <username> -i <ssh-key>
24
25 from __future__ import print_function
26
27 from nepi.execution.ec import ExperimentController 
28
29 from optparse import OptionParser, SUPPRESS_HELP
30 import os
31
32 usage = ("usage: %prog -a <hostanme> -u <username> -i <ssh-key>")
33
34 parser = OptionParser(usage = usage)
35 parser.add_option("-a", "--hostname", dest="hostname", 
36         help="Remote host", type="str")
37 parser.add_option("-u", "--username", dest="username", 
38         help="Username to SSH to remote host", type="str")
39 parser.add_option("-i", "--ssh-key", dest="ssh_key", 
40         help="Path to private SSH key to be used for connection", 
41         type="str")
42 (options, args) = parser.parse_args()
43
44 hostname = options.hostname
45 username = options.username
46 ssh_key = options.ssh_key
47
48 ec = ExperimentController(exp_id = "src-up-exp")
49         
50 node = ec.register_resource("linux::Node")
51 ec.set(node, "hostname", hostname)
52 ec.set(node, "username", username)
53 ec.set(node, "identity", ssh_key)
54 ec.set(node, "cleanExperiment", True)
55 ec.set(node, "cleanProcesses", True)
56
57 path_to_sources = os.path.join(
58         os.path.dirname(os.path.realpath(__file__)),
59         "hello.c")
60
61 app = ec.register_resource("linux::Application")
62 ec.set(app, "sources", path_to_sources)
63 ec.set(app, "build", "gcc ${SRC}/hello.c -o ${BIN}/hello")
64 ec.set(app, "command", "${BIN}/hello")
65 ec.register_connection(node, app)
66
67 ec.deploy()
68
69 ec.wait_finished(app)
70
71 print(ec.trace(app, "stdout"))
72
73 ec.shutdown()
74