93fe2b1f577db8aff8f0dff213ad36320cfbdc00
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / python-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / python / executor / scripts / BlueprintPythonHost.kt
1 /*
2  * Copyright © 2019 IBM, Bell Canada.
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 package org.onap.ccsdk.cds.blueprintsprocessor.functions.python.executor.scripts
17
18 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
19 import org.python.core.PyObject
20 import org.python.util.PythonInterpreter
21
22 @Deprecated("CDS won't support JythonService")
23 open class BlueprintPythonHost(private val bluePrintPython: BluePrintPython) {
24     private val blueprintPythonInterpreterProxy: BlueprintPythonInterpreterProxy
25
26     init {
27         PythonInterpreter.initialize(System.getProperties(), bluePrintPython.props, bluePrintPython.argv.toTypedArray())
28         blueprintPythonInterpreterProxy = BlueprintPythonInterpreterProxy(bluePrintPython)
29     }
30
31     /**
32      * getPythonComponent Purpose: execute the python script and return the python interpreter object
33      *
34      * @param content String
35      * @param interfaceName String
36      * @param properties MutableMap<String, Any>
37      * @return pyObject PyObject
38      */
39     fun getPythonComponent(content: String?, interfaceName: String, properties: MutableMap<String, Any>?): PyObject {
40         bluePrintPython.content = content!!
41         bluePrintPython.pythonClassName = interfaceName
42         bluePrintPython.moduleName = "Blueprint Python Script [Class Name = $interfaceName]"
43         try {
44             return blueprintPythonInterpreterProxy.getPythonInstance(properties)
45         } catch (e: Exception) {
46             throw BluePrintProcessorException("Failed to execute Jython component $e", e)
47         }
48     }
49
50     // TODO Check potential errors in python scripts
51 }