blob: a7da0bd66188e8eae0981a55f56b7dc6d00f1a99 [file] [log] [blame]
Andy Bavier03df22b2017-08-30 14:46:02 -07001
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
17from synchronizers.new_base.modelaccessor import *
18from synchronizers.new_base.policy import Policy
19
20class VOLTTenantPolicy(Policy):
21 model_name = "VOLTTenant"
22
23 def handle_create(self, tenant):
24 return self.handle_update(tenant)
25
26 def handle_update(self, tenant):
Matteo Scandolof8692882018-02-26 15:30:08 -080027
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)
31 if VOLTTenant.objects.filter(id=tenant.id).exists():
32 tenant.delete()
33 return
34
Andy Bavier03df22b2017-08-30 14:46:02 -070035 self.manage_vsg(tenant)
Andy Bavier03df22b2017-08-30 14:46:02 -070036 self.cleanup_orphans(tenant)
37
38 def handle_delete(self, tenant):
Scott Baker697ad222017-09-18 16:30:18 -070039 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
51 def create_vsg(self, tenant):
52 vsgServices = VSGService.objects.all()
53 if not vsgServices:
54 raise XOSConfigurationError("No VSG Services available")
55
56 self.logger.info("MODEL_POLICY: volttenant %s creating vsg" % tenant)
57
58 cur_vsg = VSGServiceInstance(owner=vsgServices[0])
59 cur_vsg.creator = tenant.creator
60 cur_vsg.save()
61 link = ServiceInstanceLink(provider_service_instance=cur_vsg, subscriber_service_instance=tenant)
62 link.save()
Andy Bavier03df22b2017-08-30 14:46:02 -070063
64 def manage_vsg(self, tenant):
65 # Each VOLT object owns exactly one VCPE object
66
67 if tenant.deleted:
68 self.logger.info("MODEL_POLICY: volttenant %s deleted, deleting vsg" % tenant)
69 return
70
Scott Baker697ad222017-09-18 16:30:18 -070071 cur_vsg = self.get_current_vsg(tenant)
72
Andy Bavier03df22b2017-08-30 14:46:02 -070073 # Check to see if the wrong s-tag is set. This can only happen if the
74 # user changed the s-tag after the VoltTenant object was created.
Scott Baker697ad222017-09-18 16:30:18 -070075 if cur_vsg and cur_vsg.instance:
76 s_tags = Tag.objects.filter(content_type=cur_vsg.instance.self_content_type_id,
77 object_id=cur_vsg.instance.id, name="s_tag")
Andy Bavier03df22b2017-08-30 14:46:02 -070078 if s_tags and (s_tags[0].value != str(tenant.s_tag)):
79 self.logger.info("MODEL_POLICY: volttenant %s s_tag changed, deleting vsg" % tenant)
Scott Baker697ad222017-09-18 16:30:18 -070080 cur_vsg.delete()
81 cur_vsg = None
Andy Bavier03df22b2017-08-30 14:46:02 -070082
Scott Baker697ad222017-09-18 16:30:18 -070083 if cur_vsg is None:
84 self.create_vsg(tenant)
Andy Bavier03df22b2017-08-30 14:46:02 -070085
Andy Bavier03df22b2017-08-30 14:46:02 -070086 def cleanup_orphans(self, tenant):
87 # ensure vOLT only has one vCPE
Scott Baker697ad222017-09-18 16:30:18 -070088 cur_vsg = self.get_current_vsg(tenant)
Andy Bavier03df22b2017-08-30 14:46:02 -070089
90 links = tenant.subscribed_links.all()
91 for link in links:
Scott Baker697ad222017-09-18 16:30:18 -070092 if (link.provider_service_instance_id != cur_vsg.id):
93 link.delete()