com.exactpro.th2.converter.ConverterApplication.kt Maven / Gradle / Ivy
/*
* Copyright 2020-2022 Exactpro (Exactpro Systems Limited)
*
* 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.exactpro.th2.converter
import com.exactpro.th2.converter.conversion.LocalFilesConverter
import io.micronaut.runtime.Micronaut
import mu.KotlinLogging
open class ConverterApplication
private val logger = KotlinLogging.logger {}
fun main(args: Array) {
when (val mode = if (args.isNotEmpty()) args[0] else "server") {
"server" -> {
try {
Micronaut
.build(*args)
.eagerInitConfiguration(true)
.eagerInitSingletons(true)
.mainClass(ConverterApplication::class.java)
.start()
} catch (e: Exception) {
val logger = KotlinLogging.logger { }
logger.error("Exiting with exception", e)
}
}
"local" -> {
LocalFilesConverter(args[1], args[2]).convert()
}
else -> {
logger.error("Mode: {} is not supported", mode)
}
}
}