7feaf04278333ae2ab18dc6667065f464c5106a5
[pti/o2.git] / o2common / views / view.py
1 # Copyright (C) 2021-2022 Wind River Systems, Inc.
2 #
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14
15 from sqlalchemy.sql.elements import ColumnElement
16 from sqlalchemy import or_
17
18 from o2common.helper import o2logging
19 logger = o2logging.get_logger(__name__)
20
21
22 def gen_filter(obj: ColumnElement, filter_str: str):
23     if filter_str == '':
24         return []
25     filter_without_space = filter_str.replace(" ", "")
26     items = filter_without_space.split(';')
27
28     filter_list = list()
29     for i in items:
30         if '(' in i:
31             i = i.replace("(", "")
32         if ')' in i:
33             i = i.replace(")", "")
34         filter_expr = i.split(',')
35         if len(filter_expr) < 3:
36             continue
37         filter_op = filter_expr[0]
38         filter_key = filter_expr[1]
39         filter_vals = filter_expr[2:]
40         filter_list.extend(toFilterArgs(
41             filter_op, obj, filter_key, filter_vals))
42     logger.info('Filter list length: %d' % len(filter_list))
43     return filter_list
44
45
46 def toFilterArgs(operation: str, obj: ColumnElement, key: str, values: list):
47     if not hasattr(obj, key):
48         logger.warning('Filter attrName %s not in Object %s.' %
49                        (key, str(obj)))
50         return []
51
52     if operation in ['eq', 'neq', 'gt', 'lt', 'gte', 'lte']:
53         if len(values) != 1:
54             raise KeyError('Filter operation one is only support one value.')
55     elif operation in ['in', 'nin', 'cont', 'ncont']:
56         if len(values) == 0:
57             raise KeyError('Filter operation value is needed.')
58     else:
59         raise KeyError('Filter operation value not support.')
60
61     ll = list()
62     if operation == 'eq':
63         val = values[0]
64         if val.lower() == 'null':
65             val = None
66         ll.append(getattr(obj, key) == val)
67     elif operation == 'neq':
68         val = values[0]
69         if val.lower() == 'null':
70             val = None
71         ll.append(getattr(obj, key) != val)
72     elif operation == 'gt':
73         val = values[0]
74         ll.append(getattr(obj, key) > val)
75     elif operation == 'lt':
76         val = values[0]
77         ll.append(getattr(obj, key) < val)
78     elif operation == 'gte':
79         val = values[0]
80         ll.append(getattr(obj, key) >= val)
81     elif operation == 'lte':
82         val = values[0]
83         ll.append(getattr(obj, key) <= val)
84     elif operation == 'in':
85         ll.append(getattr(obj, key).in_(values))
86     elif operation == 'nin':
87         ll.append(~getattr(obj, key).in_(values))
88     elif operation == 'cont':
89         val_list = list()
90         for val in values:
91             val_list.append(getattr(obj, key).contains(val))
92         ll.append(or_(*val_list))
93     elif operation == 'ncont':
94         val_list = list()
95         for val in values:
96             val_list.append(getattr(obj, key).contains(val))
97         ll.append(~or_(*val_list))
98     return ll