aboutsummaryrefslogtreecommitdiffstats
path: root/sdv/core/loader/loader.py
blob: 8840f26fc549b2259327d58155c5d3e099108478 (plain)
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
# Copyright 2020 Intel Corporation, Spirent Communications.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
Abstract class for Software Prevalidations.
Implementors, please inherit from this class.
"""

from conf import settings
from core.loader.loader_servant import LoaderServant
from SoftwarePreUrlsValid.swpreurlsvalidator import ISwPreUrlsValidator
from SoftwarePreConfigValid.swpreconfigvalidator import ISwPreConfigValidator
from SoftwarePostStateValid.swpoststatevalidator import ISwPostStateValidator
from SoftwarePostSecurityValid.swpostsecurityvalidator import ISwPostSecurityValidator
from NwLinksValid.nwlinksvalidator import INwLinksValidator
from ResourceModelValid.resmodvalidator import IResModValidator


# pylint: disable=too-many-public-methods
class Loader():
    """Loader class - main object context holder.
    """
    _swvalidator_loader = None

    def __init__(self):
        """Loader ctor - initialization method.

        All data is read from configuration each time Loader instance is
        created. It is up to creator to maintain object life cycle if this
        behavior is unwanted.
        """
        self._swpreurlsvalidator_loader = LoaderServant(
            settings.getValue('SW_PRE_URLS_VALID_DIR'),
            settings.getValue('SW_PRE_URLS_VALIDATOR'),
            ISwPreUrlsValidator)
        self._swpreconfigvalidator_loader = LoaderServant(
            settings.getValue('SW_PRE_CONFIG_VALID_DIR'),
            settings.getValue('SW_PRE_CONFIG_VALIDATOR'),
            ISwPreConfigValidator)
        self._swpoststatevalidator_loader = LoaderServant(
            settings.getValue('SW_POST_STATE_VALID_DIR'),
            settings.getValue('SW_POST_STATE_VALIDATOR'),
            ISwPostStateValidator)
        self._swpostsecurityvalidator_loader = LoaderServant(
            settings.getValue('SW_POST_SECURITY_VALID_DIR'),
            settings.getValue('SW_POST_SECURITY_VALIDATOR'),
            ISwPostSecurityValidator)
        self._nwlinksvalidator_loader = LoaderServant(
            settings.getValue('NW_LINKS_VALID_DIR'),
            settings.getValue('NW_LINKS_VALIDATOR'),
            INwLinksValidator)
        self._resmodvalidator_loader = LoaderServant(
            settings.getValue('RES_MOD_VALID_DIR'),
            settings.getValue('RES_MOD_VALIDATOR'),
            IResModValidator)

    def get_swpreurlsvalidator(self):
        """ Returns a new instance configured Software Validator
        :return: ISwPreUrlsValidator implementation if available, None otherwise
        """
        return self._swpreurlsvalidator_loader.get_class()()

    def get_swpreurlsvalidator_class(self):
        """Returns type of currently configured Software Validator.

        :return: Type of ISwPreUrlsValidator implementation if available.
            None otherwise.
        """
        return self._swpreurlsvalidator_loader.get_class()

    def get_swpreurlsvalidators(self):
        """
        Get Prevalidators
        """
        return self._swpreurlsvalidator_loader.get_classes()

    def get_swpreurlsvalidators_printable(self):
        """
        Get Prevalidators for printing
        """
        return self._swpreurlsvalidator_loader.get_classes_printable()

    def get_swpreconfigvalidator(self):
        """ Returns a new instance configured Software Validator
        :return: ISwPreConfigValidator implementation if available, None otherwise
        """
        return self._swpreconfigvalidator_loader.get_class()()

    def get_swpreconfigvalidator_class(self):
        """Returns type of currently configured Software Validator.

        :return: Type of ISwPreConfigValidator implementation if available.
            None otherwise.
        """
        return self._swpreconfigvalidator_loader.get_class()

    def get_swpreconfigvalidators(self):
        """
        Get Prevalidators
        """
        return self._swpreconfigvalidator_loader.get_classes()

    def get_swpreconfigvalidators_printable(self):
        """
        Get Prevalidators for printing
        """
        return self._swpreconfigvalidator_loader.get_classes_printable()

    def get_swpoststatevalidator(self):
        """ Returns a new instance configured Software Validator
        :return: ISwPostStateValidator implementation if available, None otherwise
        """
        return self._swpoststatevalidator_loader.get_class()()

    def get_swpoststatevalidator_class(self):
        """Returns type of currently configured Software Validator.

        :return: Type of ISwPostStateValidator implementation if available.
            None otherwise.
        """
        return self._swpoststatevalidator_loader.get_class()

    def get_swpoststatevalidators(self):
        """
        Get Postvalidators
        """
        return self._swpoststatevalidator_loader.get_classes()

    def get_swpoststatevalidators_printable(self):
        """
        Get Postvalidators for printing
        """
        return self._swpoststatevalidator_loader.get_classes_printable()

    def get_swpostsecurityvalidator(self):
        """ Returns a new instance configured Software Validator
        :return: ISwPostSecurityValidator implementation if available, None otherwise
        """
        return self._swpostsecurityvalidator_loader.get_class()()

    def get_swpostsecurityvalidator_class(self):
        """Returns type of currently configured Software Validator.

        :return: Type of ISwPostSecurityValidator implementation if available.
            None otherwise.
        """
        return self._swpostsecurityvalidator_loader.get_class()

    def get_swpostsecurityvalidators(self):
        """
        Get Postvalidators
        """
        return self._swpostsecurityvalidator_loader.get_classes()

    def get_swpostsecurityvalidators_printable(self):
        """
        Get Postvalidators for printing
        """
        return self._swpostsecurityvalidator_loader.get_classes_printable()

    def get_nwlinksvalidator(self):
        """ Returns a new instance configured Nw-Links Validator
        :return: INwLinksValidator implementation if available, None otherwise
        """
        return self._nwlinksvalidator_loader.get_class()()

    def get_nwlinksvalidator_class(self):
        """Returns type of currently configured Nw-Links Validator.

        :return: Type of NwLinksValidator implementation if available.
            None otherwise.
        """
        return self._nwlinksvalidator_loader.get_class()

    def get_nwlinksvalidators(self):
        """
        Get Linkvalidators
        """
        return self._nwlinksvalidator_loader.get_classes()

    def get_nwlinksvalidators_printable(self):
        """
        Get Linkvalidators for printing
        """
        return self._nwlinksvalidator_loader.get_classes_printable()

    def get_resmodvalidator(self):
        """ Returns a new instance configured Nw-Links Validator
        :return: IResModValidator implementation if available, None otherwise
        """
        return self._resmodvalidator_loader.get_class()()

    def get_resmodvalidator_class(self):
        """Returns type of currently configured Nw-Links Validator.

        :return: Type of ResModValidator implementation if available.
            None otherwise.
        """
        return self._resmodvalidator_loader.get_class()

    def get_resmodvalidators(self):
        """
        Get ResoureModelValidators
        """
        return self._resmodvalidator_loader.get_classes()

    def get_resmodvalidators_printable(self):
        """
        Get ResoureModelValidators for printing
        """
        return self._resmodvalidator_loader.get_classes_printable()