X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fvnfd.py;h=159205af710867153208318915c4ca29b4ef7ae6;hb=7b998bd22a0c86d50ea0fd45cf942e31d4a1f45f;hp=830708835abc0d241c29ac34ceee2da55b2ddb27;hpb=5b5cd4bd8dbcc8b9ba5fa94209c216e255118a94;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/vnfd.py b/osmclient/sol005/vnfd.py index 8307088..159205a 100644 --- a/osmclient/sol005/vnfd.py +++ b/osmclient/sol005/vnfd.py @@ -43,7 +43,6 @@ class Vnfd(object): self._apiResource = '/vnf_packages' self._apiBase = '{}{}{}'.format(self._apiName, self._apiVersion, self._apiResource) - #self._apiBase='/vnfds' def list(self, filter=None): self._logger.debug("") @@ -51,7 +50,7 @@ class Vnfd(object): filter_string = '' if filter: filter_string = '?{}'.format(filter) - _, resp = self._http.get2_cmd('{}{}'.format(self._apiBase,filter_string)) + _, resp = self._http.get2_cmd('{}{}'.format(self._apiBase, filter_string)) if resp: return json.loads(resp) return list() @@ -76,7 +75,6 @@ class Vnfd(object): # The only difference is that a different primitive is exercised try: _, resp = self._http.get2_cmd('{}/{}'.format(self._apiBase, vnfd['_id'])) - #print(yaml.safe_dump(resp)) if resp: return json.loads(resp) except NotFound: @@ -89,20 +87,9 @@ class Vnfd(object): headers = self._client._headers headers['Accept'] = 'application/binary' http_code, resp = self._http.get2_cmd('{}/{}/{}'.format(self._apiBase, vnfd['_id'], thing)) - #print('HTTP CODE: {}'.format(http_code)) - #print('RESP: {}'.format(resp)) - #if http_code in (200, 201, 202, 204): + if resp: - #store in a file return json.loads(resp) - #else: - # msg = "" - # if resp: - # try: - # msg = json.loads(resp) - # except ValueError: - # msg = resp - # raise ClientException("failed to get {} from {} - {}".format(thing, name, msg)) def get_descriptor(self, name, filename): self._logger.debug("") @@ -124,20 +111,14 @@ class Vnfd(object): if force: querystring = '?FORCE=True' http_code, resp = self._http.delete_cmd('{}/{}{}'.format(self._apiBase, - vnfd['_id'], querystring)) - #print('HTTP CODE: {}'.format(http_code)) - #print('RESP: {}'.format(resp)) + vnfd['_id'], querystring)) + if http_code == 202: print('Deletion in progress') elif http_code == 204: print('Deleted') else: msg = resp or "" - # if resp: - # try: - # msg = json.loads(resp) - # except ValueError: - # msg = resp raise ClientException("failed to delete vnfd {} - {}".format(name, msg)) def create(self, filename, overwrite=None, update_endpoint=None, skip_charm_build=False, @@ -145,7 +126,8 @@ class Vnfd(object): self._logger.debug("") if os.path.isdir(filename): filename = filename.rstrip('/') - filename = self._client.package_tool.build(filename, skip_validation=False, skip_charm_build=skip_charm_build) + filename = self._client.package_tool.build(filename, skip_validation=False, + skip_charm_build=skip_charm_build) print('Uploading package {}'.format(filename)) self.create(filename, overwrite=overwrite, update_endpoint=update_endpoint, override_epa=override_epa, override_nonepa=override_nonepa, @@ -164,16 +146,11 @@ class Vnfd(object): headers['Content-Type'] = 'text/plain' elif mime_type in ['application/gzip', 'application/x-gzip']: headers['Content-Type'] = 'application/gzip' - #headers['Content-Type'] = 'application/binary' - # Next three lines are to be removed in next version - #headers['Content-Filename'] = basename(filename) - #file_size = stat(filename).st_size - #headers['Content-Range'] = 'bytes 0-{}/{}'.format(file_size - 1, file_size) else: raise ClientException( - "Unexpected MIME type for file {}: MIME type {}".format( - filename, mime_type) - ) + "Unexpected MIME type for file {}: MIME type {}".format( + filename, mime_type) + ) special_ow_string = '' if override_epa or override_nonepa or override_paravirt: # If override for EPA, non-EPA or paravirt is required, get the descriptor data @@ -197,15 +174,16 @@ class Vnfd(object): tar_object.close() if not descriptor_data: raise ClientException('Descriptor could not be read') - desc_type, vnfd = validation_im.yaml_validation(self, descriptor_data) - validation_im.pyangbind_validation(self, desc_type, vnfd) + desc_type, vnfd = validation_im().yaml_validation(descriptor_data) + validation_im().pyangbind_validation(desc_type, vnfd) vnfd = yaml.safe_load(descriptor_data) vdu_list = [] for k in vnfd: # Get only the first descriptor in case there are many in the yaml file # k can be vnfd:vnfd-catalog or vnfd-catalog. This check is skipped - vdu_list = vnfd[k]['vnfd'][0]['vdu'] - break; + first_vnfd = vnfd[k]['vnfd'][0] + vdu_list = first_vnfd.get('vdu', []) + break for vdu_number, vdu in enumerate(vdu_list): if override_epa: guest_epa = {} @@ -215,21 +193,20 @@ class Vnfd(object): guest_epa["numa-node-policy"] = {} guest_epa["numa-node-policy"]["node-cnt"] = 1 guest_epa["numa-node-policy"]["mem-policy"] = "STRICT" - #guest_epa["numa-node-policy"]["node"] = [] - #guest_epa["numa-node-policy"]["node"].append({"id": "0", "paired-threads": {"num-paired-threads": 1} }) - special_ow_string = "{}vdu.{}.guest-epa={};".format(special_ow_string,vdu_number,quote(yaml.safe_dump(guest_epa))) + special_ow_string = "{}vdu.{}.guest-epa={};".format(special_ow_string, vdu_number, + quote(yaml.safe_dump(guest_epa))) headers['Query-String-Format'] = 'yaml' if override_nonepa: - special_ow_string = "{}vdu.{}.guest-epa=;".format(special_ow_string,vdu_number) + special_ow_string = "{}vdu.{}.guest-epa=;".format(special_ow_string, vdu_number) if override_paravirt: for iface_number in range(len(vdu['interface'])): special_ow_string = "{}vdu.{}.interface.{}.virtual-interface.type=PARAVIRT;".format( - special_ow_string,vdu_number,iface_number) + special_ow_string, vdu_number, iface_number) special_ow_string = special_ow_string.rstrip(";") headers["Content-File-MD5"] = utils.md5(filename) - http_header = ['{}: {}'.format(key,val) - for (key,val) in list(headers.items())] + http_header = ['{}: {}'.format(key, val) + for (key, val) in list(headers.items())] self._http.set_http_header(http_header) if update_endpoint: http_code, resp = self._http.put_cmd(endpoint=update_endpoint, filename=filename) @@ -237,7 +214,7 @@ class Vnfd(object): ow_string = '' if special_ow_string: if overwrite: - overwrite = "{};{}".format(overwrite,special_ow_string) + overwrite = "{};{}".format(overwrite, special_ow_string) else: overwrite = special_ow_string if overwrite: @@ -245,26 +222,17 @@ class Vnfd(object): self._apiResource = '/vnf_packages_content' self._apiBase = '{}{}{}'.format(self._apiName, self._apiVersion, self._apiResource) - endpoint = '{}{}'.format(self._apiBase,ow_string) + endpoint = '{}{}'.format(self._apiBase, ow_string) http_code, resp = self._http.post_cmd(endpoint=endpoint, filename=filename) - #print('HTTP CODE: {}'.format(http_code)) - #print('RESP: {}'.format(resp)) + if http_code in (200, 201, 202): if resp: resp = json.loads(resp) if not resp or 'id' not in resp: - raise ClientException('unexpected response from server: '.format(resp)) + raise ClientException('unexpected response from server: {}'.format(resp)) print(resp['id']) elif http_code == 204: print('Updated') - # else: - # msg = "Error {}".format(http_code) - # if resp: - # try: - # msg = "{} - {}".format(msg, json.loads(resp)) - # except ValueError: - # msg = "{} - {}".format(msg, resp) - # raise ClientException("failed to create/update vnfd - {}".format(msg)) def update(self, name, filename): self._logger.debug("") @@ -272,4 +240,3 @@ class Vnfd(object): vnfd = self.get(name) endpoint = '{}/{}/package_content'.format(self._apiBase, vnfd['_id']) self.create(filename=filename, update_endpoint=endpoint) -