blob: 48a99116cce056a2f3df8313eaa3514b77bec8bd [file] [log] [blame]
Omar Abdelkader60480312017-08-03 14:55:20 -07001from core.models.plcorebase import *
2from models_decl import VSGWService_decl
3from models_decl import VSGWTenant_decl
4
Omar Abdelkader6b017232017-08-07 19:48:57 -06005from django.db import models
6from core.models import Service, PlCoreBase, Slice, Instance, Tenant, TenantWithContainer, Node, Image, User, Flavor, NetworkParameter, NetworkParameterType, Port, AddressPool
7from core.models.plcorebase import StrippedCharField
8import os
9from django.db import models, transaction
10from django.forms.models import model_to_dict
11from django.db.models import *
12from operator import itemgetter, attrgetter, methodcaller
13from core.models import Tag
14from core.models.service import LeastLoadedNodeScheduler
15import traceback
16from xos.exceptions import *
17from xos.config import Config
18from django.contrib.contenttypes.models import ContentType
19from django.contrib.contenttypes.fields import GenericForeignKey
20
Omar Abdelkader60480312017-08-03 14:55:20 -070021class VSGWService(VSGWService_decl):
22 class Meta:
23 proxy = True
24
Omar Abdelkader21b75412017-08-15 16:59:06 -060025 def create_tenant(self, **kwargs):
26 t = VSGWTenant(kind="vEPC", provider_service=self, connect_method="na", tenant_message="vsgw tenant in service chain", **kwargs)
27 t.save()
28 return t
29
Omar Abdelkader60480312017-08-03 14:55:20 -070030class VSGWTenant(VSGWTenant_decl):
31 class Meta:
32 proxy = True
33
34 def __init__(self, *args, **kwargs):
35 vsgwservice = VSGWService.get_service_objects().all()
36 if vsgwservice:
37 self._meta.get_field(
38 "provider_service").default = vsgwservice[0].id
39 super(VSGWTenant, self).__init__(*args, **kwargs)
40
41 def save(self, *args, **kwargs):
Omar Abdelkader21b75412017-08-15 16:59:06 -060042 if not self.creator:
43 if not getattr(self, "caller", None):
44 raise XOSProgrammingError("VSGWTenant's self.caller was not set")
45 self.creator = self.caller
46 if not self.creator:
47 raise XOSProgrammingError("VSGWTenant's self.creator was not set")
48
Omar Abdelkader60480312017-08-03 14:55:20 -070049 super(VSGWTenant, self).save(*args, **kwargs)
50 # This call needs to happen so that an instance is created for this
51 # tenant is created in the slice. One instance is created per tenant.
52 model_policy_vsgwtenant(self.pk)
53
54 def delete(self, *args, **kwargs):
55 # Delete the instance that was created for this tenant
56 self.cleanup_container()
57 super(VSGWTenant, self).delete(*args, **kwargs)
58
59def model_policy_vsgwtenant(pk):
60 # This section of code is atomic to prevent race conditions
61 with transaction.atomic():
62 # We find all of the tenants that are waiting to update
63 tenant = VSGWTenant.objects.select_for_update().filter(pk=pk)
64 if not tenant:
65 return
66 # Since this code is atomic it is safe to always use the first tenant
67 tenant = tenant[0]
68 tenant.manage_container()
69