blob: 393491c9cdf14687fa158712372d4cfd606642d9 [file] [log] [blame]
Wei-Yu Chenba043592017-10-18 17:08:51 +08001
2
3# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17from synchronizers.new_base.modelaccessor import *
18from synchronizers.new_base.model_policies.model_policy_tenantwithcontainer import TenantWithContainerPolicy, LeastLoadedNodeScheduler
19from synchronizers.new_base.exceptions import *
20
21class VSPGWUTenantPolicy(TenantWithContainerPolicy):
22 model_name = "VSPGWUTenant"
Sapan Bhatiaf50fe4e2017-12-12 12:56:27 -050023 constrain_by_service_instance = True
Wei-Yu Chenba043592017-10-18 17:08:51 +080024
25 def handle_create(self, service_instance):
26 return self.handle_update(service_instance)
27
28 def handle_update(self, service_instance):
29 if (service_instance.link_deleted_count>0) and (not service_instance.provided_links.exists()):
30 self.logger.info("The last provided link has been deleted -- self-destructing.")
31 self.handle_delete(service_instance)
32 if VSPGWUTenant.objects.filter(id=service_instance.id).exists():
33 service_instance.delete()
34 else:
35 self.logger.info("Tenant %s is already deleted" % service_instance)
36 return
37
38 self.manage_container(service_instance)
39
40 def handle_delete(self, service_instance):
41 if service_instance.instance and (not service_instance.instance.deleted):
42 all_service_instances_this_instance = VSPGWUTenant.objects.filter(instance_id=service_instance.instance.id)
43 other_service_instances_this_instance = [x for x in all_service_instances_this_instance if x.id != service_instance.id]
44 if (not other_service_instances_this_instance):
45 self.logger.info("VSPGWUTenant Instance %s is now unused -- deleting" % service_instance.instance)
46 self.delete_instance(service_instance, service_instance.instance)
47 else:
48 self.logger.info("VSPGWUTenant Instance %s has %d other service instances attached" % (service_instance.instance, len(other_service_instances_this_instance)))
49
50 def get_service(self, service_instance):
51 service_name = service_instance.owner.leaf_model_name
52 service_class = globals()[service_name]
53 return service_class.objects.get(id=service_instance.owner.id)
54
55 def find_instance_for_instance_tag(self, instance_tag):
56 tags = Tag.objects.filter(name="instance_tag", value=instance_tag)
57 if tags:
58 return tags[0].content_object
59 return None
60
61 def find_or_make_instance_for_instance_tag(self, service_instance):
62 instance_tag = self.get_instance_tag(service_instance)
63 instance = self.find_instance_for_instance_tag(instance_tag)
64 if instance:
65 if instance.no_sync:
66 # if no_sync is still set, then perhaps we failed while saving it and need to retry.
67 self.save_instance(service_instance, instance)
68 return instance
69
70 desired_image = self.get_image(service_instance)
71 desired_flavor = self.get_flavor(service_instance)
72
73 slice = service_instance.owner.slices.first()
74
75 (node, parent) = LeastLoadedNodeScheduler(slice, label=None).pick()
76
77 assert (slice is not None)
78 assert (node is not None)
79 assert (desired_image is not None)
80 assert (service_instance.creator is not None)
81 assert (node.site_deployment.deployment is not None)
82 assert (desired_image is not None)
83
84 instance = Instance(slice=slice,
85 node=node,
86 image=desired_image,
87 creator=service_instance.creator,
88 deployment=node.site_deployment.deployment,
89 flavor=desired_flavor,
90 isolation=slice.default_isolation,
91 parent=parent)
92
93 self.save_instance(service_instance, instance)
94
95 return instance
96
97 def manage_container(self, service_instance):
98 if service_instance.deleted:
99 return
100
101 if service_instance.instance:
102 # We're good.
103 return
104
105 instance = self.find_or_make_instance_for_instance_tag(service_instance)
106 service_instance.instance = instance
107 # TODO: possible for partial failure here?
108 service_instance.save()
109
110 def delete_instance(self, service_instance, instance):
111 # delete the `instance_tag` tags
112 tags = Tag.objects.filter(service_id=service_instance.owner.id, content_type=instance.self_content_type_id,
113 object_id=instance.id, name="instance_tag")
114 for tag in tags:
115 tag.delete()
116
117 tags = Tag.objects.filter(content_type=instance.self_content_type_id, object_id=instance.id,
118 name="vm_vrouter_tenant")
119 for tag in tags:
120 address_manager_instances = list(ServiceInstance.objects.filter(id=tag.value))
121 tag.delete()
122
123 # TODO: Potential partial failure
124
125 for address_manager_instance in address_manager_instances:
126 self.logger.info("Deleting address_manager_instance %s" % address_manager_instance)
127 address_manager_instance.delete()
128
129 instance.delete()
130
131 def save_instance(self, service_instance, instance):
132 instance.no_sync = True # prevent instance from being synced until we're done with it
133 super(VSPGWUTenantPolicy, self).save_instance(instance)
134
135 try:
136 if instance.isolation in ["container", "container_vm"]:
137 raise Exception("Not supported")
138
139 instance_tag = self.get_instance_tag(service_instance)
140 if instance_tag:
141 tags = Tag.objects.filter(name="instance_tag", value=instance_tag)
142 if not tags:
143 tag = Tag(service=service_instance.owner, content_type=instance.self_content_type_id, object_id=instance.id, name="instance_tag", value=str(instance_tag))
144 tag.save()
145
146 instance.no_sync = False # allow the synchronizer to run now
147 super(VSPGWUTenantPolicy, self).save_instance(instance)
148 except:
149 # need to clean up any failures here
150 raise
151
152 def get_instance_tag(self, service_instance):
153 return '%d'%service_instance.id
154
155 def get_image(self, service_instance):
156 return service_instance.vspgwu_vendor.image
157
158 def get_flavor(self, service_vendor):
159 return service_vendor.vspgwu_vendor.flavor