52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
"""
|
|
Serialize data to/from JSON
|
|
"""
|
|
|
|
import datetime
|
|
from django.utils import simplejson
|
|
from django.core.serializers.python import Serializer as PythonSerializer
|
|
from django.core.serializers.python import Deserializer as PythonDeserializer
|
|
try:
|
|
from cStringIO import StringIO
|
|
except ImportError:
|
|
from StringIO import StringIO
|
|
|
|
class Serializer(PythonSerializer):
|
|
"""
|
|
Convert a queryset to JSON.
|
|
"""
|
|
def end_serialization(self):
|
|
simplejson.dump(self.objects, self.stream, cls=DateTimeAwareJSONEncoder, **self.options)
|
|
|
|
def getvalue(self):
|
|
return self.stream.getvalue()
|
|
|
|
def Deserializer(stream_or_string, **options):
|
|
"""
|
|
Deserialize a stream or string of JSON data.
|
|
"""
|
|
if isinstance(stream_or_string, basestring):
|
|
stream = StringIO(stream_or_string)
|
|
else:
|
|
stream = stream_or_string
|
|
for obj in PythonDeserializer(simplejson.load(stream)):
|
|
yield obj
|
|
|
|
class DateTimeAwareJSONEncoder(simplejson.JSONEncoder):
|
|
"""
|
|
JSONEncoder subclass that knows how to encode date/time types
|
|
"""
|
|
|
|
DATE_FORMAT = "%Y-%m-%d"
|
|
TIME_FORMAT = "%H:%M:%S"
|
|
|
|
def default(self, o):
|
|
if isinstance(o, datetime.datetime):
|
|
return o.strftime("%s %s" % (self.DATE_FORMAT, self.TIME_FORMAT))
|
|
elif isinstance(o, datetime.date):
|
|
return o.strftime(self.DATE_FORMAT)
|
|
elif isinstance(o, datetime.time):
|
|
return o.strftime(self.TIME_FORMAT)
|
|
else:
|
|
return super(DateTimeAwareJSONEncoder, self).default(o)
|