Merge "Loopback search by tag service"
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / scripts / BluePrintCompiledScript.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.controllerblueprints.core.scripts
18
19 import java.io.Serializable
20 import kotlin.reflect.KClass
21 import kotlin.script.experimental.api.*
22
23 open class BluePrintCompiledScript<out BCS : String>(
24         val cacheKey: String,
25         val scriptCompilationConfiguration: ScriptCompilationConfiguration) :
26         CompiledScript<BCS>, Serializable {
27
28     lateinit var scriptClassFQName: String
29
30     override val compilationConfiguration: ScriptCompilationConfiguration
31         get() = scriptCompilationConfiguration
32
33     override suspend fun getClass(scriptEvaluationConfiguration: ScriptEvaluationConfiguration?)
34             : ResultWithDiagnostics<KClass<*>> = try {
35
36         /** Get the class loader from the cache */
37         val classLoaderWithDependencies = BluePrintCompileCache.classLoader(cacheKey)
38
39         val clazz = classLoaderWithDependencies.loadClass(scriptClassFQName).kotlin
40         clazz.asSuccess()
41     } catch (e: Throwable) {
42         ResultWithDiagnostics.Failure(
43                 ScriptDiagnostic(
44                         "Unable to instantiate class $scriptClassFQName",
45                         exception = e
46                 )
47         )
48     }
49
50 }
51