import swarm.Selector;
; x* W7 F) d6 K( H% N& q4 J+ E% g- C: Z2 |0 D) n1 b
public class SwarmUtils {
; g, y: V4 [* |* N6 t Y0 X9 z public static Selector getSelector(String name, String method) {
" F3 y" p5 K, o0 {0 N Selector sel;
/ i( b, k4 R3 V$ S8 | J$ S S1 ] try {
. }$ ~2 w$ r& C: N; B) m( V( l sel = new Selector(Class.forName(name), method, false);% m9 H, _. E: q1 o5 p% e. M
} catch (Exception e) {
0 x2 D% F( `, Q System.err.println("There was an error in creating a Selector for method " + method + "\nin Class " + name + ".");
. B/ h; v4 X, W+ e System.err.println(name + "." + method + " returns " + e.getMessage());) h" p+ l1 c' F) D, X+ ~7 ?
System.err.println("The process will be terminated.");: g2 d5 V7 K8 |
System.exit(1);: h' t. p/ s7 V0 @2 L' Z
return null;9 h2 R. J8 j4 B% ^3 a
}- o# ]- ^" k& b( W8 A, C& Y
return sel;% L: P+ V$ x/ L$ g' C; k4 N4 B, U
}
. B9 b p7 O! t6 `/ L3 `# T! r( C
$ N h x0 y# n" Y( J4 f; o public static Selector getSelector(Object obj, String method) {
5 \! e* i% k$ O' b3 x4 F Selector sel;/ Q, [& M. D/ T# }, e: n! w! a
try {, Q7 `0 ?8 n. S* T8 {. |
sel = new Selector(obj.getClass(), method, false);- d3 f7 X& [$ B0 r2 H/ `( l
} catch (Exception e) {
0 l4 X) L. Y' N$ N- @, c System.err.println("There was an error in creating a Selector for method " + method + "\nin Class "4 `- y# j$ ?% a) G; p
+ (obj.getClass()).getName() + ".");
# d1 ~: @# b( j7 R2 i& V% Y System.err.println((obj.getClass()).getName() + "." + method + " returns " + e.getMessage());
* u# V+ F9 W+ A% _+ ]! R+ E System.err.println("The process will be terminated.");
" b% o( H/ e7 G( _( U System.exit(1);
/ {7 K/ }, P4 `0 T4 Q6 D return null;* B% K5 A& [7 y' z7 @1 \
}2 ?! f* V1 r. Q N; _( C
return sel;
6 P+ L- y! d' E* i f1 i; M }
$ q' ?' K% T! `3 w2 C} |