feat: add spring full support

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
MiaoWoo 2020-05-28 17:05:47 +08:00
parent f2b8f6ff26
commit 17d07d6cef
7 changed files with 159 additions and 24 deletions

18
pom.xml
View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>pw.yumc</groupId>
<artifactId>MiaoScript</artifactId>
<version>0.6.6</version>
<version>0.7.0</version>
<developers>
<developer>
<id>502647092</id>
@ -53,6 +53,7 @@
<properties>
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
<update.changes>
§620-05-28 §afeat: 新增 Spring 的支持;
§620-05-02 §afeat: 调整 scope 为 @ccms;
§620-04-10 §afeat: 默认从 classpath 加载内建的js模块;
§620-04-07 §afeat: 默认初始化 内建 nodejs 模块;
@ -180,11 +181,13 @@
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>spongeapi</artifactId>
<version>7.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.md-5</groupId>
@ -195,6 +198,19 @@
<groupId>cn.nukkit</groupId>
<artifactId>nukkit</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
<version>5.2.6.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-websocket</artifactId>
<version>9.0.35</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

View File

@ -21,7 +21,7 @@ public class Base {
this.instance = instance;
}
public Class getClass(String name) throws ClassNotFoundException {
public Class<?> getClass(String name) throws ClassNotFoundException {
return Class.forName(name);
}
@ -29,7 +29,7 @@ public class Base {
return this.instance;
}
public Class getProxyClass() {
public Class<?> getProxyClass() {
return ProxyClass.class;
}

View File

@ -0,0 +1,34 @@
package pw.yumc.MiaoScript;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
import java.io.File;
import javax.annotation.PreDestroy;
@Slf4j
@Component
public class MiaoScriptSpring {
private ScriptEngine engine;
@Bean
@SneakyThrows
public ScriptEngine buildScriptEngine(ApplicationContext applicationContext) {
return new ScriptEngine(new File("MiaoScript").getCanonicalPath(), log, applicationContext);
}
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
@PreDestroy
public void disableEngine() {
engine.disableEngine();
engine = null;
}
}

View File

@ -1,6 +1,5 @@
package pw.yumc.MiaoScript;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
@ -12,8 +11,7 @@ import lombok.SneakyThrows;
/**
* Created with IntelliJ IDEA
*
* @author
* Created on 2017/10/25 21:01.
* @author Created on 2017/10/25 21:01.
*/
public class ScriptEngine {
private String root;
@ -30,7 +28,8 @@ public class ScriptEngine {
}
@SneakyThrows
public void enableEngine() {
public synchronized void enableEngine() {
if (this.engine == null) {
this.engine = new MiaoScriptEngine(manager, "nashorn");
this.engine.put("base", this.base);
this.engine.put("ScriptEngineContextHolder", this);
@ -43,12 +42,15 @@ public class ScriptEngine {
}
engine.invokeFunction("boot", root, logger);
}
}
@SneakyThrows
public void disableEngine() {
public synchronized void disableEngine() {
if (this.engine != null) {
this.engine.invokeFunction("engineDisable");
this.engine = null;
}
}
public MiaoScriptEngine getEngine() {
return engine;

View File

@ -0,0 +1,70 @@
package pw.yumc.MiaoScript.websocket;
import lombok.SneakyThrows;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
import javax.websocket.*;
import javax.websocket.server.ServerEndpoint;
@Component
@ServerEndpoint("/ws/")
public class WebSocketServer implements ApplicationContextAware {
private static ApplicationContext context;
private WebSocketServerProxy proxy;
private boolean checkProxy(Session session) {
try {
if (this.proxy == null) {
this.proxy = context.getBean(WebSocketServerProxy.class);
}
return true;
} catch (Exception ex) {
try {
session.close();
} catch (Exception ignore) {
}
return false;
}
}
@OnOpen
@SneakyThrows
public void onOpen(Session session, EndpointConfig config) {
if (this.checkProxy(session)) {
this.proxy.onOpen(session, config);
}
}
@OnMessage
@SneakyThrows
public void onMessage(Session session, String message) {
if (this.checkProxy(session)) {
this.proxy.onMessage(session, message);
}
}
@OnClose
@SneakyThrows
public void onClose(Session session, CloseReason reason) {
if (this.checkProxy(session)) {
this.proxy.onClose(session, reason);
}
}
@OnError
@SneakyThrows
public void onError(Session session, Throwable error) {
if (this.checkProxy(session)) {
this.proxy.onError(session, error);
}
}
@Override
public void setApplicationContext(ApplicationContext ctx) throws BeansException {
context = ctx;
}
}

View File

@ -0,0 +1,15 @@
package pw.yumc.MiaoScript.websocket;
import javax.websocket.CloseReason;
import javax.websocket.EndpointConfig;
import javax.websocket.Session;
public interface WebSocketServerProxy {
void onOpen(Session session, EndpointConfig config);
void onMessage(Session session, String message);
void onClose(Session session, CloseReason reason);
void onError(Session session, Throwable error);
}

View File

@ -32,11 +32,9 @@ var global = this;
}, "MiaoScript thread").start()
};
var pluginYml;
function checkClassLoader() {
var classLoader = java.lang.Thread.currentThread().contextClassLoader;
pluginYml = classLoader.getResource("plugin.yml");
if (pluginYml === null) {
if (classLoader.getResource("bios.js") === null) {
throw Error("Error class loader: " + classLoader.class.name + " Please contact the author MiaoWoo!");
} else {
log.info("Class loader compatible: " + classLoader.class.name);