blob: 38a13c38cab1188cd37073642287c3476979b4d3 [file] [log] [blame]
Matteo Scandoloc6230b42018-02-26 15:27:57 -08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15
Scott Baker8b1a8852019-02-04 09:39:17 -080016from xossynchronizer.modelaccessor import ServiceInstanceLink, model_accessor
17from xossynchronizer.model_policies.policy import Policy
Matteo Scandoloc6230b42018-02-26 15:27:57 -080018
Scott Bakerb1671512019-04-01 19:16:54 -070019
Matteo Scandoloc6230b42018-02-26 15:27:57 -080020class RCORDSubscriberPolicy(Policy):
Matteo Scandolod1707b32018-05-04 12:42:53 -070021 model_name = "RCORDSubscriber"
Matteo Scandoloc6230b42018-02-26 15:27:57 -080022
23 def handle_create(self, si):
24 return self.handle_update(si)
25
26 def handle_update(self, si):
27
28 chain = si.subscribed_links.all()
29
30 # Already has a chain
Matteo Scandoloc7756902019-05-31 16:04:05 -070031 if si.status != "enabled" and len(chain) > 0:
32 # delete chain
33 self.logger.debug("MODEL_POLICY: deleting RCORDSubscriber chain from %s" % si.id, status=si.status)
34 for link in chain:
35 self.logger.debug("Removing link %s" % link.id,
36 provider_service=link.provider_service_instance.leaf_model,
37 subscriber_service=link.subscriber_service_instance.leaf_model)
38 link.delete()
39 link.provider_service_instance.leaf_model.delete()
Matteo Scandoloc6230b42018-02-26 15:27:57 -080040
Matteo Scandoloc7756902019-05-31 16:04:05 -070041 elif si.status == "enabled":
Matteo Scandoloc6230b42018-02-26 15:27:57 -080042
Matteo Scandoloc7756902019-05-31 16:04:05 -070043 self.logger.debug("MODEL_POLICY: creating RCORDSubscriber chain for %s" % si.id, status=si.status)
44 # if it does not have a chain,
45 # Find links to the next element in the service chain
46 # and create one
47 links = si.owner.subscribed_dependencies.all()
Matteo Scandoloc6230b42018-02-26 15:27:57 -080048
Matteo Scandoloc7756902019-05-31 16:04:05 -070049 for link in links:
50 si_class = link.provider_service.get_service_instance_class_name()
51 self.logger.info("MODEL_POLICY: RCORDSubscriber %s creating %s" % (si, si_class))
52
53 provider_service = link.provider_service.leaf_model
54
55 valid_provider_service_instance = provider_service.validate_links(si)
56 if not valid_provider_service_instance:
57 provider_service.acquire_service_instance(si)
Matteo Scandoloc6230b42018-02-26 15:27:57 -080058
59 def handle_delete(self, si):
60 pass