-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleJSONLogPrimFactory.py
More file actions
40 lines (29 loc) · 906 Bytes
/
Copy pathSimpleJSONLogPrimFactory.py
File metadata and controls
40 lines (29 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
"""
REQUIRES simplejson
"""
import datetime
import simplejson as json
from .LogPrimFactory import LogPrimFactory
def datetimeconverter(o):
if isinstance(o, datetime.datetime):
return o.__str__()
class SimpleJSONLogPrimFactory(LogPrimFactory):
"""
Simple JSON Log Primitive Factory.
Handles datetime objects, Decimals and Iterables
Log Format: JSON (from base dictionary object)
Functions
* logObj - json dump the base logObj output
* ... LogPrimFactories
"""
def logObj(self, *args, **kwargs):
"""
Take the base class output (a dictionary) and use json.dumps to pass back stringified JSON
"""
return json.dumps(
super().logObj(*args, **kwargs)
, default=datetimeconverter
, use_decimal=True
, iterable_as_array=True
)