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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import functools
import jsonpath_rw
class SortedThis(jsonpath_rw.This):
"""The JSONPath referring to the sorted version of the current object.
Concrete syntax is '`sorted`' or [\\field,/field].
"""
def __init__(self, expressions=None):
self.expressions = expressions
def _compare(self, left, right):
left = jsonpath_rw.DatumInContext.wrap(left)
right = jsonpath_rw.DatumInContext.wrap(right)
for expr in self.expressions:
field, reverse = expr
l_datum = field.find(left)
r_datum = field.find(right)
if (not l_datum or not r_datum or
len(l_datum) > 1 or len(r_datum) > 1 or
l_datum[0].value == r_datum[0].value):
# NOTE(sileht): should we do something if the expression
# match multiple fields, for now ignore them
continue
elif l_datum[0].value < r_datum[0].value:
return 1 if reverse else -1
else:
return -1 if reverse else 1
return 0
def find(self, datum):
"""Return sorted value of This if list or dict."""
if isinstance(datum.value, dict) and self.expressions:
return datum
if isinstance(datum.value, dict) or isinstance(datum.value, list):
key = (functools.cmp_to_key(self._compare)
if self.expressions else None)
return [jsonpath_rw.DatumInContext.wrap(value)
for value in sorted(datum.value, key=key)]
return datum
def __eq__(self, other):
return isinstance(other, Len)
def __repr__(self):
return '%s(%r)' % (self.__class__.__name__, self.expressions)
def __str__(self):
return '[?%s]' % self.expressions
class Len(jsonpath_rw.JSONPath):
"""The JSONPath referring to the len of the current object.
Concrete syntax is '`len`'.
"""
def find(self, datum):
datum = jsonpath_rw.DatumInContext.wrap(datum)
try:
value = len(datum.value)
except TypeError:
return []
else:
return [jsonpath_rw.DatumInContext(value,
context=None,
path=Len())]
def __eq__(self, other):
return isinstance(other, Len)
def __str__(self):
return '`len`'
def __repr__(self):
return 'Len()'
|