awips2/edexOsgi/com.raytheon.uf.edex.python.decoder/utility/common_static/base/python/DecoderInterface.py
Ben Steffensmeier 7f079e75a7 Issue #2402 Make PythonDecoder more extendable.
Former-commit-id: 69cab5e25f [formerly f848fa2218] [formerly a5a0bf72b6] [formerly 058b32eaec [formerly a5a0bf72b6 [formerly 19329b4f5a621f20bc45beedbe5acaadc84e9c2f]]]
Former-commit-id: 058b32eaec
Former-commit-id: 06c3f35b16a3936f0a83c95eff7c53e69cfe49f3 [formerly 2bccf6a62d]
Former-commit-id: d0c330f5a2
2013-10-03 18:19:04 -05:00

60 lines
No EOL
1.8 KiB
Python

##
# This software was developed and / or modified by Raytheon Company,
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# This software product contains export-restricted data whose
# export/transfer/disclosure is restricted by U.S. law. Dissemination
# to non-U.S. persons whether in the United States or abroad requires
# an export license or other authorization.
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.
##
import zipimport
import JUtil
from java.util import ArrayList
#
# Interface for python decoders
#
#
#
# SOFTWARE HISTORY
#
# Date Ticket# Engineer Description
# ------------- -------- ----------- --------------------------
# Sep 22, 2008 njensen Initial Creation.
# Oct 03, 2013 2402 bsteffen Make PythonDecoder more extendable.
#
#
#
def loadModule(pluginDir, pluginFQN, moduleName):
jarname = pluginDir + pluginFQN + ".jar"
if not sys.modules.has_key(moduleName):
jar = zipimport.zipimporter(jarname)
jar.load_module(moduleName)
def decode(moduleName, **kwargs):
mod = sys.modules[moduleName]
exec 'dec = mod.' + moduleName + '(**kwargs)'
result = dec.decode()
resultList = ArrayList()
if result is not None:
for resultDict in result:
if type(resultDict) == dict:
hashmap = JUtil.pyDictToJavaMap(resultDict)
resultList.add(hashmap)
else:
resultList.add(resultDict)
return resultList