import swarm.Selector;
7 k% |2 V( _& L) [
! [: J! p0 j2 t1 ?1 jpublic class SwarmUtils {
! z0 r# F1 b. _ public static Selector getSelector(String name, String method) {
' P4 \' P9 g/ K( P+ n: B Selector sel;8 X2 m+ G/ ^/ I9 y# Y- D8 s
try {
/ B+ N6 O% t2 C- |: I sel = new Selector(Class.forName(name), method, false);
7 A4 Z n& C* o0 S } catch (Exception e) {5 S+ Z0 w3 V- M1 Z1 r
System.err.println("There was an error in creating a Selector for method " + method + "\nin Class " + name + ".");+ @# k! v% f1 @( ]. O
System.err.println(name + "." + method + " returns " + e.getMessage());
. @4 H4 Q+ b @( t9 d* F System.err.println("The process will be terminated."); b- Z$ T& u+ W0 R
System.exit(1);" n! H2 k0 a' L4 E2 A, d
return null;- W$ h" w2 w* ^7 k& G N: S
}
( g" c6 x4 ?8 } }; | return sel;
& k0 D$ H1 X, S5 v* {. s }
6 ?8 h& O1 [2 w$ o0 \ [6 z+ v& V$ }+ A+ E \
public static Selector getSelector(Object obj, String method) {1 w& O. k: b, |" h4 M: o3 u
Selector sel;
( X4 E& A' Z2 p7 W: H try {3 z! b2 G3 [1 v; J1 Y- V9 ^' W. v
sel = new Selector(obj.getClass(), method, false);
3 v! i) `" w1 X/ }9 Z } catch (Exception e) {7 j, `# b/ L) x8 \1 w9 t2 Y
System.err.println("There was an error in creating a Selector for method " + method + "\nin Class "5 j5 z, D* G' x
+ (obj.getClass()).getName() + ".");
6 Z8 A% _' V6 b8 w, | f System.err.println((obj.getClass()).getName() + "." + method + " returns " + e.getMessage());! E2 M4 ~5 f8 Q( [8 L1 f; T
System.err.println("The process will be terminated.");
8 `" O) ~7 a/ [* m# M; i; f System.exit(1);
* {+ S1 S, c. ] return null;7 x! g' U! S! f2 W) ~
}
$ p# M/ U) F, A, k return sel;; w' h$ w: t0 \3 v* U( j8 J- E
}4 b1 n# M9 ^* U3 f8 F: `. b/ ]: K* D
} |