1
- # Adding New Preset To An Existing Preset Group
1
+ # Adding A New Preset
2
2
3
- ## ** 1. Add the preset name to the corresponding enum class in ` openstackquery/enums/query_presets.py ` **
3
+ ## ** 1. Add the preset name to the QueryPresets enum class in ` openstackquery/enums/query_presets.py ` **
4
4
5
5
e.g.
6
6
``` python
7
- class QueryPresetsGeneric ( QueryPresets ):
7
+ class QueryPresets ( EnumWithAliases ):
8
8
"""
9
9
Enum class which holds generic query comparison operators
10
10
"""
11
11
12
12
EQUAL_TO = auto()
13
13
...
14
- NEW_PRESET = auto() # <- we add this line to repesent a new preset enum belonging to the 'Generic' group
14
+ NEW_PRESET = auto() # <- we add this line to represent a new preset enum belonging to the 'Generic' group
15
15
```
16
16
17
17
(Optional) Add alias mappings for the preset - see [ Adding Aliases] ( ADDING_ALIASES.md )
18
18
19
- ## ** 2. Edit the corresponding handler class in ` openstackquery/handlers/client_side_handler_< preset-group>.py ` . **
19
+ ## ** 2. Create a function to act as the client-side filter function for your new query preset
20
20
21
- Here you must:
22
- - add a 'client-side' filter function as a method
23
- - add the mapping between the enum and filter function in self._ filter_functions.
21
+ Client-side filter functions are located in ` openstackquery/handlers/client_side_filters.py `
24
22
25
23
The filter function must:
26
24
- ** take as input at least one parameter - ` prop ` ** :
@@ -30,32 +28,41 @@ The filter function must:
30
28
- ` True ` if the prop passes filter
31
29
- ` False ` if not
32
30
33
- e.g. editing ` client_side_handler_generic.py `
34
31
``` python
35
- class ClientSideHandlerGeneric (ClientSideHandler ):
36
- ...
32
+ def prop_new_preset_filter_func (self , prop : Any, arg1 , arg2 ):
33
+ """
34
+ A new preset filter - takes a property value, performs some logic and returns a boolean if
35
+ property passes a filter or not
36
+ :param prop: property value to check
37
+ :param arg1: some arg the filter uses
38
+ :param arg2: some other arg the filter uses
39
+ :returns: True or False
40
+ """
41
+ # Define your filter logic here
42
+ ```
37
43
38
- def __init__ (self , filter_function_mappings : PresetPropMappings):
39
- super ().__init__ (filter_function_mappings)
44
+ ## ** 3. Edit the corresponding handler class in ` openstackquery/handlers/client_side_handler.py ` .**
40
45
41
- self ._filter_functions = {
42
- QueryPresetsGeneric.EQUAL_TO : self ._prop_equal_to,
43
- ...
44
- QueryPresetsGeneric.NEW_PRESET : self ._new_preset_filter_func # <- 2) add the enum-to-function mapping
45
- }
46
+ Here you must:
47
+ - add a 'client-side' filter function as a method
48
+ - add the mapping between the enum and filter function in self._ filter_functions.
49
+
50
+ e.g. editing ` client_side_handler_generic.py `
51
+ ``` python
52
+ from openstackquery.handlers.client_side_filters import (
53
+ prop_new_preset_filter_func # newly made filter func
54
+ )
46
55
56
+ class ClientSideHandler (HandlerBase ):
47
57
...
48
58
49
- def _new_preset_filter_func (self , prop : Any, arg1 , arg2 ):
50
- """
51
- A new preset filter - takes a property value, performs some logic and returns a boolean if
52
- property passes a filter or not
53
- :param prop: property value to check
54
- :param arg1: some arg the filter uses
55
- :param arg2: some other arg the filter uses
56
- :returns: True or False
57
- """
58
- ... # Define your preset logic here
59
+ def __init__ (self , preset_prop_mappings : ClientSidePresetPropertyMappings):
60
+ self ._filter_functions = {
61
+ QueryPresets.EQUAL_TO : self ._prop_equal_to,
62
+ ...
63
+ QueryPresets.NEW_PRESET : prop_new_preset_filter_func # <- 2) add the enum-to-function mapping
64
+ }
65
+ ...
59
66
```
60
67
61
68
## ** 3. Edit the query class mappings for each Query class you wish to use the preset in**
@@ -76,24 +83,22 @@ class ServerMapping(MappingInterface):
76
83
...
77
84
78
85
@ staticmethod
79
- def get_client_side_handlers () -> ServerSideHandler :
86
+ def get_client_side_handler () -> ClientSideHandler :
80
87
...
81
- return QueryClientSideHandlers(
82
- # set generic query preset mappings
83
- generic_handler = ClientSideHandlerGeneric(
84
- {
85
- # Line below maps EQUAL_TO preset on all available properties
86
- # ["*"] - represents all props
87
- QueryPresetsGeneric.EQUAL_TO : [" *" ],
88
- ...
89
- # Line below maps our 'new preset' to two properties which the preset can run on
90
- # Running the preset on any other property leads to an error
91
- QueryPresetsGeneric.NEW_PRESET : [
92
- ServerProperties.SERVER_ID ,
93
- ServerProperties.SERVER_NAME
94
- ]
95
- }
96
- ),
88
+ return ClientSideHandler(
89
+
90
+ {
91
+ # Line below maps EQUAL_TO preset on all available properties
92
+ # ["*"] - represents all props
93
+ QueryPresets.EQUAL_TO : [" *" ],
94
+ # ...
95
+ # Line below maps our 'new preset' to two properties which the preset can run on
96
+ # Running the preset on any other property leads to an error
97
+ QueryPresets.NEW_PRESET : [
98
+ ServerProperties.SERVER_ID ,
99
+ ServerProperties.SERVER_NAME
100
+ ]
101
+ }
97
102
)
98
103
...
99
104
```
@@ -110,40 +115,20 @@ e.g. Adding server-side mapping for `QueryPresetsGeneric.NEW_PRESET` to `ServerQ
110
115
``` python
111
116
112
117
class ServerMapping (MappingInterface ):
113
- ...
118
+ # ...
114
119
115
120
@ staticmethod
116
121
def get_server_side_handler () -> ServerSideHandler:
117
- ...
122
+ # ...
118
123
return ServerSideHandler(
119
124
{
120
- QueryPresetsGeneric.NEW_PRESET : {
125
+ # ...
126
+ QueryPresets.NEW_PRESET : {
121
127
# adding a server-side mapping for NEW_PRESET when given SERVER_ID
122
128
ServerProperties.SERVER_ID : lambda value , arg1 , arg2 :
123
129
{" server-side-kwarg" : value, " server-side-arg1" : arg1, " server-side-arg2" : arg2}
124
130
}
125
131
}
126
- ...
132
+ )
133
+ # ...
127
134
```
128
-
129
- # **Adding a new preset group**
130
-
131
- As stated above - presets are grouped based on the datatype of the property the act on. If you need another preset
132
- group - you can add one like so:
133
-
134
- 1 . Create a new preset group class in `openstackquery/ enums/ query_presets.py`
135
- - it inherits from base class QueryPresets
136
-
137
-
138
- 2 . Create new client side handler in `openstackquery/ handlers/ client_side_handler_< preset> .py`
139
- - it inherits from base class `ClientSideHandler` - `openstackquery/ handlers/ client_side_handler.py` .
140
-
141
-
142
- 3 . Add your preset as a attribute in query_client_side_handlers dataclass
143
- - located in `openstackquery/ structs/ query_client_side_handlers.py`
144
-
145
-
146
- 4 . Follow steps mentioned above to add new presets to the new preset group class you' ve created
147
-
148
- 5 . Edit `QueryPresets` type declaration at the bottom of the file `openstackquery/ enums/ query_presets.py` and add your new
149
- preset class to it
0 commit comments