Nitos OMF ping examples
[nepi.git] / examples / omf / testing / nepi_omf6_iminds_vlc.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             Julien Tribino <julien.tribino@inria.fr>
20
21
22 """
23
24 #!/usr/bin/env python
25 from nepi.execution.resource import ResourceFactory, ResourceAction, ResourceState
26 from nepi.execution.ec import ExperimentController
27
28 # Create the EC
29 ec = ExperimentController()
30
31 # Create and Configure the Nodes
32
33 node1 = ec.register_resource("OMFNode")
34 ec.set(node1, 'hostname', 'servernode.nepivlcexperiment.nepi.wilab2.ilabt.iminds.be')
35 ec.set(node1, 'xmppServer', "xmpp.ilabt.iminds.be")
36 ec.set(node1, 'xmppUser', "nepi")
37 ec.set(node1, 'xmppPort', "5222")
38 ec.set(node1, 'xmppPassword', "1234")
39
40 iface1 = ec.register_resource("OMFWifiInterface")
41 ec.set(iface1, 'name', 'wlan0')
42 ec.set(iface1, 'mode', "adhoc")
43 ec.set(iface1, 'hw_mode', "g")
44 ec.set(iface1, 'essid', "vlc")
45 ec.set(iface1, 'ip', "192.168.0.1/24")
46
47 node2 = ec.register_resource("OMFNode")
48 ec.set(node2, 'hostname', 'client1node.nepivlcexperiment.nepi.wilab2.ilabt.iminds.be')
49 ec.set(node2, 'xmppServer', "xmpp.ilabt.iminds.be")
50 ec.set(node2, 'xmppUser', "nepi")
51 ec.set(node2, 'xmppPort', "5222")
52 ec.set(node2, 'xmppPassword', "1234")
53
54 iface2 = ec.register_resource("OMFWifiInterface")
55 ec.set(iface2, 'name', 'wlan0')
56 ec.set(iface2, 'mode', "adhoc")
57 ec.set(iface2, 'hw_mode', "g")
58 ec.set(iface2, 'essid', "vlc")
59 ec.set(iface2, 'ip', "192.168.0.2/24")
60
61 node3 = ec.register_resource("OMFNode")
62 ec.set(node3, 'hostname', 'client2node.nepivlcexperiment.nepi.wilab2.ilabt.iminds.be')
63 ec.set(node3, 'xmppServer', "xmpp.ilabt.iminds.be")
64 ec.set(node3, 'xmppUser', "nepi")
65 ec.set(node3, 'xmppPort', "5222")
66 ec.set(node3, 'xmppPassword', "1234")
67
68 iface3 = ec.register_resource("OMFWifiInterface")
69 ec.set(iface3, 'name', 'wlan0')
70 ec.set(iface3, 'mode', "adhoc")
71 ec.set(iface3, 'hw_mode', "g")
72 ec.set(iface3, 'essid', "vlc")
73 ec.set(iface3, 'ip', "192.168.0.3/24")
74
75 chan = ec.register_resource("OMFChannel")
76 ec.set(chan, 'channel', "6")
77
78 # Create and Configure the Application
79 app1 = ec.register_resource("OMFApplication")
80 ec.set(app1, 'command', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority /root/vlc/vlc-1.1.13/cvlc /root/10-by-p0d.avi --sout '#duplicate{dst=rtp{dst=192.168.0.2,port=1234,mux=ts},dst=rtp{dst=192.168.0.3,port=1234,mux=ts}}'")
81
82 app2 = ec.register_resource("OMFApplication")
83 ec.set(app2, 'command', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority /root/vlc/vlc-1.1.13/cvlc rtp://192.168.0.2:1234")
84
85 app3 = ec.register_resource("OMFApplication")
86 ec.set(app3, 'command', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority /root/vlc/vlc-1.1.13/cvlc rtp://192.168.0.3:1234")
87
88
89        "echo -e 'new TEST broadcast enabled loop\\n"\
90        "setup TEST input %s\\n"\
91        "setup TEST output #rtp{mux=ts,sdp=rtsp://0.0.0.0:8554/TEST}\\n\\n"\
92        "new test_sched schedule enabled\\n"\
93        "setup test_sched append control TEST play' > ${SOURCES}/VOD.vlm" % mv)
94
95
96
97 # Connection
98 ec.register_connection(iface1, node1)
99 ec.register_connection(iface2, node2)
100 ec.register_connection(iface3, node3)
101 ec.register_connection(iface1, chan)
102 ec.register_connection(iface2, chan)
103 ec.register_connection(iface3, chan)
104 ec.register_connection(app1, node1)
105 ec.register_connection(app2, node2)
106 ec.register_connection(app3, node3)
107
108 ec.register_condition([app2,app3], ResourceAction.START, app1, ResourceState.STARTED , "4s")
109 ec.register_condition([app1,app2,app3], ResourceAction.STOP, [app2,app3], ResourceState.STARTED , "30s")
110
111
112 # Deploy
113 ec.deploy()
114
115 ec.wait_finished([app1,app2,app3])
116
117 # Stop Experiment
118 ec.shutdown()
119