utils

The utils package contains common functions that are used in more than one layer.

topic

eventsourcing.utils.topic.get_topic(domain_class: type) → str[source]

Returns a string describing a class.

Parameters:domain_class – A class.
Returns:A string describing the class.
eventsourcing.utils.topic.resolve_topic(topic: str) → Any[source]

Resolves topic to the object it references.

Parameters:topic – A string describing a code object (e.g. an object class).
Raises:TopicResolutionError – If there is no such class.
Returns:Code object that the topic references.
eventsourcing.utils.topic.resolve_attr(obj: Any, path: str) → Any[source]

A recursive version of getattr for navigating dotted paths.

Parameters:
  • obj – An object for which we want to retrieve a nested attribute.
  • path – A dot separated string containing zero or more attribute names.
Raises:

AttributeError – If there is no such attribute.

Returns:

The attribute referred to by the path.

eventsourcing.utils.topic.reconstruct_object(obj_class: Type[T], obj_state: Dict[str, Any]) → T[source]

Reconstructs object from given class and state.

Parameters:
  • obj_class – Class of object to be reconstructed.
  • obj_state – State of object to be reconstructed.
Returns:

Reconstructed object.

transcoding

eventsourcing.utils.transcoding.encoderpolicy(arg=None)[source]

Decorator for encoder policy.

Allows default behaviour to be built up from methods registered for different types of things, rather than chain of isinstance() calls in a long if-else block.

eventsourcing.utils.transcoding.decoderpolicy(arg=None)[source]

Decorator for decoder policy.

Allows default behaviour to be built up from methods registered for different named keys, rather than chain of “in dict” queries in a long if-else block.

class eventsourcing.utils.transcoding.ObjectJSONEncoder(sort_keys=False)[source]

Bases: json.encoder.JSONEncoder

__init__(sort_keys=False)[source]

Constructor for JSONEncoder, with sensible defaults.

If skipkeys is false, then it is a TypeError to attempt encoding of keys that are not str, int, float or None. If skipkeys is True, such items are simply skipped.

If ensure_ascii is true, the output is guaranteed to be str objects with all incoming non-ASCII characters escaped. If ensure_ascii is false, the output can contain non-ASCII characters.

If check_circular is true, then lists, dicts, and custom encoded objects will be checked for circular references during encoding to prevent an infinite recursion (which would cause an OverflowError). Otherwise, no such check takes place.

If allow_nan is true, then NaN, Infinity, and -Infinity will be encoded as such. This behavior is not JSON specification compliant, but is consistent with most JavaScript based encoders and decoders. Otherwise, it will be a ValueError to encode such floats.

If sort_keys is true, then the output of dictionaries will be sorted by key; this is useful for regression tests to ensure that JSON serializations can be compared on a day-to-day basis.

If indent is a non-negative integer, then JSON array elements and object members will be pretty-printed with that indent level. An indent level of 0 will only insert newlines. None is the most compact representation.

If specified, separators should be an (item_separator, key_separator) tuple. The default is (‘, ‘, ‘: ‘) if indent is None and (‘,’, ‘: ‘) otherwise. To get the most compact JSON representation, you should specify (‘,’, ‘:’) to eliminate whitespace.

If specified, default is a function that gets called for objects that can’t otherwise be serialized. It should return a JSON encodable version of the object or raise a TypeError.

encode(o)[source]

Return a JSON string representation of a Python data structure.

>>> from json.encoder import JSONEncoder
>>> JSONEncoder().encode({"foo": ["bar", "baz"]})
'{"foo": ["bar", "baz"]}'
class eventsourcing.utils.transcoding.ObjectJSONDecoder(object_hook=None, **kwargs)[source]

Bases: json.decoder.JSONDecoder

__init__(object_hook=None, **kwargs)[source]

object_hook, if specified, will be called with the result of every JSON object decoded and its return value will be used in place of the given dict. This can be used to provide custom deserializations (e.g. to support JSON-RPC class hinting).

