/django/core/serializers/__init__.py

https://code.google.com/p/mango-py/ · Python · 117 lines · 69 code · 13 blank · 35 comment · 16 complexity · 5694c5b2caaef6c76199956603994db5 MD5 · raw file

  1. """
  2. Interfaces for serializing Django objects.
  3. Usage::
  4. from django.core import serializers
  5. json = serializers.serialize("json", some_query_set)
  6. objects = list(serializers.deserialize("json", json))
  7. To add your own serializers, use the SERIALIZATION_MODULES setting::
  8. SERIALIZATION_MODULES = {
  9. "csv" : "path.to.csv.serializer",
  10. "txt" : "path.to.txt.serializer",
  11. }
  12. """
  13. from django.conf import settings
  14. from django.utils import importlib
  15. # Built-in serializers
  16. BUILTIN_SERIALIZERS = {
  17. "xml" : "django.core.serializers.xml_serializer",
  18. "python" : "django.core.serializers.python",
  19. "json" : "django.core.serializers.json",
  20. }
  21. # Check for PyYaml and register the serializer if it's available.
  22. try:
  23. import yaml
  24. BUILTIN_SERIALIZERS["yaml"] = "django.core.serializers.pyyaml"
  25. except ImportError:
  26. pass
  27. _serializers = {}
  28. def register_serializer(format, serializer_module, serializers=None):
  29. """Register a new serializer.
  30. ``serializer_module`` should be the fully qualified module name
  31. for the serializer.
  32. If ``serializers`` is provided, the registration will be added
  33. to the provided dictionary.
  34. If ``serializers`` is not provided, the registration will be made
  35. directly into the global register of serializers. Adding serializers
  36. directly is not a thread-safe operation.
  37. """
  38. if serializers is None and not _serializers:
  39. _load_serializers()
  40. module = importlib.import_module(serializer_module)
  41. if serializers is None:
  42. _serializers[format] = module
  43. else:
  44. serializers[format] = module
  45. def unregister_serializer(format):
  46. "Unregister a given serializer. This is not a thread-safe operation."
  47. if not _serializers:
  48. _load_serializers()
  49. del _serializers[format]
  50. def get_serializer(format):
  51. if not _serializers:
  52. _load_serializers()
  53. return _serializers[format].Serializer
  54. def get_serializer_formats():
  55. if not _serializers:
  56. _load_serializers()
  57. return _serializers.keys()
  58. def get_public_serializer_formats():
  59. if not _serializers:
  60. _load_serializers()
  61. return [k for k, v in _serializers.iteritems() if not v.Serializer.internal_use_only]
  62. def get_deserializer(format):
  63. if not _serializers:
  64. _load_serializers()
  65. return _serializers[format].Deserializer
  66. def serialize(format, queryset, **options):
  67. """
  68. Serialize a queryset (or any iterator that returns database objects) using
  69. a certain serializer.
  70. """
  71. s = get_serializer(format)()
  72. s.serialize(queryset, **options)
  73. return s.getvalue()
  74. def deserialize(format, stream_or_string, **options):
  75. """
  76. Deserialize a stream or a string. Returns an iterator that yields ``(obj,
  77. m2m_relation_dict)``, where ``obj`` is a instantiated -- but *unsaved* --
  78. object, and ``m2m_relation_dict`` is a dictionary of ``{m2m_field_name :
  79. list_of_related_objects}``.
  80. """
  81. d = get_deserializer(format)
  82. return d(stream_or_string, **options)
  83. def _load_serializers():
  84. """
  85. Register built-in and settings-defined serializers. This is done lazily so
  86. that user code has a chance to (e.g.) set up custom settings without
  87. needing to be careful of import order.
  88. """
  89. global _serializers
  90. serializers = {}
  91. for format in BUILTIN_SERIALIZERS:
  92. register_serializer(format, BUILTIN_SERIALIZERS[format], serializers)
  93. if hasattr(settings, "SERIALIZATION_MODULES"):
  94. for format in settings.SERIALIZATION_MODULES:
  95. register_serializer(format, settings.SERIALIZATION_MODULES[format], serializers)
  96. _serializers = serializers