Coverage for /builds/BuildGrid/buildgrid/buildgrid/server/operations/filtering/filter.py: 100.00%
7 statements
« prev ^ index » next coverage.py v6.4.1, created at 2022-06-22 21:04 +0000
« prev ^ index » next coverage.py v6.4.1, created at 2022-06-22 21:04 +0000
1# Copyright (C) 2020 Bloomberg LP
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.
16import operator
17from typing import Any, Callable, NamedTuple
18from buildgrid._enums import OperationStage
21OperationFilter = NamedTuple(
22 "OperationFilter",
23 [
24 ("parameter", str),
25 ("operator", Callable[[Any, Any], Any]),
26 ("value", Any)
27 ]
28)
31DEFAULT_OPERATION_FILTERS = [
32 OperationFilter(
33 parameter="stage",
34 operator=operator.ne,
35 value=OperationStage.COMPLETED.value
36 )
37]
39SortKey = NamedTuple(
40 "SortKey",
41 [
42 ("name", str),
43 ("descending", bool)
44 ]
45)
47DEFAULT_SORT_KEYS = [
48 SortKey(
49 name="queued_time",
50 descending=False
51 ),
52 SortKey(
53 name="name",
54 descending=False
55 )
56]