blob: ae8635e4e06e60369ff7e27bb510e3f2d5fa3a45 [file] [log] [blame]
Matteo Scandolo23e67602017-10-05 17:52:13 -07001# 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
15from synchronizers.new_base.modelaccessor import *
16from synchronizers.new_base.policy import Policy
17from synchronizers.new_base.model_policies.model_policy_tenantwithcontainer import TenantWithContainerPolicy
18from synchronizers.new_base.exceptions import *
19
20class VENBServiceInstancePolicy(TenantWithContainerPolicy):
Sapan Bhatia694accb2017-12-01 10:18:14 -050021 model_name = "VENBServiceInstance"
Sapan Bhatiaf9a67602017-12-08 11:05:52 -050022 constrain_by_service_instance = True
Sapan Bhatia694accb2017-12-01 10:18:14 -050023
24 def handle_create(self, service_instance):
25 return self.handle_update(service_instance)
26
27 def handle_update(self, service_instance):
28 if (service_instance.link_deleted_count>0) and (not service_instance.provided_links.exists()):
29 self.logger.info("The last provided link has been deleted -- self-destructing.")
30 self.handle_delete(service_instance)
31 if VENBServiceInstance.objects.filter(id=service_instance.id).exists():
32 service_instance.delete()
33 else:
34 self.logger.info("Tenant %s is already deleted" % service_instance)
35 return
36
37 self.manage_container(service_instance)
38
39 def handle_delete(self, service_instance):
40 if service_instance.instance and (not service_instance.instance.deleted):
41 all_service_instances_this_instance = VENBServiceInstance.objects.filter(instance_id=service_instance.instance.id)
42 other_service_instances_this_instance = [x for x in all_service_instances_this_instance if x.id != service_instance.id]
43 if (not other_service_instances_this_instance):
44 self.logger.info("VENBServiceInstance Instance %s is now unused -- deleting" % service_instance.instance)
45 service_instance.instance.delete()
46 else:
47 self.logger.info("VENBServiceInstance Instance %s has %d other service instances attached" % (service_instance.instance, len(other_service_instances_this_instance)))
48