object_pairs_hook, if specified will be called with the result of every JSON object decoded with an ordered list of pairs. The return value of object_pairs_hook will be used instead of the dict. This feature can be used to implement custom decoders. If object_hook is also defined, the object_pairs_hook takes priority.

parse_float, if specified, will be called with the string of every JSON float to be decoded. By default this is equivalent to float(num_str). This can be used to use another datatype or parser for JSON floats (e.g. decimal.Decimal).

parse_int, if specified, will be called with the string of every JSON int to be decoded. By default this is equivalent to int(num_str). This can be used to use another datatype or parser for JSON integers (e.g. float).

parse_constant, if specified, will be called with one of the following strings: -Infinity, Infinity, NaN. This can be used to raise an exception if invalid JSON numbers are encountered.

If strict is false (true is the default), then control characters will be allowed inside strings. Control characters in this context are those with character codes in the 0-31 range, including '\t' (tab), '\n', '\r' and '\0'.

cipher

class eventsourcing.utils.cipher.aes.AESCipher(cipher_key: bytes)[source]

Bases: object

Cipher strategy that uses Crypto library AES cipher in GCM mode.

__init__(cipher_key: bytes)[source]

Initialises AES cipher strategy with cipher_key.

Parameters:cipher_key – 16, 24, or 32 random bytes
encrypt(plaintext: bytes) → bytes[source]

Return ciphertext for given plaintext.

decrypt(ciphertext: bytes) → bytes[source]

Return plaintext for given ciphertext.

random

eventsourcing.utils.random.encoded_random_bytes(num_bytes: int) → str[source]

Generates random bytes, encoded as Base64 unicode string.

Parameters:num_bytes – Number of random bytes to generate.
Returns:Random bytes of specified length, encoded as Base64 unicode string.
eventsourcing.utils.random.encode_random_bytes(num_bytes: int) → str

Generates random bytes, encoded as Base64 unicode string.

Parameters:num_bytes – Number of random bytes to generate.
Returns:Random bytes of specified length, encoded as Base64 unicode string.
eventsourcing.utils.random.random_bytes(num_bytes: int) → bytes[source]

Generates random bytes.

Parameters:num_bytes – Number of random bytes to generate.
Returns:Random bytes of specified length.
Type:bytes
eventsourcing.utils.random.encode_bytes(value: bytes) → str[source]

Encodes value as Base64 unicode string.

Parameters:value – Bytes to be encoded.
eventsourcing.utils.random.decode_bytes(value: str) → bytes[source]

Decodes bytes from Base64 encoded unicode string.

Parameters:value (str) – Base64 string.
Returns:Bytes that were encoded with Base64.
Return type:bytes

times

eventsourcing.utils.times.decimaltimestamp_from_uuid(value: uuid.UUID) → decimal.Decimal[source]

Return a floating point unix timestamp from UUID value.

Parameters:value
Returns:Unix timestamp in seconds, with microsecond precision.
Return type:Decimal
eventsourcing.utils.times.timestamp_long_from_uuid(value: uuid.UUID) → int[source]

Returns an integer value representing a unix timestamp in tenths of microseconds.

Parameters:value
Returns:Unix timestamp integer in tenths of microseconds.
Return type:int
eventsourcing.utils.times.decimaltimestamp(t: Optional[float] = None) → decimal.Decimal[source]

A UNIX timestamp as a Decimal object (exact number type).

Returns current time when called without args, otherwise converts given floating point number t to a Decimal with 9 decimal places.

Parameters:t – Floating point UNIX timestamp (“seconds since epoch”).
Returns:A Decimal with 6 decimal places, representing the given floating point or the value returned by time.time().
Return type:Decimal
eventsourcing.utils.times.datetime_from_timestamp(t: Union[decimal.Decimal, float]) → datetime.datetime[source]

Returns naive UTC datetime from decimal UNIX timestamps such as time.time().

Parameters:t – timestamp, either Decimal or float
Returns:datetime.datetime object