2023-08-23 11:45:18 -06:00
|
|
|
##
|
|
|
|
# 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
|
2018-09-05 15:52:38 -06:00
|
|
|
#
|
2023-08-23 11:45:18 -06:00
|
|
|
# TODO
|
|
|
|
#
|
|
|
|
#
|
2018-09-05 15:52:38 -06:00
|
|
|
# SOFTWARE HISTORY
|
2023-08-23 11:45:18 -06:00
|
|
|
#
|
2018-09-05 15:52:38 -06:00
|
|
|
# Date Ticket# Engineer Description
|
|
|
|
# ------------ ---------- ----------- --------------------------
|
|
|
|
# 08/20/10 njensen Initial Creation.
|
2023-08-23 11:45:18 -06:00
|
|
|
#
|
|
|
|
#
|
2018-09-05 15:52:38 -06:00
|
|
|
#
|
|
|
|
|
2023-08-23 11:45:18 -06:00
|
|
|
__all__ = [
|
|
|
|
]
|
2018-09-05 15:52:38 -06:00
|
|
|
|
2018-09-06 12:11:36 -06:00
|
|
|
from . import dstypes, adapters
|
|
|
|
from . import DynamicSerializationManager
|
2018-09-05 15:52:38 -06:00
|
|
|
|
|
|
|
class SerializationException(Exception):
|
2023-08-23 11:45:18 -06:00
|
|
|
|
2018-09-05 15:52:38 -06:00
|
|
|
def __init__(self, message=None):
|
|
|
|
self.message = message
|
2023-08-23 11:45:18 -06:00
|
|
|
|
2018-09-05 15:52:38 -06:00
|
|
|
def __str__(self):
|
|
|
|
if self.message:
|
2023-08-23 11:45:18 -06:00
|
|
|
return self.message
|
2018-09-05 15:52:38 -06:00
|
|
|
else:
|
|
|
|
return ""
|
2023-08-23 11:45:18 -06:00
|
|
|
|
2018-09-05 15:52:38 -06:00
|
|
|
def serialize(obj):
|
|
|
|
dsm = DynamicSerializationManager.DynamicSerializationManager()
|
|
|
|
return dsm.serializeObject(obj)
|
|
|
|
|
2023-08-23 11:45:18 -06:00
|
|
|
def deserialize(bytes):
|
2018-09-05 15:52:38 -06:00
|
|
|
dsm = DynamicSerializationManager.DynamicSerializationManager()
|
2023-08-23 11:45:18 -06:00
|
|
|
return dsm.deserializeBytes(bytes)
|