mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 13:17:56 +00:00
7e7ab30808
Does not depend on ServalDResult class - appends output fields to a supplied list instead, and returns the integer status Does not depend on ServalDReentranceError class - uses java.lang.IllegalStateException instead
40 lines
925 B
Java
40 lines
925 B
Java
package org.servalproject.servald;
|
|
|
|
import java.lang.reflect.*;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.LinkedList;
|
|
import org.servalproject.servald.ServalD;
|
|
|
|
class ServalDTests
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
try {
|
|
Class cls = new Object() { }.getClass().getEnclosingClass();
|
|
Method m = cls.getMethod(args[0], String[].class);
|
|
m.invoke(null, (Object) Arrays.copyOfRange(args, 1, args.length));
|
|
}
|
|
catch (Exception e) {
|
|
e.printStackTrace();
|
|
System.exit(1);
|
|
}
|
|
System.exit(0);
|
|
}
|
|
|
|
public static void repeat(String[] args)
|
|
{
|
|
int repeat = Integer.decode(args[0]);
|
|
ServalD servald = new ServalD();
|
|
for (int i = 0; i != repeat; ++i) {
|
|
servald.command(Arrays.copyOfRange(args, 1, args.length));
|
|
System.out.print(servald.status);
|
|
for (String s: servald.outv) {
|
|
System.out.print(":");
|
|
System.out.print(s);
|
|
}
|
|
System.out.println("");
|
|
}
|
|
}
|
|
}
|