io.hyscale.controller.initializer.HyscaleInitializer Maven / Gradle / Ivy
/**
* Copyright 2019 Pramati Prism, Inc.
*
* 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 io.hyscale.controller.initializer;
import io.hyscale.controller.exception.ParameterExceptionHandler;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import io.hyscale.builder.core.models.ImageBuilder;
import io.hyscale.builder.services.config.ImageBuilderConfig;
import io.hyscale.commons.config.SetupConfig;
import io.hyscale.commons.constants.ToolConstants;
import io.hyscale.controller.commands.HyscaleCommand;
import io.hyscale.controller.exception.ControllerErrorCodes;
import io.hyscale.controller.exception.ExceptionHandler;
import io.hyscale.controller.util.ResourceCleanUpUtil;
import io.hyscale.controller.util.ShutdownHook;
import picocli.CommandLine;
import picocli.CommandLine.IFactory;
import picocli.CommandLine.ParameterException;
/**
* Starting point for the hyscale tool
*
* This class is responsible for initializing the spring application context
* and execute the given commands. It works on top of picoli
* @see https://picocli.info/
*
*
*/
@SpringBootApplication
@ComponentScan(basePackages = "io.hyscale")
public class HyscaleInitializer implements CommandLineRunner {
private final Logger logger = LoggerFactory.getLogger(HyscaleInitializer.class);
@Autowired
private IFactory factory;
@Autowired
private ExceptionHandler exceptionHandler;
@Autowired
private ParameterExceptionHandler parameterExceptionHandler;
@Autowired
private HyscaleCommand hyscaleCommand;
private static final boolean IS_LAZY_INITIALIZATION = true;
static {
System.setProperty(ImageBuilderConfig.IMAGE_BUILDER_PROP, ImageBuilder.LOCAL.name());
System.setProperty(ToolConstants.HYSCALECTL_LOGS_DIR_PROPERTY, SetupConfig.getToolLogDir());
System.setProperty(ToolConstants.NASHORNS_ARGS, ToolConstants.NASHORNS_DEPRECATION_WARNING_FLAG);
System.setProperty(ToolConstants.JDK_TLS_CLIENT_PROTOCOLS_ARGS, ToolConstants.JDK_TLS_CLIENT_VERSION);
}
public static void main(String[] args) {
SpringApplication app = new SpringApplication(HyscaleInitializer.class);
if(System.getenv(ToolConstants.WORKFLOW_LOGGER_DISABLED)!=null && System.getenv(ToolConstants.WORKFLOW_LOGGER_DISABLED).equalsIgnoreCase("true")){
Properties properties = new Properties();
properties.setProperty("spring.main.banner-mode", "off");
app.setDefaultProperties(properties);
}
app.setLazyInitialization(IS_LAZY_INITIALIZATION);
app.run(args);
}
@Override
public void run(String... args) {
int exitCode = 1;
try {
Runtime.getRuntime().addShutdownHook(new ShutdownHook());
CommandLine commandLine = new CommandLine(hyscaleCommand, factory);
commandLine.setSubcommandsCaseInsensitive(true);
commandLine.setExecutionExceptionHandler(exceptionHandler);
commandLine.setParameterExceptionHandler(parameterExceptionHandler);
exitCode = commandLine.execute(args);
} catch (ParameterException e) {
logger.error("Error while processing command, error {}", ControllerErrorCodes.INVALID_COMMAND.getMessage(), e);
} catch (Exception e) {
logger.error("Unexpected error in processing command, error {}", ControllerErrorCodes.UNEXPECTED_ERROR.getMessage(), e);
} finally {
logger.debug("HyscaleInitializer::exit code: {}", exitCode);
ResourceCleanUpUtil.performCleanUp();
}
System.exit(exitCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy