3b3a590791f80e433e7b735bf9d118ba62d5d518
[ccsdk/cds.git] /
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.apps.controllerblueprints.scripts
18
19 import java.io.File
20 import kotlin.script.experimental.annotations.KotlinScript
21 import kotlin.script.experimental.api.ScriptCompilationConfiguration
22 import kotlin.script.experimental.api.SourceCode
23 import kotlin.script.experimental.api.defaultImports
24 import kotlin.script.experimental.jvm.jvm
25 import kotlin.script.experimental.jvm.util.classpathFromClassloader
26
27 @KotlinScript(
28         fileExtension = "cba.kts",
29         compilationConfiguration = BluePrintScripCompilationConfiguration::class,
30         displayName = "Controller Blueprint Archive Kotlin Scripts"
31 )
32 abstract class BluePrintKotlinScript
33
34 object BluePrintScripCompilationConfiguration : ScriptCompilationConfiguration(
35         {
36             defaultImports(
37                     "org.onap.ccsdk.apps.controllerblueprints.core.*",
38                     "org.onap.ccsdk.apps.controllerblueprints.core.data.*",
39                     "org.onap.ccsdk.apps.controllerblueprints.core.interfaces.*",
40                     "org.onap.ccsdk.apps.controllerblueprints.core.services.*",
41                     "org.onap.ccsdk.apps.controllerblueprints.core.utils.*")
42             jvm {
43                 classpathFromClassloader(BluePrintScripCompilationConfiguration::class.java.classLoader)
44             }
45         }
46 )
47
48 open class BluePrintSourceCode : SourceCode {
49     lateinit var blueprintKotlinSources: MutableList<String>
50     lateinit var moduleName: String
51     lateinit var targetJarFile: File
52     var regenerate: Boolean = false
53
54     override val text: String
55         get() = ""
56
57     override val locationId: String? = null
58
59     override val name: String?
60         get() = moduleName
61 }