ordereddict.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2008 Johan Dahlin
  4. # Copyright (C) 2013 Dieter Verfaillie <dieterv@optionexplicit.be>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Lesser General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public
  17. # License along with this library; if not, write to the
  18. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. # Boston, MA 02111-1307, USA.
  20. # Borrowed from:
  21. # http://hg.sqlalchemy.org/sqlalchemy/raw-file/77e2264283d4/lib/sqlalchemy/util/_collections.py
  22. # http://hg.sqlalchemy.org/sqlalchemy/raw-file/77e2264283d4/AUTHORS
  23. #
  24. # util/_collections.py
  25. # Copyright (C) 2005-2012 the SQLAlchemy authors and contributors <see AUTHORS file>
  26. #
  27. # This module is part of SQLAlchemy and is released under
  28. # the MIT License: http://www.opensource.org/licenses/mit-license.php
  29. import sys
  30. py2k = sys.version_info < (3, 0)
  31. class OrderedDict(dict):
  32. """A dict that returns keys/values/items in the order they were added."""
  33. __slots__ = '_list',
  34. def __reduce__(self):
  35. return OrderedDict, (self.items(),)
  36. def __init__(self, ____sequence=None, **kwargs):
  37. self._list = []
  38. if ____sequence is None:
  39. if kwargs:
  40. self.update(**kwargs)
  41. else:
  42. self.update(____sequence, **kwargs)
  43. def clear(self):
  44. self._list = []
  45. dict.clear(self)
  46. def copy(self):
  47. return self.__copy__()
  48. def __copy__(self):
  49. return OrderedDict(self)
  50. def sort(self, *arg, **kw):
  51. self._list.sort(*arg, **kw)
  52. def update(self, ____sequence=None, **kwargs):
  53. if ____sequence is not None:
  54. if hasattr(____sequence, 'keys'):
  55. for key in ____sequence.keys():
  56. self.__setitem__(key, ____sequence[key])
  57. else:
  58. for key, value in ____sequence:
  59. self[key] = value
  60. if kwargs:
  61. self.update(kwargs)
  62. def setdefault(self, key, value):
  63. if key not in self:
  64. self.__setitem__(key, value)
  65. return value
  66. else:
  67. return self.__getitem__(key)
  68. def __iter__(self):
  69. return iter(self._list)
  70. def keys(self):
  71. return list(self)
  72. def values(self):
  73. return [self[key] for key in self._list]
  74. def items(self):
  75. return [(key, self[key]) for key in self._list]
  76. if py2k:
  77. def itervalues(self):
  78. return iter(self.values())
  79. def iterkeys(self):
  80. return iter(self)
  81. def iteritems(self):
  82. return iter(self.items())
  83. def __setitem__(self, key, object):
  84. if key not in self:
  85. try:
  86. self._list.append(key)
  87. except AttributeError:
  88. # work around Python pickle loads() with
  89. # dict subclass (seems to ignore __setstate__?)
  90. self._list = [key]
  91. dict.__setitem__(self, key, object)
  92. def __delitem__(self, key):
  93. dict.__delitem__(self, key)
  94. self._list.remove(key)
  95. def pop(self, key, *default):
  96. present = key in self
  97. value = dict.pop(self, key, *default)
  98. if present:
  99. self._list.remove(key)
  100. return value
  101. def popitem(self):
  102. item = dict.popitem(self)
  103. self._list.remove(item[0])
  104. return item