All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspectran.shell.service.AbstractShellService Maven / Gradle / Ivy

There is a newer version: 8.1.3
Show newest version
/*
 * 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.SessionConfig;
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.util.StringUtils;
import com.aspectran.core.util.logging.Log;
import com.aspectran.core.util.logging.LogFactory;
import com.aspectran.shell.adapter.ShellApplicationAdapter;
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; /** 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(new ShellApplicationAdapter()); if (console == null) { throw new IllegalArgumentException("console must not be null"); } this.console = console; determineBasePath(); } @Override public void afterContextLoaded() throws Exception { sessionManager = new DefaultSessionManager(getActivityContext()); sessionManager.setGroupName("SH"); SessionConfig sessionConfig = getAspectranConfig().getSessionConfig(); if (sessionConfig != null) { sessionManager.setSessionConfig(sessionConfig); } sessionManager.initialize(); parseGreetings(); } @Override public void beforeContextDestroy() { sessionManager.destroy(); sessionManager = null; } @Override public SessionAdapter newSessionAdapter() { SessionAgent agent = sessionManager.newSessionAgent(); return new ShellSessionAdapter(agent); } @Override public boolean isExposable(String transletName) { return super.isExposable(transletName); } /** * 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() && getActivityContext().getDescription() != null) { console.writeLine(getActivityContext().getDescription()); } } @Override public void restart(String message) throws Exception { if (console.confirmRestart(message)) { super.restart(message); } } @Override public boolean isBusy() { return console.isBusy(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy