blob: c64ff1d4930dd0a6af1b07cfb015a7bbb4fe88d5 [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
Matteo Scandolo5f894a12018-03-21 12:47:24 -070016from synchronizers.new_base.modelaccessor import ServiceInstanceLink, model_accessor
Matteo Scandoloc6230b42018-02-26 15:27:57 -080017from synchronizers.new_base.policy import Policy
18
19class RCORDSubscriberPolicy(Policy):
Matteo Scandolod1707b32018-05-04 12:42:53 -070020 model_name = "RCORDSubscriber"
Matteo Scandoloc6230b42018-02-26 15:27:57 -080021
22 def handle_create(self, si):
23 return self.handle_update(si)
24
25 def handle_update(self, si):
26
27 chain = si.subscribed_links.all()
28
29 # Already has a chain
30 if len(chain) > 0 and not si.is_new:
Matteo Scandolod1707b32018-05-04 12:42:53 -070031 self.logger.debug("MODEL_POLICY: RCORDSubscriber %s is already part of a chain" % si.id)
Matteo Scandoloc6230b42018-02-26 15:27:57 -080032 return
33
34 # if it does not have a chain,
35 # Find links to the next element in the service chain
36 # and create one
37
38 links = si.owner.subscribed_dependencies.all()
39
40 for link in links:
41 ps = link.provider_service.leaf_model
Matteo Scandolo5f894a12018-03-21 12:47:24 -070042 si_class = link.provider_service.get_service_instance_class_name()
Matteo Scandolod1707b32018-05-04 12:42:53 -070043 self.logger.info("MODEL_POLICY: RCORDSubscriber %s creating %s" % (si, si_class))
Matteo Scandoloc6230b42018-02-26 15:27:57 -080044
Matteo Scandolo5f894a12018-03-21 12:47:24 -070045 eastbound_si_class = model_accessor.get_model_class(si_class)
46 eastbound_si = eastbound_si_class()
47 eastbound_si.owner_id = link.provider_service_id
48 eastbound_si.save()
49 link = ServiceInstanceLink(provider_service_instance=eastbound_si, subscriber_service_instance=si)
50 link.save()
Matteo Scandoloc6230b42018-02-26 15:27:57 -080051
52 def handle_delete(self, si):
53 pass