Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-scripts / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / 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.scripts
18
19 import java.io.File
20 import java.io.Serializable
21 import java.net.URL
22 import java.net.URLClassLoader
23 import kotlin.reflect.KClass
24 import kotlin.script.experimental.api.*
25
26 open class BluePrintCompiledScript<out JarFile : File>(
27         private val scriptCompilationConfiguration: ScriptCompilationConfiguration,
28         private val compiledJar: File) :
29         CompiledScript<JarFile>, Serializable {
30
31     lateinit var scriptClassFQName: String
32
33     override val compilationConfiguration: ScriptCompilationConfiguration
34         get() = scriptCompilationConfiguration
35
36     override suspend fun getClass(scriptEvaluationConfiguration: ScriptEvaluationConfiguration?): ResultWithDiagnostics<KClass<*>> = try {
37
38         val baseClassLoader = Thread.currentThread().contextClassLoader
39
40         val urls = arrayListOf<URL>()
41         urls.add(compiledJar.toURI().toURL())
42         val classLoaderWithDependencies = URLClassLoader(urls.toTypedArray(), baseClassLoader)
43
44         val clazz = classLoaderWithDependencies.loadClass(scriptClassFQName).kotlin
45         clazz.asSuccess()
46     } catch (e: Throwable) {
47         ResultWithDiagnostics.Failure(
48                 ScriptDiagnostic(
49                         "Unable to instantiate class $scriptClassFQName",
50                         exception = e
51                 )
52         )
53     }
54
55 }
56