forked from I2P_Developers/i2p.i2p
94 lines
3.1 KiB
Java
94 lines
3.1 KiB
Java
package net.i2p.client.streaming;
|
|
|
|
import net.i2p.client.streaming.StreamSinkClient;
|
|
import net.i2p.client.streaming.StreamSinkSend;
|
|
import net.i2p.client.streaming.StreamSinkServer;
|
|
/**
|
|
* Usage: StreamSinkTest [(old|new) [#hops [#kb]]]
|
|
*/
|
|
public class StreamSinkTestStandalone {
|
|
/* private static String HOST1 = "dev.i2p.net";
|
|
private static String HOST2 = "dev.i2p.net";
|
|
private static String PORT1 = "4101";
|
|
private static String PORT2 = "4501";
|
|
/*
|
|
private static String HOST1 = "localhost";
|
|
private static String HOST2 = "localhost";
|
|
private static String PORT1 = "7654";
|
|
private static String PORT2 = "7654";
|
|
*/
|
|
private static String HOST1 = "localhost";
|
|
private static String HOST2 = "localhost";
|
|
private static String PORT1 = "10001";
|
|
private static String PORT2 = "11001";
|
|
/* */
|
|
|
|
public static void main(String args[]) {
|
|
int hops = 0;
|
|
int kb = 32*1024;
|
|
if (args.length > 0) {
|
|
try {
|
|
hops = Integer.parseInt(args[0]);
|
|
} catch (NumberFormatException nfe) {
|
|
hops = 0;
|
|
}
|
|
}
|
|
if (args.length > 1) {
|
|
try {
|
|
kb = Integer.parseInt(args[1]);
|
|
} catch (NumberFormatException nfe) {
|
|
kb = 32*1024;
|
|
}
|
|
}
|
|
|
|
System.setProperty("tunnels.depthInbound", ""+hops);
|
|
|
|
new Thread(new Runnable() {
|
|
public void run() {
|
|
StreamSinkServer.main(new String[] { HOST1, PORT1, "streamSinkTestDir", "streamSinkTestServer.key" });
|
|
}
|
|
}, "server").start();
|
|
|
|
try { Thread.sleep(60*1000); } catch (Exception e) {}
|
|
|
|
//run(256, 1);
|
|
//run(256, 1000);
|
|
//run(4*1024, 10);
|
|
run(kb, 1);
|
|
//run(1*1024, 1);
|
|
//run("/home/jrandom/streamSinkTestDir/clientSink36766.dat", 1);
|
|
//run(512*1024, 1);
|
|
try { Thread.sleep(10*1000); } catch (InterruptedException e) {}
|
|
System.out.println("Shutting down");
|
|
System.exit(0);
|
|
}
|
|
|
|
private static void run(final int kb, final int msBetweenWrites) {
|
|
Thread t = new Thread(new Runnable() {
|
|
public void run() {
|
|
StreamSinkClient.main(new String[] { HOST2, PORT2, kb+"", msBetweenWrites+"", "streamSinkTestServer.key" });
|
|
}
|
|
});
|
|
t.start();
|
|
|
|
System.out.println("client and server started: size = " + kb + "KB, delay = " + msBetweenWrites);
|
|
try {
|
|
t.join();
|
|
} catch (InterruptedException ie) {}
|
|
}
|
|
|
|
private static void run(final String filename, final int msBetweenWrites) {
|
|
Thread t = new Thread(new Runnable() {
|
|
public void run() {
|
|
StreamSinkSend.main(new String[] { filename, msBetweenWrites+"", "streamSinkTestServer.key" });
|
|
}
|
|
});
|
|
t.start();
|
|
|
|
System.out.println("client and server started: file " + filename + ", delay = " + msBetweenWrites);
|
|
try {
|
|
t.join();
|
|
} catch (InterruptedException ie) {}
|
|
}
|
|
}
|