Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 17 | from synchronizers.new_base.modelaccessor import VOLTServiceInstance, ServiceInstanceLink, VSGService, VSGServiceInstance, model_accessor |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 18 | from synchronizers.new_base.policy import Policy |
| 19 | |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 20 | class VOLTServiceInstancePolicy(Policy): |
| 21 | model_name = "VOLTServiceInstance" |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 22 | |
| 23 | def handle_create(self, tenant): |
| 24 | return self.handle_update(tenant) |
| 25 | |
| 26 | def handle_update(self, tenant): |
Matteo Scandolo | f869288 | 2018-02-26 15:30:08 -0800 | [diff] [blame] | 27 | |
| 28 | if (tenant.link_deleted_count > 0) and (not tenant.provided_links.exists()): |
| 29 | # If this instance has no links pointing to it, delete |
| 30 | self.handle_delete(tenant) |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 31 | if VOLTServiceInstance.objects.filter(id=tenant.id).exists(): |
Matteo Scandolo | f869288 | 2018-02-26 15:30:08 -0800 | [diff] [blame] | 32 | tenant.delete() |
| 33 | return |
| 34 | |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 35 | self.manage_vsg(tenant) |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 36 | self.cleanup_orphans(tenant) |
| 37 | |
| 38 | def handle_delete(self, tenant): |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 39 | pass |
| 40 | # assume this is handled by ServiceInstanceLink being deleted |
| 41 | #if tenant.vcpe: |
| 42 | # tenant.vcpe.delete() |
| 43 | |
| 44 | def get_current_vsg(self, tenant): |
| 45 | for link in ServiceInstanceLink.objects.filter(subscriber_service_instance_id = tenant.id): |
| 46 | # NOTE: Assumes the first (and only?) link is to a vsg |
| 47 | # cast from ServiceInstance to VSGTenant |
| 48 | return link.provider_service_instance.leaf_model |
| 49 | return None |
| 50 | |
Matteo Scandolo | 89f1648 | 2018-03-12 16:12:53 -0700 | [diff] [blame^] | 51 | def create_eastbound_instance(self, si): |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 52 | |
Matteo Scandolo | 89f1648 | 2018-03-12 16:12:53 -0700 | [diff] [blame^] | 53 | chain = si.subscribed_links.all() |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 54 | |
Matteo Scandolo | 89f1648 | 2018-03-12 16:12:53 -0700 | [diff] [blame^] | 55 | # Already has a chain |
| 56 | if len(chain) > 0 and not si.is_new: |
| 57 | self.logger.debug("MODEL_POLICY: Subscriber %s is already part of a chain" % si.id) |
| 58 | return |
| 59 | |
| 60 | # if it does not have a chain, |
| 61 | # Find links to the next element in the service chain |
| 62 | # and create one |
| 63 | |
| 64 | links = si.owner.subscribed_dependencies.all() |
| 65 | |
| 66 | for link in links: |
| 67 | si_class = link.provider_service.get_service_instance_class_name() |
| 68 | self.logger.info("MODEL_POLICY: VOLTServiceInstance %s creating %s" % (si, si_class)) |
| 69 | |
| 70 | eastbound_si_class = model_accessor.get_model_class(si_class) |
| 71 | eastbound_si = eastbound_si_class() |
| 72 | eastbound_si.creator = si.creator |
| 73 | eastbound_si.owner_id = link.provider_service_id |
| 74 | eastbound_si.save() |
| 75 | link = ServiceInstanceLink(provider_service_instance=eastbound_si, subscriber_service_instance=si) |
| 76 | link.save() |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 77 | |
| 78 | def manage_vsg(self, tenant): |
| 79 | # Each VOLT object owns exactly one VCPE object |
| 80 | |
| 81 | if tenant.deleted: |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 82 | self.logger.info("MODEL_POLICY: VOLTServiceInstance %s deleted, deleting vsg" % tenant) |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 83 | return |
| 84 | |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 85 | cur_vsg = self.get_current_vsg(tenant) |
| 86 | |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 87 | # Check to see if the wrong s-tag is set. This can only happen if the |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 88 | # user changed the s-tag after the VOLTServiceInstance object was created. |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 89 | if cur_vsg and cur_vsg.instance: |
| 90 | s_tags = Tag.objects.filter(content_type=cur_vsg.instance.self_content_type_id, |
| 91 | object_id=cur_vsg.instance.id, name="s_tag") |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 92 | if s_tags and (s_tags[0].value != str(tenant.s_tag)): |
Matteo Scandolo | d245801 | 2018-03-01 13:40:36 -0800 | [diff] [blame] | 93 | self.logger.info("MODEL_POLICY: VOLTServiceInstance %s s_tag changed, deleting vsg" % tenant) |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 94 | cur_vsg.delete() |
| 95 | cur_vsg = None |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 96 | |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 97 | if cur_vsg is None: |
Matteo Scandolo | 89f1648 | 2018-03-12 16:12:53 -0700 | [diff] [blame^] | 98 | self.create_eastbound_instance(tenant) |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 99 | |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 100 | def cleanup_orphans(self, tenant): |
| 101 | # ensure vOLT only has one vCPE |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 102 | cur_vsg = self.get_current_vsg(tenant) |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 103 | |
| 104 | links = tenant.subscribed_links.all() |
| 105 | for link in links: |
Scott Baker | 697ad22 | 2017-09-18 16:30:18 -0700 | [diff] [blame] | 106 | if (link.provider_service_instance_id != cur_vsg.id): |
| 107 | link.delete() |