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