net.hasor.tconsole.binder.ConsoleModule Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.hasor.tconsole.binder;
import net.hasor.core.ApiBinder;
import net.hasor.core.AppContext;
import net.hasor.core.EventContext;
import net.hasor.core.Module;
import net.hasor.core.spi.ContextStartListener;
import net.hasor.tconsole.ConsoleApiBinder;
/**
* tConsole Hasor 插件入口。
* @version : 2019年10月30日
* @author 赵永春 ([email protected])
*/
public class ConsoleModule implements Module, ContextStartListener {
private boolean enable;
@Override
public void loadModule(ApiBinder apiBinder) {
this.enable = apiBinder.tryCast(ConsoleApiBinder.class) != null;
apiBinder.bindSpiListener(ContextStartListener.class, this);
}
@Override
public void doStart(AppContext appContext) {
if (!this.enable) {
return;
}
InnerExecutorManager manager = appContext.getInstance(InnerExecutorManager.class);
manager.setAppContext(appContext);
manager.init();
}
@Override
public void doStartCompleted(AppContext appContext) {
if (!this.enable) {
return;
}
EventContext eventContext = appContext.getEnvironment().getEventContext();
eventContext.asyncTask(() -> {
// doPreCommand 是通过 doStartCompleted 触发的,因此容器可能尚未完全 Start
// 通过异步任务来等待 Start 之后在开始执行 doPreCommand
if (!appContext.isStart()) {
while (!appContext.isStart()) {
try {
Thread.sleep(100); //等待结束
} catch (Exception e) {/**/}
}
}
appContext.getInstance(InnerExecutorManager.class).doPreCommand(appContext);
});
}
@Override
public void onStop(AppContext appContext) {
if (!this.enable) {
return;
}
appContext.getInstance(InnerExecutorManager.class).close();
}
}