Varia's website
https://varia.zone
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.6 KiB
108 lines
3.6 KiB
4 days ago
|
# -*- coding: utf-8 -*-
|
||
|
from icalendar.compat import iteritems
|
||
|
from icalendar.parser_tools import to_unicode
|
||
|
|
||
|
from collections import OrderedDict
|
||
|
|
||
|
|
||
|
def canonsort_keys(keys, canonical_order=None):
|
||
|
"""Sorts leading keys according to canonical_order. Keys not specified in
|
||
|
canonical_order will appear alphabetically at the end.
|
||
|
"""
|
||
|
canonical_map = {k: i for i, k in enumerate(canonical_order or [])}
|
||
|
head = [k for k in keys if k in canonical_map]
|
||
|
tail = [k for k in keys if k not in canonical_map]
|
||
|
return sorted(head, key=lambda k: canonical_map[k]) + sorted(tail)
|
||
|
|
||
|
|
||
|
def canonsort_items(dict1, canonical_order=None):
|
||
|
"""Returns a list of items from dict1, sorted by canonical_order.
|
||
|
"""
|
||
|
return [(k, dict1[k]) for k
|
||
|
in canonsort_keys(dict1.keys(), canonical_order)]
|
||
|
|
||
|
|
||
|
class CaselessDict(OrderedDict):
|
||
|
"""A dictionary that isn't case sensitive, and only uses strings as keys.
|
||
|
Values retain their case.
|
||
|
"""
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
"""Set keys to upper for initial dict.
|
||
|
"""
|
||
|
super(CaselessDict, self).__init__(*args, **kwargs)
|
||
|
for key, value in self.items():
|
||
|
key_upper = to_unicode(key).upper()
|
||
|
if key != key_upper:
|
||
|
super(CaselessDict, self).__delitem__(key)
|
||
|
self[key_upper] = value
|
||
|
|
||
|
def __getitem__(self, key):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).__getitem__(key.upper())
|
||
|
|
||
|
def __setitem__(self, key, value):
|
||
|
key = to_unicode(key)
|
||
|
super(CaselessDict, self).__setitem__(key.upper(), value)
|
||
|
|
||
|
def __delitem__(self, key):
|
||
|
key = to_unicode(key)
|
||
|
super(CaselessDict, self).__delitem__(key.upper())
|
||
|
|
||
|
def __contains__(self, key):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).__contains__(key.upper())
|
||
|
|
||
|
def get(self, key, default=None):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).get(key.upper(), default)
|
||
|
|
||
|
def setdefault(self, key, value=None):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).setdefault(key.upper(), value)
|
||
|
|
||
|
def pop(self, key, default=None):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).pop(key.upper(), default)
|
||
|
|
||
|
def popitem(self):
|
||
|
return super(CaselessDict, self).popitem()
|
||
|
|
||
|
def has_key(self, key):
|
||
|
key = to_unicode(key)
|
||
|
return super(CaselessDict, self).__contains__(key.upper())
|
||
|
|
||
|
def update(self, *args, **kwargs):
|
||
|
# Multiple keys where key1.upper() == key2.upper() will be lost.
|
||
|
mappings = list(args) + [kwargs]
|
||
|
for mapping in mappings:
|
||
|
if hasattr(mapping, 'items'):
|
||
|
mapping = iteritems(mapping)
|
||
|
for key, value in mapping:
|
||
|
self[key] = value
|
||
|
|
||
|
def copy(self):
|
||
|
return type(self)(super(CaselessDict, self).copy())
|
||
|
|
||
|
def __repr__(self):
|
||
|
return '%s(%s)' % (type(self).__name__, dict(self))
|
||
|
|
||
|
def __eq__(self, other):
|
||
|
return self is other or dict(self.items()) == dict(other.items())
|
||
|
|
||
|
# A list of keys that must appear first in sorted_keys and sorted_items;
|
||
|
# must be uppercase.
|
||
|
canonical_order = None
|
||
|
|
||
|
def sorted_keys(self):
|
||
|
"""Sorts keys according to the canonical_order for the derived class.
|
||
|
Keys not specified in canonical_order will appear at the end.
|
||
|
"""
|
||
|
return canonsort_keys(self.keys(), self.canonical_order)
|
||
|
|
||
|
def sorted_items(self):
|
||
|
"""Sorts items according to the canonical_order for the derived class.
|
||
|
Items not specified in canonical_order will appear at the end.
|
||
|
"""
|
||
|
return canonsort_items(self, self.canonical_order)
|