45deb2dcd10720f426cdd245e95fe6e9418a2f90
[optf/osdf.git] / apps / placement / optimizers / conductor / translation.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2015-2017 AT&T Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18 import copy
19 import json
20 import re
21
22 import yaml
23
24 from osdf.utils.programming_utils import dot_notation
25
26 policy_config_mapping = yaml.safe_load(open('config/has_config.yaml')).get('policy_config_mapping')
27
28
29 def get_opt_query_data(req_json, policies):
30     """
31     Fetch service and order specific details from the requestParameters field of a request.
32     :param req_json: a request file
33     :param policies: A set of policies
34     :return: A dictionary with service and order-specific attributes.
35     """
36     req_param_dict = {}
37     if 'requestParameters' in req_json["placementInfo"]:
38         req_params = req_json["placementInfo"]["requestParameters"]
39         for policy in policies:
40             for queryProp in policy[list(policy.keys())[0]]['properties']['queryProperties']:
41                 attr_val = queryProp['value'] if 'value' in queryProp and queryProp['value'] != "" \
42                     else dot_notation(req_params, queryProp['attribute_location'])
43                 if attr_val is not None:
44                     req_param_dict.update({queryProp['attribute']: attr_val})
45     return req_param_dict
46
47
48 def gen_optimization_policy(vnf_list, optimization_policy):
49     """Generate optimization policy details to pass to Conductor
50     :param vnf_list: List of vnf's to used in placement request
51     :param optimization_policy: optimization objective policy information provided in the incoming request
52     :return: List of optimization objective policies in a format required by Conductor
53     """
54     optimization_policy_list = []
55     for policy in optimization_policy:
56         content = policy[list(policy.keys())[0]]['properties']
57         parameter_list = []
58         parameters = ["cloud_version", "hpa_score"]
59
60         for attr in content['objectiveParameter']['parameterAttributes']:
61             parameter = attr['parameter'] if attr['parameter'] in parameters else attr['parameter']+"_between"
62             default, vnfs = get_matching_vnfs(attr['resources'], vnf_list)
63             for vnf in vnfs:
64                 value = [vnf] if attr['parameter'] in parameters else [attr['customerLocationInfo'], vnf]
65                 parameter_list.append({
66                     attr['operator']: [attr['weight'], {parameter: value}]
67                 })
68
69         optimization_policy_list.append({
70                 content['objective']: {content['objectiveParameter']['operator']: parameter_list }
71         })
72     return optimization_policy_list
73
74
75 def get_matching_vnfs(resources, vnf_list, match_type="intersection"):
76     """Get a list of matching VNFs from the list of resources
77     :param resources:
78     :param vnf_list: List of vnfs to used in placement request
79     :param match_type: "intersection" or "all" or "any" (any => send all_vnfs if there is any intersection)
80     :return: List of matching VNFs
81     """
82     # Check if it is a default policy
83     default = True if resources == [] else False
84     resources_lcase = [x.lower() for x in resources] if not default else [x.lower() for x in vnf_list]
85     if match_type == "all":  # don't bother with any comparisons
86         return default, resources if set(resources_lcase) <= set(vnf_list) else None
87     common_vnfs = set(vnf_list) & set(resources_lcase) if not default else set(vnf_list)
88     common_resources = [x for x in resources if x.lower() in common_vnfs] if not default else list(common_vnfs)
89     if match_type == "intersection":  # specifically requested intersection
90         return default, list(common_resources)
91     return default, resources if common_vnfs else None  # "any" match => all resources to be returned
92
93
94 def gen_policy_instance(vnf_list, resource_policy, match_type="intersection", rtype=None):
95     """Generate a list of policies
96     :param vnf_list: List of vnf's to used in placement request
97     :param resource_policy: policy for this specific resource
98     :param match_type: How to match the vnf_names with the vnf_list (intersection or "any")
99              intersection => return intersection; "any" implies return all vnf_names if intersection is not null
100     :param rtype: resource type (e.g. resourceRegionProperty or resourceInstanceProperty)
101              None => no controller information added to the policy specification to Conductor
102     :return: resource policy list in a format required by Conductor
103     """
104     resource_policy_list = []
105     related_policies = []
106     for policy in resource_policy:
107         pc = policy[list(policy.keys())[0]]
108         default, demands = get_matching_vnfs(pc['properties']['resources'], vnf_list, match_type=match_type)
109         resource = {pc['properties']['identity']: {'type': pc['type'], 'demands': demands}}
110
111         if rtype:
112             resource[pc['properties']['identity']]['properties'] = {'controller': pc[rtype]['controller'],
113                                                                     'request': json.loads(pc[rtype]['request'])}
114         if demands and len(demands) != 0:
115             # The default policy shall not override the specific policy that already appended
116             if default:
117                 for d in demands:
118                     resource_repeated = True \
119                         if {pc['properties']['identity']: {'type': pc['type'], 'demands': d}} \
120                            in resource_policy_list else False
121                     if resource_repeated:
122                         continue
123                     else:
124                         resource_policy_list.append(
125                             {pc['properties']['identity']: {'type': pc['type'], 'demands': d }})
126                         policy[list(policy.keys())[0]]['properties']['resources'] = d
127                         related_policies.append(policy)
128             # Need to override the default policies, here delete the outdated policy stored in the db
129             if resource in resource_policy_list:
130                 for pc in related_policies:
131                     if pc[list(pc.keys()[0])]['properties']['resources'] == resource:
132                         related_policies.remove(pc)
133                 resource_policy_list.remove(resource)
134             related_policies.append(policy)
135             resource_policy_list.append(resource)
136
137     return resource_policy_list, related_policies
138
139
140 def gen_resource_instance_policy(vnf_list, resource_instance_policy):
141     """Get policies governing resource instances in order to populate the Conductor API call"""
142     cur_policies, _ = gen_policy_instance(vnf_list, resource_instance_policy, rtype='resourceInstanceProperty')
143     return cur_policies
144
145
146 def gen_resource_region_policy(vnf_list, resource_region_policy):
147     """Get policies governing resource region in order to populate the Conductor API call"""
148     cur_policies, _ = gen_policy_instance(vnf_list, resource_region_policy, rtype='resourceRegionProperty')
149     return cur_policies
150
151
152 def gen_inventory_group_policy(vnf_list, inventory_group_policy):
153     """Get policies governing inventory group in order to populate the Conductor API call"""
154     cur_policies, _ = gen_policy_instance(vnf_list, inventory_group_policy, rtype=None)
155     return cur_policies
156
157
158 def gen_reservation_policy(vnf_list, reservation_policy):
159     """Get policies governing resource instances in order to populate the Conductor API call"""
160     cur_policies, _ = gen_policy_instance(vnf_list, reservation_policy, rtype='instanceReservationProperty')
161     return cur_policies
162
163
164 def gen_distance_to_location_policy(vnf_list, distance_to_location_policy):
165     """Get policies governing distance-to-location for VNFs in order to populate the Conductor API call"""
166     cur_policies, related_policies = gen_policy_instance(vnf_list, distance_to_location_policy, rtype=None)
167     for p_new, p_main in zip(cur_policies, related_policies):  # add additional fields to each policy
168         properties = p_main[list(p_main.keys())[0]]['properties']['distanceProperties']
169         pcp_d = properties['distance']
170         p_new[p_main[list(p_main.keys())[0]]['properties']['identity']]['properties'] = {
171             'distance': pcp_d['operator'] + " " + pcp_d['value'].lower() + " " + pcp_d['unit'].lower(),
172             'location': properties['locationInfo']
173         }
174     return cur_policies
175
176
177 def gen_attribute_policy(vnf_list, attribute_policy):
178     """Get policies governing attributes of VNFs in order to populate the Conductor API call"""
179     cur_policies, related_policies = gen_policy_instance(vnf_list, attribute_policy, rtype=None)
180     for p_new, p_main in zip(cur_policies, related_policies):  # add additional fields to each policy
181         properties = p_main[list(p_main.keys())[0]]['properties']['cloudAttributeProperty']
182         attribute_mapping = policy_config_mapping['filtering_attributes']  # wanted attributes and mapping
183         p_new[p_main[list(p_main.keys())[0]]['properties']['identity']]['properties'] = {
184             'evaluate': dict((k, properties.get(attribute_mapping.get(k))) for k in attribute_mapping.keys())
185         }
186     return cur_policies  # cur_policies gets updated in place...
187
188
189 def gen_zone_policy(vnf_list, zone_policy):
190     """Get zone policies in order to populate the Conductor API call"""
191     cur_policies, related_policies = gen_policy_instance(vnf_list, zone_policy, match_type="all", rtype=None)
192     for p_new, p_main in zip(cur_policies, related_policies):  # add additional fields to each policy
193         pmz = p_main[list(p_main.keys())[0]]['properties']['affinityProperties']
194         p_new[p_main[list(p_main.keys())[0]]['properties']['identity']]['properties'] = \
195             {'category': pmz['category'], 'qualifier': pmz['qualifier']}
196     return cur_policies
197
198
199 def gen_capacity_policy(vnf_list, capacity_policy):
200     """Get zone policies in order to populate the Conductor API call"""
201     cur_policies, related_policies = gen_policy_instance(vnf_list, capacity_policy, rtype=None)
202     for p_new, p_main in zip(cur_policies, related_policies):  # add additional fields to each policy
203         pmz = p_main[list(p_main.keys())[0]]['properties']['capacityProperty']
204         p_new[p_main[list(p_main.keys())[0]]['properties']['identity']]['properties'] = \
205             {"controller": pmz['controller'], 'request': json.loads(pmz['request'])}
206     return cur_policies
207
208
209 def gen_hpa_policy(vnf_list, hpa_policy):
210     """Get zone policies in order to populate the Conductor API call"""
211     cur_policies, related_policies = gen_policy_instance(vnf_list, hpa_policy, rtype=None)
212     for p_new, p_main in zip(cur_policies, related_policies):  # add additional fields to each policy
213         p_new[p_main[list(p_main.keys())[0]]['properties']['identity']]['properties'] = \
214             {'evaluate': p_main[list(p_main.keys())[0]]['properties']['flavorFeatures']}
215     return cur_policies
216
217
218 def get_augmented_policy_attributes(policy_property, demand):
219     """Get policy attributes and augment them using policy_config_mapping and demand information"""
220     attributes = copy.copy(policy_property['attributes'])
221     remapping = policy_config_mapping['remapping']
222     extra = dict((x, demand['resourceModelInfo'][remapping[x]]) for x in attributes if x in remapping)
223     attributes.update(extra)
224     return attributes
225
226
227 def get_candidates_demands(demand):
228     """Get demands related to candidates; e.g. excluded/required"""
229     res = {}
230     for k, v in policy_config_mapping['candidates'].items():
231         if k not in demand:
232             continue
233         res[v] = [{'inventory_type': x['identifierType'], 'candidate_id': x['identifiers']} for x in demand[k]]
234     return res
235
236
237 def get_policy_properties(demand, policies):
238     """Get policy_properties for cases where there is a match with the demand"""
239     for policy in policies:
240         policy_demands = set([x.lower() for x in policy[list(policy.keys())[0]]['properties']['resources']])
241         if policy_demands and demand['resourceModuleName'].lower() not in policy_demands:
242             continue  # no match for this policy
243         elif policy_demands == set(): # Append resource name for default policy
244             policy[list(policy.keys())[0]]['properties'].update(resources=list(demand.get('resourceModuleName')))
245         for policy_property in policy[list(policy.keys())[0]]['properties']['vnfProperties']:
246             yield policy_property
247
248
249 def get_demand_properties(demand, policies):
250     """Get list demand properties objects (named tuples) from policy"""
251     demand_properties = []
252     for policy_property in get_policy_properties(demand, policies):
253         prop = dict(inventory_provider=policy_property['inventoryProvider'],
254                     inventory_type=policy_property['inventoryType'],
255                     service_type=demand['serviceResourceId'],
256                     service_resource_id=demand['serviceResourceId'])
257
258         prop.update({'unique': policy_property['unique']} if 'unique' in policy_property and
259                                                              policy_property['unique'] else {})
260         prop['filtering_attributes'] = dict()
261         prop['filtering_attributes'].update({'global-customer-id': policy_property['customerId']}
262                                   if policy_property['customerId'] else {})
263         prop['filtering_attributes'].update({'model-invariant-id': demand['resourceModelInfo']['modelInvariantId']}
264                                   if demand['resourceModelInfo']['modelInvariantId'] else {})
265         prop['filtering_attributes'].update({'model-version-id': demand['resourceModelInfo']['modelVersionId']}
266                                   if demand['resourceModelInfo']['modelVersionId'] else {})
267         prop['filtering_attributes'].update({'equipment-role': policy_property['equipmentRole']}
268                                   if policy_property['equipmentRole'] else {})
269
270         if policy_property.get('attributes'):
271             for attr_key, attr_val in policy_property['attributes'].items():
272                 update_converted_attribute(attr_key, attr_val, prop, 'filtering_attributes')
273         if policy_property.get('passthroughAttributes'):
274             prop['passthrough_attributes'] = dict()
275             for attr_key, attr_val in policy_property['passthroughAttributes'].items():
276                 update_converted_attribute(attr_key, attr_val, prop, 'passthrough_attributes')
277
278         prop.update(get_candidates_demands(demand))
279         demand_properties.append(prop)
280     return demand_properties
281
282
283 def update_converted_attribute(attr_key, attr_val, properties, attribute_type):
284     """
285     Updates dictonary of attributes with one specified in the arguments.
286     Automatically translates key namr from camelCase to hyphens
287     :param attribute_type: attribute section name
288     :param attr_key: key of the attribute
289     :param attr_val: value of the attribute
290     :param properties: dictionary with attributes to update
291     :return:
292     """
293     if attr_val:
294         remapping = policy_config_mapping[attribute_type]
295         if remapping.get(attr_key):
296             key_value = remapping.get(attr_key)
297         else:
298             key_value = re.sub('(.)([A-Z][a-z]+)', r'\1-\2', attr_key)
299             key_value = re.sub('([a-z0-9])([A-Z])', r'\1-\2', key_value).lower()
300         properties[attribute_type].update({key_value: attr_val})
301
302
303 def gen_demands(req_json, vnf_policies):
304     """Generate list of demands based on request and VNF policies
305     :param req_json: Request object from the client (e.g. MSO)
306     :param vnf_policies: Policies associated with demand resources (e.g. from grouped_policies['vnfPolicy'])
307     :return: list of demand parameters to populate the Conductor API call
308     """
309     demand_dictionary = {}
310     for demand in req_json['placementInfo']['placementDemands']:
311         prop = get_demand_properties(demand, vnf_policies)
312         if len(prop) > 0:
313             demand_dictionary.update({demand['resourceModuleName']: prop})
314     return demand_dictionary