blob: 48f619afc7450e9dc6ca43b5224b14a4ca303d89 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.amaterasu.leader.common.execution.frameworls
import org.apache.amaterasu.common.configuration.ClusterConfig
import org.apache.amaterasu.common.configuration.ConfigManager
import org.apache.amaterasu.common.logging.KLogging
import org.apache.amaterasu.sdk.frameworks.FrameworkSetupProvider
import org.reflections.Reflections
class FrameworkProvidersFactory(val env: String, val config: ClusterConfig) : KLogging() {
var providers: Map<String, FrameworkSetupProvider>
init {
val reflections = Reflections(ClassLoader::class.java)
val runnerTypes = reflections.getSubTypesOf(FrameworkSetupProvider::class.java)
providers = runnerTypes.map {
val provider = it.newInstance()
provider.init(env, config)
log.info("a provider for group ${provider.groupIdentifier} was created")
provider.groupIdentifier to provider
}.toMap()
}
}