2.2. fancytypes.PreSerializable
- class PreSerializable(params_to_be_mapped_to_core_attrs={}, validation_and_conversion_funcs={}, pre_serialization_funcs={}, de_pre_serialization_funcs={}, skip_validation_and_conversion=False)[source]
Bases:
Checkable
A type that is pre-serializable, that can be constructed from a serializable representation, and that can perform user-defined validations and conversions of a set of parameters upon construction.
We define pre-serialization as the process of converting an object into a form that can be subsequently serialized into a JSON format. We refer to objects resulting from pre-serialization as serializable objects.
We define de-pre-serialization as the process of converting a serializable object into an instance of the type
fancytypes.PreSerializable
or a subclass thereof, i.e. de-pre-serialization is the reverse process of pre-serialization.- Parameters:
validation_and_conversion_funcs (dict, optional) – A dict object of callable objects.
pre_serialization_funcs (dict, optional) –
A dict object of callable objects that has the same keys as
validation_and_conversion_funcs
.Let
core_attrs_candidate_1
be any dict object that has a key set that is any subsetkey_subset
of that ofvalidation_and_conversion_funcs
, where for each dict keykey
incore_attrs_candidate_1
,validation_and_conversion_funcs[key](core_attrs_candidate_1)
does not raise an exception.For each dict key
key
incore_attrs_candidate_1
,pre_serialization_funcs[key](core_attrs_candidate_1[key])
is expected to yield a serializable object, i.e. it should yield an object that can be passed into the functionjson.dumps
without raising an exception.de_pre_serialization_funcs (dict, optional) –
A dict object of callable objects that has the same keys as
validation_and_conversion_funcs
.Let
core_attrs_candidate_1
be as defined in the above description ofpre_serialization_funcs
.Let
serializable_rep
be a dict object that has the same keys ascore_attrs_candidate_1
, where for each dict keykey
invalidation_and_conversion_funcs
,serializable_rep[key]
is set topre_serialization_funcs[key](core_attrs_candidate_1[key])
.The items of
de_pre_serialization_funcs
are expected to be set to callable objects that would lead tode_pre_serialization_funcs[key](serializable_rep[key])
not raising an exception for each dict keykey
inserializable_rep
.Let
core_attrs_candidate_2
be a dict object that has the same keys asserializable_rep
, where for each dict keykey
invalidation_and_conversion_funcs
,core_attrs_candidate_2[key]
is set tode_pre_serialization_funcs[key](serializable_rep[key])
.The items of
de_pre_serialization_funcs
are also expected to be set to callable objects that would lead tovalidation_and_conversion_funcs[key](core_attrs_candidate_2)
not raising an exception for each dict keykey
incore_attrs_candidate_2
.params_to_be_mapped_to_core_attrs (dict, optional) – A dict object that has the same keys as
core_attrs_candidate_1
, wherecore_attrs_candidate_1
was defined in the above description ofpre_serialization_funcs
.skip_validation_and_conversion (bool, optional) –
Let
core_attrs
denote the attributefancytypes.PreSerializable.core_attrs
, which is a dict object.If
skip_validation_and_conversion
is set toFalse
, then for each keykey
inparams_to_be_mapped_to_core_attrs
,core_attrs[key]
is set tovalidation_and_conversion_funcs[key] (params_to_be_mapped_to_core_attrs)
.Otherwise, if
skip_validation_and_conversion
is set toTrue
, thencore_attrs
is set toparams_to_be_mapped_to_core_attrs
. This option is desired primarily when the user wants to avoid potentially expensive copies and/or conversions of the dict values ofparams_to_be_mapped_to_core_attrs
, as it is guaranteed that no copies or conversions are made in this case.
- validation_and_conversion_funcs
Same as the constructor parameter of the same name.
- Type:
dict, read-only
- pre_serialization_funcs
Same as the constructor parameter of the same name.
- Type:
dict, read-only
- de_pre_serialization_funcs
Same as the constructor parameter of the same name.
- Type:
dict, read-only
- core_attrs
The “core attributes”, represented as a dict object. For each dict key
key
incore_attrs
,validation_and_conversion_funcs[key](core_attrs)
is expected to not raise an exception.- Type:
dict, read-only
Methods
Construct an instance from a serializable representation.
Serialize instance and save the result in a JSON file.
Serialize instance.
Return the core attributes.
Construct an instance from a serialized representation that is stored in a JSON file.
Construct an instance from a serialized representation.
Pre-serialize instance.
Attributes
- classmethod de_pre_serialize(validation_and_conversion_funcs={}, pre_serialization_funcs={}, de_pre_serialization_funcs={}, serializable_rep={}, skip_validation_and_conversion=False)[source]
Construct an instance from a serializable representation.
We define pre-serialization as the process of converting an object into a form that can be subsequently serialized into a JSON format. We refer to objects resulting from pre-serialization as serializable objects.
We define de-pre-serialization as the process of converting a serializable object into an instance of the type
fancytypes.PreSerializable
or a subclass thereof, i.e. de-pre-serialization is the reverse process of pre-serialization.- Parameters:
validation_and_conversion_funcs (dict, optional) – Same as the constructor parameter of the same name.
pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
de_pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
serializable_rep (dict, optional) –
A dict object that has a key set that is any subset of that of
validation_and_conversion_funcs
.The items of
serializable_rep
are expected to be objects that would lead tode_pre_serialization_funcs[key](serializable_rep[key])
not raising an exception for each dict keykey
inserializable_rep
.Let
core_attrs_candidate
be a dict object that has the same keys asserializable_rep
, where for each dict keykey
inserializable_rep
,core_attrs_candidate[key]
is set to de_pre_serialization_funcs[key](serializable_rep[key])``.The items of
serializable_rep
are also expected to be set to objects that would lead tovalidation_and_conversion_funcs[key](core_attrs_candidate)
not raising an exception for each dict keykey
inserializable_rep
.skip_validation_and_conversion (bool, optional) –
Let
core_attrs
denote the attributefancytypes.PreSerializable.core_attrs
, which is a dict object.If
skip_validation_and_conversion
is set toFalse
, then for each keykey
inserializable_rep
,core_attrs[key]
is set tovalidation_and_conversion_funcs[key] (core_attrs_candidate)
, withcore_attrs_candidate_
being defined in the above description ofserializable_rep
.Otherwise, if
skip_validation_and_conversion
is set toTrue
, thencore_attrs
is set tocore_attrs_candidate
. This option is desired primarily when the user wants to avoid potentially expensive copies and/or conversions of the dict values ofcore_attrs_candidate
, as it is guaranteed that no copies or conversions are made in this case.
- Returns:
instance_of_current_cls – An instance constructed from the serializable representation
serializable_rep
.- Return type:
Current class
- dump(filename='serialized_rep_of_fancytype.json', overwrite=False)[source]
Serialize instance and save the result in a JSON file.
- Parameters:
filename (str, optional) – The relative or absolute path to the JSON file in which to store the serialized representation of an instance.
overwrite (bool, optional) – If
overwrite
is set toFalse
and a file exists at the pathfilename
, then the serialized instance is not written to that file and an exception is raised. Otherwise, the serialized instance will be written to that file barring no other issues occur.
- dumps()[source]
Serialize instance.
- Returns:
serialized_rep – A serialized representation of an instance.
- Return type:
dict
- get_core_attrs(deep_copy=True)
Return the core attributes.
- Parameters:
deep_copy (bool, optional) – If
deep_copy
is set toTrue
, then a deep copy of the original dict representation of the core attributes are returned. Otherwise, a reference to the dict representation is returned.- Returns:
core_attrs – A dict representation of the core attributes: each dict key is a str representing the name of a core attribute, and the corresponding dict value is the object to which said core attribute is set.
- Return type:
dict
- classmethod load(validation_and_conversion_funcs={}, pre_serialization_funcs={}, de_pre_serialization_funcs={}, filename='serialized_rep_of_fancytype.json', skip_validation_and_conversion=False)[source]
Construct an instance from a serialized representation that is stored in a JSON file.
Users can save serialized representations to JSON files using the method
fancytypes.PreSerializable.dump()
.- Parameters:
validation_and_conversion_funcs (dict, optional) – Same as the constructor parameter of the same name.
pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
de_pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
filename (str, optional) –
The relative or absolute path to the JSON file that is storing the serialized representation of an instance.
filename
is expected to be such thatjson.load(open(filename, "r"))
does not raise an exception.Let
serializable_rep=json.load(open(filename, "r"))
.filename
is also expected to be such thatde_pre_serialization_funcs[key](serializable_rep[key])
does not raise an exception for each dict keykey
inserializable_rep
.Let
core_attrs_candidate
be a dict object that has the same keys asserializable_rep
, where for each dict keykey
inserializable_rep
,core_attrs_candidate[key]
is set to de_pre_serialization_funcs[key](serializable_rep[key])``.filename
is also expected to be such thatvalidation_and_conversion_funcs[key](core_attrs_candidate)
does not raising an exception for each dict keykey
inserializable_rep
.skip_validation_and_conversion (bool, optional) –
Let
core_attrs
denote the attributefancytypes.PreSerializable.core_attrs
, which is a dict object.Let
core_attrs_candidate
be as defined in the above description offilename
.If
skip_validation_and_conversion
is set toFalse
, then for each keykey
incore_attrs_candidate
,core_attrs[key]
is set tovalidation_and_conversion_funcs[key] (core_attrs_candidate)
.Otherwise, if
skip_validation_and_conversion
is set toTrue
, thencore_attrs
is set tocore_attrs_candidate
. This option is desired primarily when the user wants to avoid potentially expensive copies and/or conversions of the dict values ofcore_attrs_candidate
, as it is guaranteed that no copies or conversions are made in this case.
- Returns:
instance_of_current_cls – An instance constructed from the serialized representation stored in the JSON file.
- Return type:
Current class
- classmethod loads(validation_and_conversion_funcs={}, pre_serialization_funcs={}, de_pre_serialization_funcs={}, serialized_rep='{}', skip_validation_and_conversion=False)[source]
Construct an instance from a serialized representation.
Users can generate serialized representations using the method
fancytypes.PreSerializable.dumps()
.- Parameters:
validation_and_conversion_funcs (dict, optional) – Same as the constructor parameter of the same name.
pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
de_pre_serialization_funcs (dict, optional) – Same as the constructor parameter of the same name.
serialized_rep (str | bytes | bytearray, optional) –
The serialized representation.
serialized_rep
is expected to be such thatjson.loads(serialized_rep)
does not raise an exception.Let
serializable_rep=json.loads(serialized_rep)
.serialized_rep
is also expected to be such thatde_pre_serialization_funcs[key](serializable_rep[key])
does not raise an exception for each dict keykey
inserializable_rep
.Let
core_attrs_candidate
be a dict object that has the same keys asserializable_rep
, where for each dict keykey
inserializable_rep
,core_attrs_candidate[key]
is set to de_pre_serialization_funcs[key](serializable_rep[key])``.serialized_rep
is also expected to be such thatvalidation_and_conversion_funcs[key](core_attrs_candidate)
does not raising an exception for each dict keykey
inserializable_rep
.skip_validation_and_conversion (bool, optional) –
Let
core_attrs
denote the attributefancytypes.PreSerializable.core_attrs
, which is a dict object.Let
core_attrs_candidate
be as defined in the above description ofserialized_rep
.If
skip_validation_and_conversion
is set toFalse
, then for each keykey
incore_attrs_candidate
,core_attrs[key]
is set tovalidation_and_conversion_funcs[key] (core_attrs_candidate)
.Otherwise, if
skip_validation_and_conversion
is set toTrue
, thencore_attrs
is set tocore_attrs_candidate
. This option is desired primarily when the user wants to avoid potentially expensive copies and/or conversions of the dict values ofcore_attrs_candidate
, as it is guaranteed that no copies or conversions are made in this case.
- Returns:
instance_of_current_cls – An instance constructed from the serialized representation.
- Return type:
Current class
- pre_serialize()[source]
Pre-serialize instance.
We define pre-serialization as the process of converting an object into a form that can be subsequently serialized into a JSON format. We refer to objects resulting from pre-serialization as serializable objects.
We define de-pre-serialization as the process of converting a serializable object into an instance of the type
fancytypes.PreSerializable
or a subclass thereof, i.e. de-pre-serialization is the reverse process of pre-serialization.- Returns:
serializable_rep – A serializable representation of an instance.
- Return type:
dict