Source code for dae.query_variants.attributes_query

# pylint: disable=too-few-public-methods
from __future__ import annotations

import enum
from collections.abc import Callable, Iterable
from functools import reduce
from typing import Any, cast

from lark import InlineTransformer, Lark
from lark.reconstruct import Reconstructor
from lark.visitors import Interpreter

from dae.variants.attributes import Inheritance, Role, Sex, Status
from dae.variants.core import Allele
from dae.variants.variant import allele_type_from_name

QUERY_GRAMMAR = """
    ?start: expression

    ?expression: logical_or

    ?logical_or: logical_and (" " "or" " " logical_and)*

    ?logical_and: molecule (" " "and" " " molecule)*

    ?molecule: functions
        | negation
        | atom

    negation: "not" " " molecule -> negation

    ?functions: any | all | eq

    any: "any"i "(" _arglist ")"

    all: "all"i "(" _arglist ")"

    eq: "eq"i "(" _simplearglist ")"

    ?atom: "(" logical_or ")" | less_than | more_than | less_than_eq
        | more_than_eq | arg

    less_than: ">" SIGNED_NUMBER

    more_than: "<" SIGNED_NUMBER

    less_than_eq: ">=" SIGNED_NUMBER

    more_than_eq: "<=" SIGNED_NUMBER

    arg: simple_arg

    simple_arg: STRING | "'" STRING "'" | "\\"" STRING "\\""

    STRING : ("_"|LETTER|DIGIT|"."|"-"|"'"|"+")+

    _arglist: (arg "," )* arg [","]

    _simplearglist: (simple_arg "," )* simple_arg [","]

    %import common.SIGNED_NUMBER -> SIGNED_NUMBER
    %import common.LETTER -> LETTER
    %import common.DIGIT -> DIGIT
    %import common.WS_INLINE -> WS

    %ignore WS
"""

parser_with_ambiguity = Lark(QUERY_GRAMMAR, ambiguity="explicit")

PARSER = Lark(QUERY_GRAMMAR)


