zmc
2023-08-08 e792e9a60d958b93aef96050644f369feb25d61b
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
"""CSS selector structure items."""
from __future__ import annotations
import copyreg
from .pretty import pretty
from typing import Any, Iterator, Hashable, Pattern, Iterable, Mapping
 
__all__ = (
    'Selector',
    'SelectorNull',
    'SelectorTag',
    'SelectorAttribute',
    'SelectorContains',
    'SelectorNth',
    'SelectorLang',
    'SelectorList',
    'Namespaces',
    'CustomSelectors'
)
 
 
SEL_EMPTY = 0x1
SEL_ROOT = 0x2
SEL_DEFAULT = 0x4
SEL_INDETERMINATE = 0x8
SEL_SCOPE = 0x10
SEL_DIR_LTR = 0x20
SEL_DIR_RTL = 0x40
SEL_IN_RANGE = 0x80
SEL_OUT_OF_RANGE = 0x100
SEL_DEFINED = 0x200
SEL_PLACEHOLDER_SHOWN = 0x400
 
 
class Immutable:
    """Immutable."""
 
    __slots__: tuple[str, ...] = ('_hash',)
 
    _hash: int
 
    def __init__(self, **kwargs: Any) -> None:
        """Initialize."""
 
        temp = []
        for k, v in kwargs.items():
            temp.append(type(v))
            temp.append(v)
            super(Immutable, self).__setattr__(k, v)
        super(Immutable, self).__setattr__('_hash', hash(tuple(temp)))
 
    @classmethod
    def __base__(cls) -> "type[Immutable]":
        """Get base class."""
 
        return cls
 
    def __eq__(self, other: Any) -> bool:
        """Equal."""
 
        return (
            isinstance(other, self.__base__()) and
            all([getattr(other, key) == getattr(self, key) for key in self.__slots__ if key != '_hash'])
        )
 
    def __ne__(self, other: Any) -> bool:
        """Equal."""
 
        return (
            not isinstance(other, self.__base__()) or
            any([getattr(other, key) != getattr(self, key) for key in self.__slots__ if key != '_hash'])
        )
 
    def __hash__(self) -> int:
        """Hash."""
 
        return self._hash
 
    def __setattr__(self, name: str, value: Any) -> None:
        """Prevent mutability."""
 
        raise AttributeError("'{}' is immutable".format(self.__class__.__name__))
 
    def __repr__(self) -> str:  # pragma: no cover
        """Representation."""
 
        return "{}({})".format(
            self.__class__.__name__, ', '.join(["{}={!r}".format(k, getattr(self, k)) for k in self.__slots__[:-1]])
        )
 
    __str__ = __repr__
 
    def pretty(self) -> None:  # pragma: no cover
        """Pretty print."""
 
        print(pretty(self))
 
 
class ImmutableDict(Mapping[Any, Any]):
    """Hashable, immutable dictionary."""
 
    def __init__(
        self,
        arg: dict[Any, Any] | Iterable[tuple[Any, Any]]
    ) -> None:
        """Initialize."""
 
        self._validate(arg)
        self._d = dict(arg)
        self._hash = hash(tuple([(type(x), x, type(y), y) for x, y in sorted(self._d.items())]))
 
    def _validate(self, arg: dict[Any, Any] | Iterable[tuple[Any, Any]]) -> None:
        """Validate arguments."""
 
        if isinstance(arg, dict):
            if not all([isinstance(v, Hashable) for v in arg.values()]):
                raise TypeError('{} values must be hashable'.format(self.__class__.__name__))
        elif not all([isinstance(k, Hashable) and isinstance(v, Hashable) for k, v in arg]):
            raise TypeError('{} values must be hashable'.format(self.__class__.__name__))
 
    def __iter__(self) -> Iterator[Any]:
        """Iterator."""
 
        return iter(self._d)
 
    def __len__(self) -> int:
        """Length."""
 
        return len(self._d)
 
    def __getitem__(self, key: Any) -> Any:
        """Get item: `namespace['key']`."""
 
        return self._d[key]
 
    def __hash__(self) -> int:
        """Hash."""
 
        return self._hash
 
    def __repr__(self) -> str:  # pragma: no cover
        """Representation."""
 
        return "{!r}".format(self._d)
 
    __str__ = __repr__
 
 
class Namespaces(ImmutableDict):
    """Namespaces."""
 
    def __init__(self, arg: dict[str, str] | Iterable[tuple[str, str]]) -> None:
        """Initialize."""
 
        super().__init__(arg)
 
    def _validate(self, arg: dict[str, str] | Iterable[tuple[str, str]]) -> None:
        """Validate arguments."""
 
        if isinstance(arg, dict):
            if not all([isinstance(v, str) for v in arg.values()]):
                raise TypeError('{} values must be hashable'.format(self.__class__.__name__))
        elif not all([isinstance(k, str) and isinstance(v, str) for k, v in arg]):
            raise TypeError('{} keys and values must be Unicode strings'.format(self.__class__.__name__))
 
 
class CustomSelectors(ImmutableDict):
    """Custom selectors."""
 
    def __init__(self, arg: dict[str, str] | Iterable[tuple[str, str]]) -> None:
        """Initialize."""
 
        super().__init__(arg)
 
    def _validate(self, arg: dict[str, str] | Iterable[tuple[str, str]]) -> None:
        """Validate arguments."""
 
        if isinstance(arg, dict):
            if not all([isinstance(v, str) for v in arg.values()]):
                raise TypeError('{} values must be hashable'.format(self.__class__.__name__))
        elif not all([isinstance(k, str) and isinstance(v, str) for k, v in arg]):
            raise TypeError('{} keys and values must be Unicode strings'.format(self.__class__.__name__))
 
 
