com.aspectran.shell.service.AbstractShellService Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2019 The Aspectran Project
*
* 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 com.aspectran.shell.service;
import com.aspectran.core.adapter.SessionAdapter;
import com.aspectran.core.component.session.DefaultSessionManager;
import com.aspectran.core.component.session.SessionAgent;
import com.aspectran.core.component.session.SessionManager;
import com.aspectran.core.context.config.SessionManagerConfig;
import com.aspectran.core.context.config.ShellConfig;
import com.aspectran.core.context.expr.TokenEvaluator;
import com.aspectran.core.context.expr.TokenExpression;
import com.aspectran.core.context.expr.token.Token;
import com.aspectran.core.context.expr.token.TokenParser;
import com.aspectran.core.service.AspectranCoreService;
import com.aspectran.core.service.AspectranServiceException;
import com.aspectran.core.util.StringUtils;
import com.aspectran.core.util.logging.Log;
import com.aspectran.core.util.logging.LogFactory;
import com.aspectran.shell.adapter.ShellSessionAdapter;
import com.aspectran.shell.console.Console;
/**
* Abstract base class for {@code ShellService} implementations.
*
* Created: 2017. 10. 30.
*/
public abstract class AbstractShellService extends AspectranCoreService implements ShellService {
private static final Log log = LogFactory.getLog(AbstractShellService.class);
private final Console console;
private SessionManager sessionManager;
private SessionAgent sessionAgent;
/** If verbose mode is on, a detailed description is printed each time the command is executed. */
private boolean verbose;
private String greetings;
private Token[] greetingsTokens;
protected AbstractShellService(Console console) {
super();
if (console == null) {
throw new IllegalArgumentException("console must not be null");
}
this.console = console;
determineBasePath();
}
@Override
public void afterContextLoaded() throws Exception {
parseGreetings();
}
/**
* Tests if the verbose mode is enabled.
* If verbose mode is on, a detailed description is printed each time the command is executed.
* Returns a flag indicating whether to show the description or not.
*
* @return true if the verbose mode is enabled
*/
@Override
public boolean isVerbose() {
return verbose;
}
/**
* Enables or disables the verbose mode.
* If verbose mode is on, a detailed description is printed each time the command is executed.
* Sets a flag indicating whether to show the description or not.
*
* @param verbose true to enable the verbose mode; false to disable
*/
@Override
public void setVerbose(boolean verbose) {
this.verbose = verbose;
}
@Override
public String getGreetings() {
return greetings;
}
@Override
public void setGreetings(String greetings) {
this.greetings = greetings;
}
@Override
public void printGreetings() {
if (greetingsTokens != null) {
TokenEvaluator evaluator = new TokenExpression(getDefaultActivity());
String message = evaluator.evaluateAsString(greetingsTokens);
console.writeLine(message);
} else if (greetings != null) {
console.writeLine(greetings);
}
}
private void parseGreetings() {
if (StringUtils.hasText(greetings)) {
greetingsTokens = TokenParser.makeTokens(greetings, true);
if (greetingsTokens != null) {
try {
for (Token token : greetingsTokens) {
Token.resolveAlternativeValue(token, getAspectranClassLoader());
}
} catch (Exception e) {
greetingsTokens = null;
log.error("Failed to parse greetings", e);
}
}
}
}
@Override
public void printHelp() {
if (isVerbose()) {
String description = getActivityContext().getDescription();
if (description != null) {
console.writeLine(description);
}
}
}
@Override
public void restart(String message) throws Exception {
if (console.confirmRestart(message)) {
super.restart(message);
}
}
@Override
public boolean isBusy() {
return console.isBusy();
}
@Override
public boolean isExposable(String transletName) {
return super.isExposable(transletName);
}
@Override
public SessionAdapter newSessionAdapter() {
if (sessionAgent != null) {
return new ShellSessionAdapter(sessionAgent);
} else {
return null;
}
}
protected void initSessionManager() {
if (this.sessionManager != null) {
throw new IllegalStateException("SessionManager already initialized");
}
ShellConfig shellConfig = getAspectranConfig().getShellConfig();
if (shellConfig != null) {
SessionManagerConfig sessionManagerConfig = shellConfig.getSessionManagerConfig();
if (sessionManagerConfig != null && sessionManagerConfig.isStartup()) {
try {
DefaultSessionManager sessionManager = new DefaultSessionManager("shl");
sessionManager.setApplicationAdapter(getActivityContext().getApplicationAdapter());
sessionManager.setSessionManagerConfig(sessionManagerConfig);
sessionManager.initialize();
this.sessionManager = sessionManager;
this.sessionAgent = new SessionAgent(sessionManager.getSessionHandler());
} catch (Exception e) {
throw new AspectranServiceException("Failed to initialize session manager for shell service", e);
}
}
}
}
protected void destroySessionManager() {
if (sessionAgent != null) {
sessionAgent.invalidate();
sessionAgent = null;
}
if (sessionManager != null) {
sessionManager.destroy();
sessionManager = null;
}
}
}