summaryrefslogtreecommitdiffstats
path: root/conductor/conductor/data/plugins/inventory_provider/hpa_utils.py
blob: bd7e44cdb0d98bfd2d03c9dbd5600cc2c1909897 (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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#!/usr/bin/env python
#
# -------------------------------------------------------------------------
#   Copyright (c) 2018 Intel Corporation Intellectual Property
#
#   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.
#
# -------------------------------------------------------------------------
#

'''Utility functions for
   Hardware Platform Awareness (HPA) constraint plugin'''

import operator

import conductor.common.prometheus_metrics as PC
# python imports
import yaml
from conductor.i18n import _LI
# Third-party library imports
from oslo_log import log

LOG = log.getLogger(__name__)


def  match_all_operator(big_list, small_list):
    '''
    Match ALL operator for HPA
    Check if smaller list is a subset of bigger list
    :param big_list: bigger list
    :param small_list: smaller list
    :return: True or False
    '''
    if not big_list or not small_list:
        return False

    big_set = set(big_list)
    small_set = set(small_list)

    return small_set.issubset(big_set)


class HpaMatchProvider(object):

    def __init__(self, candidate, req_cap_list):
        self.flavors_list = None
        if isinstance(candidate.get('flavors'), dict) \
                and candidate.get('flavors').get('flavor'):
            self.flavors_list = candidate.get('flavors').get('flavor')
        self.req_cap_list = req_cap_list
        self.m_vim_id = candidate.get('vim-id')

    # Find out whether there is flavor info inside the candidate
    def init_verify(self):
        if self.flavors_list is not None:
            return True
        else:
            return False

    # Find the flavor which has all the required capabilities
    def match_flavor(self):
        # Keys to find capability match
        hpa_keys = ['hpa-feature', 'architecture', 'hpa-version']
        req_filter_list = []
        for capability in CapabilityDataParser.get_item(self.req_cap_list,
                                                        None):
            if capability.item['mandatory'].lower() == 'true':
                hpa_list = {k: capability.item[k] \
                            for k in hpa_keys if k in capability.item}
                if hpa_list not in req_filter_list:
                    req_filter_list.append(hpa_list)
        max_score = -1
        directives = None
        for flavor in self.flavors_list:
            flavor_filter_list = []
            try:
                flavor_cap_list = flavor['hpa-capabilities']
            except KeyError:
                LOG.info(_LI("hpa-capabilities not found in flavor "))
                # Metrics to Prometheus
                m_flavor_name = flavor['flavor-name']
                PC.HPA_FLAVOR_MATCH_UNSUCCESSFUL.labels('ONAP', 'N/A', 'N/A',
                                                      'N/A', self.m_vim_id,
                                                      m_flavor_name).inc()
                continue
            for capability in CapabilityDataParser.get_item(flavor_cap_list,
                                                            'hpa-capability'):
                hpa_list = {k: capability.item[k] \
                               for k in hpa_keys if k in capability.item}
                flavor_filter_list.append(hpa_list)
            # if flavor has the matching capability compare attributes
            if self._is_cap_supported(flavor_filter_list, req_filter_list):
                match_found, score, req_directives = self._compare_feature_attributes(flavor_cap_list)
                if match_found:
                    LOG.info(_LI("Matching Flavor found '{}' for request - {}").
                             format(flavor['flavor-name'], self.req_cap_list))
                    # Metrics to Prometheus
                    m_flavor_name = flavor['flavor-name']
                    PC.HPA_FLAVOR_MATCH_SUCCESSFUL.labels('ONAP', 'N/A', 'N/A',
                                                          'N/A', self.m_vim_id,
                                                          m_flavor_name).inc()
                    if score > max_score:
                        max_score = score
                        flavor_map = {"flavor-id": flavor['flavor-id'],
                                      "flavor-name": flavor['flavor-name'],
                                      "score": max_score}
                        directives = {"flavor_map": flavor_map,
                                      "directives": req_directives}
                else:
                    # Metrics to Prometheus
                    m_flavor_name = flavor['flavor-name']
                    PC.HPA_FLAVOR_MATCH_UNSUCCESSFUL.labels('ONAP', 'N/A',
                                                            'N/A', 'N/A',
                                                            self.m_vim_id,
                                                            m_flavor_name).inc()
            else:
                # Metrics to Prometheus
                m_flavor_name = flavor['flavor-name']
                PC.HPA_FLAVOR_MATCH_UNSUCCESSFUL.labels('ONAP', 'N/A',
                                                        'N/A', 'N/A',
                                                        self.m_vim_id,
                                                        m_flavor_name).inc()
        return directives


    def _is_cap_supported(self, flavor, cap):
        try:
            for elem in cap:
                flavor.remove(elem)
        except ValueError:
            return False
        # Found all capabilities in Flavor
        return True

    # Convert to bytes value using unit
    def _get_normalized_value(self, unit, value):

        if not value.isdigit():
            return value
        value = int(value)
        if unit == 'KB':
            value = value * 1024
        elif unit == 'MB':
            value = value * 1024 * 1024
        elif unit == 'GB':
            value = value * 1024 * 1024 * 1024
        return str(value)

    def _get_req_attribute(self, req_attr):
        try:
            c_op = req_attr['operator']
            c_value = req_attr['hpa-attribute-value']
            c_unit = None
            if 'unit' in req_attr:
                c_unit = req_attr['unit']
        except KeyError:
            LOG.info(_LI("invalid JSON "))
            return None

        if c_unit:
            c_value = self._get_normalized_value(c_unit, c_value)
        return c_value, c_op

    def _get_flavor_attribute(self, flavor_attr):
        try:
            attrib_value = yaml.load(flavor_attr['hpa-attribute-value'])
        except:
            return None

        f_unit = None
        f_value = None
        for key, value in attrib_value.items():
            if key == 'value':
                f_value = value
            elif key == 'unit':
                f_unit = value
        if f_unit:
            f_value = self._get_normalized_value(f_unit, f_value)
        return f_value

    def _get_operator(self, req_op):

        operator_list = ['=', '<', '>', '<=', '>=', 'ALL']

        if req_op not in operator_list:
            return None

        if req_op == ">":
            op = operator.gt
        elif req_op == ">=":
            op = operator.ge
        elif req_op == "<":
            op = operator.lt
        elif req_op == "<=":
            op = operator.le
        elif req_op == "=":
            op = operator.eq
        elif req_op == 'ALL':
            op = match_all_operator

        return op


    def _compare_attribute(self, flavor_attr, req_attr):

        req_value, req_op = self._get_req_attribute(req_attr)
        flavor_value = self._get_flavor_attribute(flavor_attr)

        if req_value is None or flavor_value is None:
            return False

        # Compare operators only valid for Integers
        if req_op in ['<', '>', '<=', '>=']:
            if not req_value.isdigit() or not flavor_value.isdigit():
                return False

        op = self._get_operator(req_op)
        if not op:
            return False

        if req_op == 'ALL':
            # All is valid only for lists
            if isinstance(req_value, list) and isinstance(flavor_value, list):
                return op(flavor_value, req_value)

        # if values are string compare them as strings
        if req_op == '=':
            if not req_value.isdigit() or not flavor_value.isdigit():
                return op(req_value, flavor_value)

        # Only integers left to compare
        if req_op in ['<', '>', '<=', '>=', '=']:
            return  op(int(flavor_value), int(req_value))

        return False

    # for the feature get the capabilty feature attribute list
    def _get_flavor_cfa_list(self, feature, flavor_cap_list):
        feature_attr_list = []
        for capability in CapabilityDataParser.get_item(flavor_cap_list,
                                                        'hpa-capability'):
            flavor_feature, feature_attributes = capability.get_fields()
            # Multiple features that match this condition will be filtered
            if feature == flavor_feature:
                feature_attr_list.append(feature_attributes)
        return feature_attr_list

    # flavor has all the required capabilties
    # For each required capability find capability in flavor
    # and compare each attribute
    def _compare_feature_attributes(self, flavor_cap_list):
        score = 0
        directives = []
        for capability in CapabilityDataParser.get_item(self.req_cap_list, None):
            hpa_feature, req_cfa_list = capability.get_fields()
            feature_directive = capability.get_directives()
            if feature_directive:
                feature_directive[:] = [d for d in feature_directive
                                        if d.get("type") != ""]
                for item in feature_directive:
                    directives.append(item)
            flavor_cfa_list = self._get_flavor_cfa_list(hpa_feature, flavor_cap_list)
            req_flag = False
            if flavor_cfa_list is not None:
                for flavor_cfa in flavor_cfa_list:
                    flavor_flag = True
                    for req_feature_attr in req_cfa_list:
                        req_attr_key = req_feature_attr['hpa-attribute-key']
                        # filter to get the attribute being compared
                        flavor_feature_attr = \
                            filter(lambda ele: ele['hpa-attribute-key'] ==
                                               req_attr_key, flavor_cfa)
                        if not flavor_feature_attr:
                            flavor_flag = False
                        elif not self._compare_attribute(list(flavor_feature_attr)[0],
                                                       req_feature_attr):
                            flavor_flag = False
                    if not flavor_flag:
                        continue
                    else:
                        req_flag = True
                        break
            if not req_flag and capability.item['mandatory'].lower() == 'true':
                return False, 0, None
            if req_flag and capability.item['mandatory'].lower() == 'false':
                score = score + int(capability.item['score'])
        return True, score, directives


class CapabilityDataParser(object):
    """Helper class to parse  data"""

    def __init__(self, item):
        self.item = item

    @classmethod
    def get_item(cls, payload, key):
        try:
            if key is None:
                features = payload
            else:
                features = (payload[key])

            for f in features:
                yield cls(f)
        except KeyError:
            LOG.info(_LI("invalid JSON "))

    def get_fields(self):
        return (self.get_feature(),
                self.get_feature_attributes())

    def get_feature_attributes(self):
        return self.item.get('hpa-feature-attributes')

    def get_feature(self):
        return self.item.get('hpa-feature')

    def get_directives(self):
        return self.item.get('directives')