Changing ResourceManager naming for platform::ResourceName
[nepi.git] / examples / dce / custom_local_p2p_ccn.py
index 3ba901a..c743598 100644 (file)
@@ -56,11 +56,11 @@ def add_device(ec, node, ip,  prefix):
 
 ec = ExperimentController(exp_id = "dce-custom-ccn")
 
-node = ec.register_resource("LinuxNode")
+node = ec.register_resource("linux::Node")
 ec.set(node, "hostname", "localhost")
 ec.set(node, "cleanProcesses", True)
 
-simu = ec.register_resource("LinuxNS3Simulation")
+simu = ec.register_resource("linux::ns3::Simulation")
 ec.set(simu, "verbose", True)
 ec.register_connection(simu, node)
 
@@ -83,7 +83,7 @@ ec.register_connection(chan, dev2)
 
 # Add a LinuxCCNDceApplication to ns-3 node 1 to install custom ccnx sources
 # and run a CCNx daemon
-ccnd1 = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccnd1 = ec.register_resource("linux::ns3::dce::CCNApplication")
 # NOTE THAT INSTALLATION MIGHT FAIL IF openjdk-6-jdk is not installed
 ec.set(ccnd1, "depends", "libpcap0.8-dev openjdk-6-jdk ant1.8 autoconf "
     "libssl-dev libexpat-dev libpcap-dev libecryptfs0 libxml2-utils auto"
@@ -110,7 +110,7 @@ repofile = os.path.join(
     "..", "..", "test", "resources", "linux", 
     "ns3", "ccn", "repoFile1")
 
-ccnr = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccnr = ec.register_resource("linux::ns3::dce::CCNApplication")
 ec.set (ccnr, "binary", "ccnr")
 ec.set (ccnr, "environment", "CCNR_DIRECTORY=/REPO/")
 ec.set (ccnr, "files", "%s=/REPO/repoFile1" % repofile) 
@@ -123,7 +123,7 @@ ec.register_connection(ccnr, nsnode1)
 # daemon. Note that the CCNx sources and build instructions 
 # do not need to be specified again (NEPI will take the 
 # instructions from the first definition).
-ccnd2 = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccnd2 = ec.register_resource("linux::ns3::dce::CCNApplication")
 ec.set (ccnd2, "binary", "ccnd")
 ec.set (ccnd2, "stackSize", 1<<20)
 ec.set (ccnd2, "environment", "CCND_CAP=50000; CCND_DEBUG=7")
@@ -133,7 +133,7 @@ ec.register_connection(ccnd2, nsnode2)
 
 # Add DCE application to configure peer CCN faces between
 # nodes
-ccndc1 = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccndc1 = ec.register_resource("linux::ns3::dce::CCNApplication")
 ec.set (ccndc1, "binary", "ccndc")
 ec.set (ccndc1, "arguments", "-v;add;ccnx:/;udp;10.0.0.2")
 ec.set (ccndc1, "stackSize", 1<<20)
@@ -141,7 +141,7 @@ ec.set (ccndc1, "StartTime", "2s")
 ec.set (ccndc1, "StopTime", "120s")
 ec.register_connection(ccndc1, nsnode1)
 
-ccndc2 = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccndc2 = ec.register_resource("linux::ns3::dce::CCNApplication")
 ec.set (ccndc2, "binary", "ccndc")
 ec.set (ccndc2, "arguments", "-v;add;ccnx:/;udp;10.0.0.1")
 ec.set (ccndc2, "stackSize", 1<<20)
@@ -150,7 +150,7 @@ ec.set (ccndc2, "StopTime", "120s")
 ec.register_connection(ccndc2, nsnode2)
 
 # Add a DCE application to perform a ccncat and retrieve content
-ccncat = ec.register_resource("ns3::LinuxCCNDceApplication")
+ccncat = ec.register_resource("linux::ns3::dce::CCNApplication")
 ec.set (ccncat, "binary", "ccncat")
 ec.set (ccncat, "arguments", "ccnx:/test/bunny.ts")
 ec.set (ccncat, "stdinFile", "")