[docs] class Matcher: """No idea what this class is supposed to do. If you know please edit.""" def __init__( self, tree: QNode, parser: Lark, matcher: Callable[[Any], bool], ): assert matcher is not None assert tree is not None assert parser is not None self.matcher = matcher self.tree = tree self.parser = parser self._reconstructor = Reconstructor(parser)
[docs] def match(self, array: Iterable[Any]) -> bool: if not isinstance(array, set): array = set(array) return self.matcher(array)
[docs] def query_str(self) -> None: self._reconstructor.reconstruct(self.tree)
[docs] class BaseQueryTransformerMatcher: """Base class for query transformer matchers.""" def __init__( self, parser: Lark = PARSER, token_converter: Callable[[Any], Any] | None = None, ): self.parser = parser self.transformer = StringQueryToTreeTransformer( parser, token_converter, ) self.transformer2: BaseTreeTransformer
[docs] def transform_query_string_to_tree(self, expression: str) -> QNode: parsed = self.parser.parse(expression) return cast(QNode, self.transformer.transform(parsed))
[docs] class StringQueryToTreeTransformer(InlineTransformer): """Convert tokens using a token converter.""" def __init__( self, _parser: Lark = PARSER, token_converter: Callable[[Any], Any] | None = None, ): super().__init__() if token_converter is None: self.token_converter = lambda x: x else: self.token_converter = token_converter
[docs] def arg(self, *args: Any) -> QNode: return ContainsNode(args[0])
[docs] def simple_arg(self, *args: Any) -> Any: return self.token_converter(args[0])
[docs] def negation(self, *args: Any) -> QNode: return NotNode(args[0])
[docs] def logical_and(self, *args: QNode) -> QNode: return AndNode(args)
[docs] def logical_or(self, *args: QNode) -> QNode: return OrNode(args)
[docs] def start(self, *args: Any) -> Any: assert len(args) == 1 return args[0]
[docs] def any(self, *args: QNode) -> QNode: return OrNode(args)
[docs] def all(self, *args: QNode) -> QNode: return AndNode(args)
[docs] class LeafNode: def __init__(self, arg: QNode): self.arg = arg
[docs] class TreeNode: def __init__(self, children: Iterable[QNode]): self.children = children
QNode = LeafNode | TreeNode
[docs] class AndNode(TreeNode): pass
[docs] class OrNode(TreeNode): pass
[docs] class NotNode(TreeNode): def __init__(self, child: QNode): super().__init__([child])
[docs] class EqualsNode(LeafNode): pass
[docs] class ContainsNode(LeafNode): pass
[docs] class ElementOfNode(LeafNode): pass
[docs] class LessThanNode(LeafNode): pass
[docs] class GreaterThanNode(LeafNode): pass
[docs] class LessThanEqNode(LeafNode): pass
[docs] class GreaterThanEqNode(LeafNode): pass
[docs] class BaseTreeTransformer:
[docs] def transform(self, node: QNode) -> Any: if isinstance(node, TreeNode): children = [self.transform(c) for c in node.children] return getattr(self, type(node).__name__)(children) return getattr(self, type(node).__name__)(node.arg)
[docs] class QueryTreeToLambdaTransformer(BaseTreeTransformer): # pylint: disable=invalid-name """Transforma all nodes to python lambda functions."""
[docs] def ContainsNode(self, arg: Any) -> Callable[[Any], bool]: return lambda x: arg in x
[docs] def ElementOfNode(self, arg: Any) -> Callable[[Any], bool]: return lambda x: x in arg
[docs] def EqualsNode(self, arg: Any) -> Callable[[Any], bool]: return lambda x: x == set(arg)
[docs] def NotNode( self, children: list[Callable[[Any], bool]], ) -> Callable[[Any], bool]: assert len(children) == 1 child = children[0] return lambda x: not child(x)
[docs] def AndNode( self, children: list[Callable[[Any], bool]], ) -> Callable[[Any], bool]: return lambda x: all(f(x) for f in children)
[docs] def OrNode( self, children: list[Callable[[Any], bool]], ) -> Callable[[Any], bool]: return lambda x: any(f(x) for f in children)
[docs] class QueryTreeToBitwiseLambdaTransformer(BaseTreeTransformer): # pylint: disable=invalid-name """No idea what this is supposed to do. Please edit."""
[docs] def ContainsNode(self, arg: Any) -> Callable[[Any], bool]: return lambda vals: any(arg & v for v in vals if v is not None)
[docs] def AndNode( self, children: list[Callable[[Any], bool]], ) -> Callable[[Any], bool]: return lambda x: all(child(x) for child in children)
[docs] def OrNode( self, children: list[Callable[[Any], bool]], ) -> Callable[[Any], bool]: return lambda x: any(child(x) for child in children)
[docs] def roles_converter(arg: str | Role) -> Role | None: if not isinstance(arg, Role): return Role.from_name(arg) return arg
[docs] def sex_converter(arg: str | Sex) -> Sex | None: if not isinstance(arg, Sex): return Sex.from_name(arg) return arg
[docs] def affected_status_converter( arg: str | Status, ) -> Status | None: if not isinstance(arg, Status): return Status.from_name(arg) return arg
[docs] def inheritance_converter( arg: str | Inheritance, ) -> Inheritance | None: if not isinstance(arg, Inheritance): return Inheritance.from_name(arg) return arg
[docs] def variant_type_converter(arg: str | Allele.Type) -> Allele.Type: if not isinstance(arg, Allele.Type): return allele_type_from_name(arg) return arg
[docs] class QueryTreeToSQLTransformer(BaseTreeTransformer): # pylint: disable=invalid-name """I don't know what this class does. Please edit if you do.""" def __init__(self, column_name: str): self.column_name = column_name super().__init__()
[docs] @staticmethod def token_converter(arg: Any) -> str: if isinstance(arg, enum.Enum): return str(arg.value) return str(arg)
[docs] def get_bit_and_str( arg1: Any, arg2: Any, *, use_bit_and_function: bool, ) -> str: if use_bit_and_function: return f"BITAND({arg1}, {arg2})" return f"({arg1} & {arg2})"
[docs] class QueryTreeToSQLBitwiseTransformer(QueryTreeToSQLTransformer): """I don't know what this class does. Please edit if you do.""" # pylint: disable=invalid-name def __init__( self, column_name: str, *, use_bit_and_function: bool = True, ): super().__init__(column_name) self.use_bit_and_function = use_bit_and_function
[docs] def ContainsNode(self, arg: Any) -> str: converted_token = self.token_converter(arg) bit_op = get_bit_and_str( self.column_name, converted_token, use_bit_and_function=self.use_bit_and_function) return f"{bit_op} != 0"
[docs] @staticmethod def NotNode(children: list[str]) -> str: assert len(children) == 1 return f"(NOT ({children[0]}))"
[docs] @staticmethod def AndNode(children: list[str]) -> str: return reduce(lambda x, y: f"({x}) AND ({y})", children)
[docs] @staticmethod def OrNode(children: list[str]) -> str: return reduce(lambda x, y: f"({x}) OR ({y})", children)
[docs] class BitwiseTreeTransformer(Interpreter): # pylint: disable=invalid-name """Transform bitwise expressions.""" def __init__(self, token_converter: Callable[[Any], QNode]): super().__init__() self.parser = PARSER self.token_converter = token_converter
[docs] def arg(self, *args: QNode) -> QNode: return ContainsNode(args[0])
[docs] def simple_arg(self, *args: QNode) -> QNode: return self.token_converter(args[0])
[docs] def negation(self, *args: QNode) -> QNode: return NotNode(args[0])
[docs] def logical_and(self, *args: QNode) -> QNode: return AndNode(args)
[docs] def logical_or(self, *args: QNode) -> QNode: return OrNode(args)
[docs] class QueryTransformerMatcher(BaseQueryTransformerMatcher): """No idea what this is supposed to do. Please edit.""" def __init__( self, parser: Lark = PARSER, token_converter: Callable[[Any], Any] | None = None, transformer2: BaseTreeTransformer | None = None, ): super().__init__(parser, token_converter) self.transformer2 = transformer2 or QueryTreeToLambdaTransformer()
[docs] def transform_tree_to_matcher(self, tree: QNode) -> Matcher: matcher = self.transformer2.transform(tree) return Matcher(tree, self.parser, matcher)
role_query = QueryTransformerMatcher(token_converter=roles_converter) sex_query = QueryTransformerMatcher(token_converter=sex_converter) affected_status_query = QueryTransformerMatcher( token_converter=affected_status_converter) inheritance_query = QueryTransformerMatcher( token_converter=inheritance_converter, ) variant_type_query = QueryTransformerMatcher( token_converter=variant_type_converter, transformer2=QueryTreeToBitwiseLambdaTransformer(), )