summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2018-04-12 15:02:23 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2018-04-12 15:02:23 +0800
commit979ff2244f03ee4c736f6a5f7fe8e5e70a9cd6de (patch)
tree92409f025a73027ed0d33ced4712a64c6cc5cdd2
parenta06d41c27eb8057ecea661b15ff9f7f244863c00 (diff)
Add vfc_vnflcm resource map const
Change-Id: I293e896f7831177858e1d3d2e34afc0cc12d17b6 Issue-ID: VFC-873 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r--lcm/lcm/nf/const.py3
-rw-r--r--lcm/lcm/nf/vnf_cancel/term_vnf.py10
2 files changed, 7 insertions, 6 deletions
diff --git a/lcm/lcm/nf/const.py b/lcm/lcm/nf/const.py
index 8b0c0bdb..5f84b4f3 100644
--- a/lcm/lcm/nf/const.py
+++ b/lcm/lcm/nf/const.py
@@ -19,6 +19,9 @@ VNF_STATUS = enum(NULL='null', INSTANTIATING="instantiating", INACTIVE='inactive
FAILED="failed", TERMINATING="terminating", SCALING="scaling", OPERATING="operating",
UPDATING="updating", HEALING="healing")
+RESOURCE_MAP = {'Storage': 'volumn', 'Network': 'network', 'SubNetwork': 'subnet', 'Port': 'port',
+ 'Flavour': 'flavor', 'Vm': 'vm'}
+
inst_req_data = {
"flavourId": "flavour_1",
"instantiationLevelId": "instantiationLevel_1",
diff --git a/lcm/lcm/nf/vnf_cancel/term_vnf.py b/lcm/lcm/nf/vnf_cancel/term_vnf.py
index 84b5a0e9..8657594b 100644
--- a/lcm/lcm/nf/vnf_cancel/term_vnf.py
+++ b/lcm/lcm/nf/vnf_cancel/term_vnf.py
@@ -17,7 +17,7 @@ import logging
import traceback
from threading import Thread
-from lcm.nf.const import VNF_STATUS
+from lcm.nf.const import VNF_STATUS, RESOURCE_MAP
from lcm.pub.database.models import NfInstModel, VmInstModel, NetworkInstModel, StorageInstModel, \
PortInstModel, VNFCInstModel, NfvoRegInfoModel, FlavourInstModel, SubNetworkInstModel
from lcm.pub.exceptions import NFLCMException
@@ -41,8 +41,6 @@ class TermVnf(Thread):
self.apply_result = None
self.notify_data = None
self.inst_resource = {'volumn': [], 'network': [], 'subnet': [], 'port': [], 'flavor': [], 'vm': []}
- self.resource_map = {'Storage': 'volumn', 'Network': 'network', 'SubNetwork': 'subnet', 'Port': 'port',
- 'Flavour': 'flavor', 'Vm': 'vm'}
def run(self):
try:
@@ -107,13 +105,13 @@ class TermVnf(Thread):
def query_inst_resource(self):
logger.info('Query resource begin')
- for resource_type in self.resource_map.keys():
+ for resource_type in RESOURCE_MAP.keys():
resource_table = globals().get(resource_type + 'InstModel')
resource_insts = resource_table.objects.filter(instid=self.nf_inst_id)
for resource_inst in resource_insts:
if not resource_inst.resouceid:
continue
- self.inst_resource[self.resource_map.get(resource_type)].append(self.get_resource(resource_inst))
+ self.inst_resource[RESOURCE_MAP.get(resource_type)].append(self.get_resource(resource_inst))
logger.info('Query resource end, resource=%s' % self.inst_resource)
def get_resource(self, resource):
@@ -196,7 +194,7 @@ class TermVnf(Thread):
def do_notify_delete(self, res_type, res_id):
logger.error('Deleting [%s] resource, resourceid [%s]' % (res_type, res_id))
- resource_type = self.resource_map.keys()[self.resource_map.values().index(res_type)]
+ resource_type = RESOURCE_MAP.keys()[RESOURCE_MAP.values().index(res_type)]
resource_table = globals().get(resource_type + 'InstModel')
resource_table.objects.filter(instid=self.nf_inst_id, resouceid=res_id).delete()