From: Philip Joseph Date: Fri, 30 Sep 2016 11:44:00 +0000 (+0530) Subject: Remove job data on NS termination X-Git-Tag: v1.0.0~3 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FSO.git;a=commitdiff_plain;h=0f822755d5b1cc1c5e9816068710ca82851904a4 Remove job data on NS termination Signed-off-by: Philip Joseph --- diff --git a/common/python/rift/mano/config_agent/operdata.py b/common/python/rift/mano/config_agent/operdata.py index 0db3f3d9..729a1f1c 100644 --- a/common/python/rift/mano/config_agent/operdata.py +++ b/common/python/rift/mano/config_agent/operdata.py @@ -285,6 +285,7 @@ class ConfigAgentJob(object): self._job = job self.nsr_id = nsr_id self.tasks = tasks + self._regh = None @property def id(self): @@ -319,6 +320,16 @@ class ConfigAgentJob(object): "/nsr:config-agent-job[nsr:job-id='{}']" ).format(self.nsr_id, self.id) + @property + def regh(self): + """Registration handle for the job""" + return self._regh + + @regh.setter + def regh(self, hdl): + """Setter for registration handle""" + self._regh = hdl + @staticmethod def convert_rpc_input_to_job(nsr_id, rpc_output, tasks): """A helper function to convert the YangOutput_Nsr_ExecNsConfigPrimitive @@ -464,6 +475,7 @@ class ConfigAgentJobMonitor(object): ) self.log.debug('preparing to publish job status for {}'.format(self.job.xpath)) + self.job.regh = registration_handle try: registration_handle.create_element(self.job.xpath, self.job.job) @@ -653,6 +665,7 @@ class CfgAgentJobDtsHandler(object): self._nsm = nsm self._regh = None + self._nsr_regh = None @property def regh(self): @@ -698,16 +711,13 @@ class CfgAgentJobDtsHandler(object): nsr_ids = [nsr_id] for nsr_id in nsr_ids: - job = self.cfgm.get_job(nsr_id) + jobs = self.cfgm.get_job(nsr_id) - # If no jobs are queued for the NSR - if job is None: - continue - - xact_info.respond_xpath( - rwdts.XactRspCode.MORE, - CfgAgentJobDtsHandler.cfg_job_xpath(nsr_id, job.job_id), - job) + for job in jobs: + xact_info.respond_xpath( + rwdts.XactRspCode.MORE, + CfgAgentJobDtsHandler.cfg_job_xpath(nsr_id, job.id), + job.job) except Exception as e: self._log.exception("Caught exception:%s", str(e)) @@ -723,6 +733,57 @@ class CfgAgentJobDtsHandler(object): flags=rwdts.Flag.PUBLISHER, ) + @asyncio.coroutine + def _terminate_nsr(self, nsr_id): + self._log.debug("NSR {} being terminated".format(nsr_id)) + jobs = self.cfgm.get_job(nsr_id) + for job in jobs: + path = CfgAgentJobDtsHandler.cfg_job_xpath(nsr_id, job.id) + with self._dts.transaction() as xact: + self._log.debug("Deleting job: {}".format(path)) + job.regh.delete_element(path) + self._log.debug("Deleted job: {}".format(path)) + + # Remove the NSR id in manager + self.cfgm.del_nsr(nsr_id) + + @property + def nsr_xpath(self): + return "D,/nsr:ns-instance-opdata/nsr:nsr" + + @asyncio.coroutine + def register_for_nsr(self): + """ Register for NSR changes """ + + @asyncio.coroutine + def on_prepare(xact_info, query_action, ks_path, msg): + """ This NSR is created """ + self._log.debug("Received NSR instantiate on_prepare (%s:%s:%s)", + query_action, + ks_path, + msg) + + if (query_action == rwdts.QueryAction.UPDATE or + query_action == rwdts.QueryAction.CREATE): + pass + elif query_action == rwdts.QueryAction.DELETE: + nsr_id = msg.ns_instance_config_ref + asyncio.ensure_future(self._terminate_nsr(nsr_id), loop=self._loop) + else: + raise NotImplementedError( + "%s action on cm-state not supported", + query_action) + + xact_info.respond_xpath(rwdts.XactRspCode.ACK) + + try: + handler = rift.tasklets.DTS.RegistrationHandler(on_prepare=on_prepare) + self._nsr_regh = yield from self._dts.register(self.nsr_xpath, + flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY, + handler=handler) + except Exception as e: + self._log.error("Failed to register for NSR changes as %s", str(e)) + class ConfigAgentJobManager(object): """A central class that manager all the Config Agent related data, @@ -757,11 +818,16 @@ class ConfigAgentJobManager(object): """ nsr_id = rpc_output.nsr_id_ref - self.jobs[nsr_id] = ConfigAgentJob.convert_rpc_input_to_job(nsr_id, rpc_output, tasks) + job = ConfigAgentJob.convert_rpc_input_to_job(nsr_id, rpc_output, tasks) self.log.debug("Creating a job monitor for Job id: {}".format( rpc_output.job_id)) + if nsr_id not in self.jobs: + self.jobs[nsr_id] = [job] + else: + self.jobs[nsr_id].append(job) + # If the tasks are none, assume juju actions # TBD: This logic need to be revisited ca = self.nsm.config_agent_plugins[0] @@ -775,7 +841,7 @@ class ConfigAgentJobManager(object): job_monitor = ConfigAgentJobMonitor( self.dts, self.log, - self.jobs[nsr_id], + job, self.executor, self.loop, ca @@ -785,10 +851,16 @@ class ConfigAgentJobManager(object): def get_job(self, nsr_id): """Get the job associated with the NSR Id, if present.""" try: - return self.jobs[nsr_id].job + return self.jobs[nsr_id] except KeyError: - return None + return [] + + def del_nsr(self, nsr_id): + """Delete a NSR id from the jobs list""" + if nsr_id in self.jobs: + self.jobs.pop(nsr_id) @asyncio.coroutine def register(self): yield from self.handler.register() + yield from self.handler.register_for_nsr()