Skip to content

Commit fdca59a

Browse files
committed
rename CustomEventUtils to IPCUtils
1 parent a542230 commit fdca59a

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

src/main/java/cat/nyaa/nyaacore/CommandReceiver.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package cat.nyaa.nyaacore;
22

3-
import com.sun.istack.internal.Nullable;
43
import org.bukkit.Bukkit;
54
import org.bukkit.Material;
65
import org.bukkit.command.Command;
@@ -102,7 +101,7 @@ private Set<Field> getAllFields(Class cls) {
102101
}
103102

104103
// Scan recursively into parent class to find annotated methods when constructing
105-
public CommandReceiver(JavaPlugin plugin, @Nullable ILocalizer _i18n) {
104+
public CommandReceiver(JavaPlugin plugin, ILocalizer _i18n) {
106105
if (plugin == null) throw new IllegalArgumentException();
107106
if (_i18n == null) _i18n = new LanguageRepository.InternalOnlyRepository(plugin);
108107

src/main/java/cat/nyaa/nyaacore/utils/CustomEventUtils.java src/main/java/cat/nyaa/nyaacore/utils/IPCUtils.java

+41-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,21 @@
44
import org.bukkit.event.Event;
55

66
import java.lang.reflect.Constructor;
7+
import java.lang.reflect.Method;
8+
import java.lang.reflect.Modifier;
79
import java.util.HashMap;
810
import java.util.Map;
911

1012
/**
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
1317
* without directly depends on the plugin.
1418
*/
15-
public final class CustomEventUtils {
19+
public final class IPCUtils {
1620
private static final Map<String, Constructor<? extends Event>> eventMap = new HashMap<>();
21+
private static final Map<String, Method> methodMap = new HashMap<>();
1722

1823
/**
1924
* Register an event and its constructor
@@ -46,4 +51,37 @@ public static void emitEvent(String name, Object... args) {
4651
throw new RuntimeException(ex);
4752
}
4853
}
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+
}
4987
}

0 commit comments

Comments
 (0)