Changing ResourceManager naming for platform::ResourceName
[nepi.git] / examples / omf / testing / nepi_omf5_plexus_vlc.py
index 1293013..1572c19 100644 (file)
@@ -49,7 +49,7 @@ from nepi.execution.ec import ExperimentController
 ec = ExperimentController()
 
 # Create and Configure the Nodes
-node1 = ec.register_resource("OMFNode")
+node1 = ec.register_resource("omf::Node")
 ec.set(node1, 'hostname', 'omf.plexus.wlab17')
 ec.set(node1, 'xmppUser', "nepi")
 ec.set(node1, 'xmppServer', "xmpp-plexus.onelab.eu")
@@ -57,7 +57,7 @@ ec.set(node1, 'xmppPort', "5222")
 ec.set(node1, 'xmppPassword', "1234")
 ec.set(node1, 'version', "5")
 
-node2 = ec.register_resource("OMFNode")
+node2 = ec.register_resource("omf::Node")
 ec.set(node2, 'hostname', "omf.plexus.wlab37")
 ec.set(node2, 'xmppUser', "nepi")
 ec.set(node2, 'xmppServer', "xmpp-plexus.onelab.eu")
@@ -66,7 +66,7 @@ ec.set(node2, 'xmppPassword', "1234")
 ec.set(node2, 'version', "5")
 
 # Create and Configure the Interfaces
-iface1 = ec.register_resource("OMFWifiInterface")
+iface1 = ec.register_resource("omf::WifiInterface")
 ec.set(iface1, 'name', "wlan0")
 ec.set(iface1, 'mode', "adhoc")
 ec.set(iface1, 'hw_mode', "g")
@@ -74,7 +74,7 @@ ec.set(iface1, 'essid', "vlcexp")
 ec.set(iface1, 'ip', "10.0.0.17")
 ec.set(iface1, 'version', "5")
 
-iface2 = ec.register_resource("OMFWifiInterface")
+iface2 = ec.register_resource("omf::WifiInterface")
 ec.set(iface2, 'name', "wlan0")
 ec.set(iface2, 'mode', "adhoc")
 ec.set(iface2, 'hw_mode', 'g')
@@ -83,7 +83,7 @@ ec.set(iface2, 'ip', "10.0.0.37/24")
 ec.set(iface2, 'version', "5")
 
 # Create and Configure the Channel
-channel = ec.register_resource("OMFChannel")
+channel = ec.register_resource("omf::Channel")
 ec.set(channel, 'channel', "6")
 ec.set(channel, 'xmppUser', "nepi")
 ec.set(channel, 'xmppServer', "xmpp-plexus.onelab.eu")
@@ -92,7 +92,7 @@ ec.set(channel, 'xmppPassword', "1234")
 ec.set(channel, 'version', "5")
 
 # Create and Configure the Application
-app1 = ec.register_resource("OMFApplication")
+app1 = ec.register_resource("omf::Application")
 ec.set(app1, 'appid', 'Vlc#1')
 ec.set(app1, 'command', "/opt/vlc-1.1.13/cvlc --quiet /opt/10-by-p0d.avi --sout '#rtp{dst=10.0.0.37,port=1234,mux=ts}'")
 #ec.set(app1, 'command', "/opt/vlc-1.1.13/cvlc --quiet /opt/big_buck_bunny_240p_mpeg4.ts --sout '#rtp{dst=10.0.0.XX,port=1234,mux=ts} '")
@@ -100,19 +100,19 @@ ec.set(app1, 'command', "/opt/vlc-1.1.13/cvlc --quiet /opt/10-by-p0d.avi --sout
 ec.set(app1, 'env', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority")
 ec.set(app1, 'version', "5")
 
-app2 = ec.register_resource("OMFApplication")
+app2 = ec.register_resource("omf::Application")
 ec.set(app2, 'appid', 'Vlc#2')
 ec.set(app2, 'command', "/opt/vlc-1.1.13/cvlc --quiet rtp://10.0.0.37:1234")
 ec.set(app2, 'env', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority")
 ec.set(app2, 'version', "5")
 
-app3 = ec.register_resource("OMFApplication")
+app3 = ec.register_resource("omf::Application")
 ec.set(app3, 'appid', 'Kill#1')
 ec.set(app3, 'command', "/usr/bin/killall vlc")
 ec.set(app3, 'env', " ")
 ec.set(app3, 'version', "5")
 
-app4 = ec.register_resource("OMFApplication")
+app4 = ec.register_resource("omf::Application")
 ec.set(app4, 'appid', 'Kill#2')
 ec.set(app4, 'command', "/usr/bin/killall vlc")
 ec.set(app4, 'env', " ")