53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
def Validator(struct, value):
|
|
"""
|
|
If ``value`` is not valid, raise a ``cereal.Invalid`` exception.
|
|
|
|
``struct`` is the ``cereal.Structure`` instance which
|
|
contains, among other things, the default value, the name of
|
|
the value, and a ``required`` flag indicating whether this
|
|
value is required.
|
|
"""
|
|
|
|
class Type(object):
|
|
def serialize(self, struct, value):
|
|
"""
|
|
Serialize the object represented by ``value`` to a
|
|
data structure. The serialization should be composed of one or
|
|
more objects which can be deserialized by the
|
|
:meth:`cereal.interfaces.Type.deserialize` method of this
|
|
type.
|
|
|
|
This method should also do type validation of ``value``.
|
|
|
|
``struct`` is the ``cereal.Structure`` instance which
|
|
contains, among other things, the default value, the name of
|
|
the value, and a ``required`` flag indicating whether this
|
|
value is required.
|
|
|
|
If the object cannot be serialized, or type validation for
|
|
``value`` fails, a ``cereal.Invalid`` exception should be
|
|
raised.
|
|
"""
|
|
|
|
def deserialize(self, struct, value):
|
|
"""
|
|
|
|
Deserialze the serialization represented by ``value`` to a
|
|
data structure. The deserialization should be composed of one
|
|
or more objects which can be serialized by the
|
|
:meth:`cereal.interfaces.Type.serialize` method of this
|
|
type.
|
|
|
|
This method should also do type validation of ``value``.
|
|
|
|
``struct`` is the ``cereal.Structure`` instance which
|
|
contains, among other things, the default value, the name of
|
|
the value, and a ``required`` flag indicating whether this
|
|
value is required.
|
|
|
|
If the object cannot be deserialized, or type validation for
|
|
``value`` fails, a ``cereal.Invalid`` exception should be
|
|
raised.
|
|
"""
|
|
|