mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 05:07:56 +00:00
5185c944c9
This allows the output fields of any command to contain nul characters, which paves the way for extracting a manifest or other binary data directly instead of having to write it into a temporary file.
40 lines
940 B
Java
40 lines
940 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 (byte[] a: servald.outv) {
|
|
System.out.print(":");
|
|
System.out.print(new String(a));
|
|
}
|
|
System.out.println("");
|
|
}
|
|
}
|
|
}
|