class Selector(Immutable):
    """Selector."""
 
    __slots__ = (
        'tag', 'ids', 'classes', 'attributes', 'nth', 'selectors',
        'relation', 'rel_type', 'contains', 'lang', 'flags', '_hash'
    )
 
    tag: SelectorTag | None
    ids: tuple[str, ...]
    classes: tuple[str, ...]
    attributes: tuple[SelectorAttribute, ...]
    nth: tuple[SelectorNth, ...]
    selectors: tuple[SelectorList, ...]
    relation: SelectorList
    rel_type: str | None
    contains: tuple[SelectorContains, ...]
    lang: tuple[SelectorLang, ...]
    flags: int
 
    def __init__(
        self,
        tag: SelectorTag | None,
        ids: tuple[str, ...],
        classes: tuple[str, ...],
        attributes: tuple[SelectorAttribute, ...],
        nth: tuple[SelectorNth, ...],
        selectors: tuple[SelectorList, ...],
        relation: SelectorList,
        rel_type: str | None,
        contains: tuple[SelectorContains, ...],
        lang: tuple[SelectorLang, ...],
        flags: int
    ):
        """Initialize."""
 
        super().__init__(
            tag=tag,
            ids=ids,
            classes=classes,
            attributes=attributes,
            nth=nth,
            selectors=selectors,
            relation=relation,
            rel_type=rel_type,
            contains=contains,
            lang=lang,
            flags=flags
        )
 
 
class SelectorNull(Immutable):
    """Null Selector."""
 
    def __init__(self) -> None:
        """Initialize."""
 
        super().__init__()
 
 
class SelectorTag(Immutable):
    """Selector tag."""
 
    __slots__ = ("name", "prefix", "_hash")
 
    name: str
    prefix: str | None
 
    def __init__(self, name: str, prefix: str | None) -> None:
        """Initialize."""
 
        super().__init__(name=name, prefix=prefix)
 
 
class SelectorAttribute(Immutable):
    """Selector attribute rule."""
 
    __slots__ = ("attribute", "prefix", "pattern", "xml_type_pattern", "_hash")
 
    attribute: str
    prefix: str
    pattern: Pattern[str] | None
    xml_type_pattern: Pattern[str] | None
 
    def __init__(
        self,
        attribute: str,
        prefix: str,
        pattern: Pattern[str] | None,
        xml_type_pattern: Pattern[str] | None
    ) -> None:
        """Initialize."""
 
        super().__init__(
            attribute=attribute,
            prefix=prefix,
            pattern=pattern,
            xml_type_pattern=xml_type_pattern
        )
 
 
class SelectorContains(Immutable):
    """Selector contains rule."""
 
    __slots__ = ("text", "own", "_hash")
 
    text: tuple[str, ...]
    own: bool
 
    def __init__(self, text: Iterable[str], own: bool) -> None:
        """Initialize."""
 
        super().__init__(text=tuple(text), own=own)
 
 
class SelectorNth(Immutable):
    """Selector nth type."""
 
    __slots__ = ("a", "n", "b", "of_type", "last", "selectors", "_hash")
 
    a: int
    n: bool
    b: int
    of_type: bool
    last: bool
    selectors: SelectorList
 
    def __init__(self, a: int, n: bool, b: int, of_type: bool, last: bool, selectors: SelectorList) -> None:
        """Initialize."""
 
        super().__init__(
            a=a,
            n=n,
            b=b,
            of_type=of_type,
            last=last,
            selectors=selectors
        )
 
 
class SelectorLang(Immutable):
    """Selector language rules."""
 
    __slots__ = ("languages", "_hash",)
 
    languages: tuple[str, ...]
 
    def __init__(self, languages: Iterable[str]):
        """Initialize."""
 
        super().__init__(languages=tuple(languages))
 
    def __iter__(self) -> Iterator[str]:
        """Iterator."""
 
        return iter(self.languages)
 
    def __len__(self) -> int:  # pragma: no cover
        """Length."""
 
        return len(self.languages)
 
    def __getitem__(self, index: int) -> str:  # pragma: no cover
        """Get item."""
 
        return self.languages[index]
 
 
class SelectorList(Immutable):
    """Selector list."""
 
    __slots__ = ("selectors", "is_not", "is_html", "_hash")
 
    selectors: tuple[Selector | SelectorNull, ...]
    is_not: bool
    is_html: bool
 
    def __init__(
        self,
        selectors: Iterable[Selector | SelectorNull] | None = None,
        is_not: bool = False,
        is_html: bool = False
    ) -> None:
        """Initialize."""
 
        super().__init__(
            selectors=tuple(selectors) if selectors is not None else tuple(),
            is_not=is_not,
            is_html=is_html
        )
 
    def __iter__(self) -> Iterator[Selector | SelectorNull]:
        """Iterator."""
 
        return iter(self.selectors)
 
    def __len__(self) -> int:
        """Length."""
 
        return len(self.selectors)
 
    def __getitem__(self, index: int) -> Selector | SelectorNull:
        """Get item."""
 
        return self.selectors[index]
 
 
def _pickle(p: Any) -> Any:
    return p.__base__(), tuple([getattr(p, s) for s in p.__slots__[:-1]])
 
 
def pickle_register(obj: Any) -> None:
    """Allow object to be pickled."""
 
    copyreg.pickle(obj, _pickle)
 
 
pickle_register(Selector)
pickle_register(SelectorNull)
pickle_register(SelectorTag)
pickle_register(SelectorAttribute)
pickle_register(SelectorContains)
pickle_register(SelectorNth)
pickle_register(SelectorLang)
pickle_register(SelectorList)