|
4 | 4 | import org.bukkit.event.Event;
|
5 | 5 |
|
6 | 6 | import java.lang.reflect.Constructor;
|
| 7 | +import java.lang.reflect.Method; |
| 8 | +import java.lang.reflect.Modifier; |
7 | 9 | import java.util.HashMap;
|
8 | 10 | import java.util.Map;
|
9 | 11 |
|
10 | 12 | /**
|
11 |
| - * If one plugin register event here, |
12 |
| - * other plugins can emit that type of event |
| 13 | + * Inter-Plugin Communication Utils |
| 14 | + * |
| 15 | + * If one plugin register events or methods here, |
| 16 | + * other plugins can emit the event or call the method |
13 | 17 | * without directly depends on the plugin.
|
14 | 18 | */
|
15 |
| -public final class CustomEventUtils { |
| 19 | +public final class IPCUtils { |
16 | 20 | private static final Map<String, Constructor<? extends Event>> eventMap = new HashMap<>();
|
| 21 | + private static final Map<String, Method> methodMap = new HashMap<>(); |
17 | 22 |
|
18 | 23 | /**
|
19 | 24 | * Register an event and its constructor
|
@@ -46,4 +51,37 @@ public static void emitEvent(String name, Object... args) {
|
46 | 51 | throw new RuntimeException(ex);
|
47 | 52 | }
|
48 | 53 | }
|
| 54 | + |
| 55 | + /** |
| 56 | + * Register a method, the method must be static |
| 57 | + */ |
| 58 | + public static void registerMethod(String name, Method method) { |
| 59 | + name = name.toLowerCase(); |
| 60 | + if (methodMap.containsKey(name)) { |
| 61 | + throw new IllegalArgumentException("duplicated method name"); |
| 62 | + } |
| 63 | + if (!Modifier.isStatic(method.getModifiers())) { |
| 64 | + throw new IllegalArgumentException("method not static"); |
| 65 | + } |
| 66 | + methodMap.put(name, method); |
| 67 | + } |
| 68 | + |
| 69 | + /** |
| 70 | + * Call the method with the given args. |
| 71 | + * @param name method name, case-insensitive |
| 72 | + * @param args method arguments |
| 73 | + * @return method return value. |
| 74 | + */ |
| 75 | + public static Object callMethod(String name, Object... args) { |
| 76 | + name = name.toLowerCase(); |
| 77 | + Method m = methodMap.get(name); |
| 78 | + if (m == null) { |
| 79 | + throw new UnsupportedOperationException("no such method"); |
| 80 | + } |
| 81 | + try { |
| 82 | + return m.invoke(null, args); |
| 83 | + } catch (ReflectiveOperationException ex) { |
| 84 | + throw new RuntimeException(ex); |
| 85 | + } |
| 86 | + } |
49 | 87 | }
|
0 commit comments