Merge "Fixnig file import in script, import and template&mapping."
[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.blueprintsprocessor.services.execution.ExecutionServiceDomains
19 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
20 import org.onap.ccsdk.cds.controllerblueprints.core.updateErrorMessage
21 import org.python.core.PyObject
22 import org.python.util.PythonInterpreter
23
24 @Deprecated("CDS won't support JythonService")
25 open class BlueprintPythonHost(private val bluePrintPython: BluePrintPython) {
26     private val blueprintPythonInterpreterProxy: BlueprintPythonInterpreterProxy
27
28     init {
29         PythonInterpreter.initialize(System.getProperties(), bluePrintPython.props, bluePrintPython.argv.toTypedArray())
30         blueprintPythonInterpreterProxy = BlueprintPythonInterpreterProxy(bluePrintPython)
31     }
32
33     /**
34      * getPythonComponent Purpose: execute the python script and return the python interpreter object
35      *
36      * @param content String
37      * @param interfaceName String
38      * @param properties MutableMap<String, Any>
39      * @return pyObject PyObject
40      */
41     fun getPythonComponent(content: String?, interfaceName: String, properties: MutableMap<String, Any>?): PyObject {
42         bluePrintPython.content = content!!
43         bluePrintPython.pythonClassName = interfaceName
44         bluePrintPython.moduleName = "Blueprint Python Script [Class Name = $interfaceName]"
45         try {
46             return blueprintPythonInterpreterProxy.getPythonInstance(properties)
47         } catch (e: BluePrintProcessorException) {
48             val errorMsg = "Failed to get python instance."
49             throw e.updateErrorMessage(ExecutionServiceDomains.PYTHON_EXECUTOR, errorMsg,
50                     "Error in environment properties")
51         } catch (e: Exception) {
52             throw BluePrintProcessorException("Failed to execute Jython component $e", e)
53         }
54     }
55
56     // TODO Check potential errors in python scripts
57 }