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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
from collections import defaultdict
from typing import List, Tuple
from xsdata.codegen.mixins import HandlerInterface
from xsdata.codegen.models import Attr, Class, get_restriction_choice
from xsdata.utils import collections
class UpdateAttributesEffectiveChoice(HandlerInterface):
"""
Look for fields that are repeated and mark them effectively as choices if
they are not part of symmetrical sequences.
valid eg: <a/><b/><a/> symmetrical sequence: <a/><b/><a/><b/>
"""
__slots__ = ()
def process(self, target: Class):
if target.is_enumeration:
return
groups = self.group_repeating_attrs(target)
if groups:
groups = list(collections.connected_components(groups))
target.attrs = self.merge_attrs(target, groups)
self.reset_symmetrical_choices(target)
@classmethod
def reset_symmetrical_choices(cls, target: Class):
groups = collections.group_by(target.attrs, get_restriction_choice)
for choice, attrs in groups.items():
if choice is None or choice > 0:
continue
min_occurs = set()
max_occurs = set()
sequences = set()
for attr in attrs:
min_occurs.add(attr.restrictions.min_occurs)
max_occurs.add(attr.restrictions.max_occurs)
if attr.restrictions.sequence:
sequences.add(attr.restrictions.sequence)
if len(min_occurs) == len(max_occurs) == len(sequences) == 1:
for attr in attrs:
assert attr.restrictions.max_occurs is not None
assert attr.restrictions.sequence is not None
attr.restrictions.choice = None
cls.reset_effective_choice(
attr.restrictions.path,
"s",
attr.restrictions.sequence,
attr.restrictions.max_occurs,
)
@classmethod
def reset_effective_choice(
cls,
paths: List[Tuple[str, int, int, int]],
name: str,
index: int,
max_occur: int,
):
for i, path in enumerate(paths):
if path[0] == name and path[1] == index and path[3] == 1:
new_path = (*path[:-1], max_occur)
paths[i] = new_path
break
@classmethod
def merge_attrs(cls, target: Class, groups: List[List[int]]) -> List[Attr]:
attrs = []
for index, attr in enumerate(target.attrs):
group = collections.find_connected_component(groups, index)
if group == -1:
attrs.append(attr)
continue
pos = collections.find(attrs, attr)
if pos == -1:
attr.restrictions.choice = (group * -1) - 1
attrs.append(attr)
else:
existing = attrs[pos]
assert existing.restrictions.min_occurs is not None
assert existing.restrictions.max_occurs is not None
existing.restrictions.min_occurs += attr.restrictions.min_occurs or 0
existing.restrictions.max_occurs += attr.restrictions.max_occurs or 0
return attrs
@classmethod
def group_repeating_attrs(cls, target: Class) -> List[List[int]]:
counters = defaultdict(list)
for index, attr in enumerate(target.attrs):
if not attr.is_attribute:
counters[attr.key].append(index)
groups = []
for x in counters.values():
if len(x) > 1:
groups.append(list(range(x[0], x[-1] + 1)))
return groups
|