blob: ffa3407c509eccddc0a9f1966fbb5ee247edebb5 [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
25class VSGWTenant(VSGWTenant_decl):
26 class Meta:
27 proxy = True
28
29 def __init__(self, *args, **kwargs):
30 vsgwservice = VSGWService.get_service_objects().all()
31 if vsgwservice:
32 self._meta.get_field(
33 "provider_service").default = vsgwservice[0].id
34 super(VSGWTenant, self).__init__(*args, **kwargs)
35
36 def save(self, *args, **kwargs):
37 super(VSGWTenant, self).save(*args, **kwargs)
38 # This call needs to happen so that an instance is created for this
39 # tenant is created in the slice. One instance is created per tenant.
40 model_policy_vsgwtenant(self.pk)
41
42 def delete(self, *args, **kwargs):
43 # Delete the instance that was created for this tenant
44 self.cleanup_container()
45 super(VSGWTenant, self).delete(*args, **kwargs)
46
47def model_policy_vsgwtenant(pk):
48 # This section of code is atomic to prevent race conditions
49 with transaction.atomic():
50 # We find all of the tenants that are waiting to update
51 tenant = VSGWTenant.objects.select_for_update().filter(pk=pk)
52 if not tenant:
53 return
54 # Since this code is atomic it is safe to always use the first tenant
55 tenant = tenant[0]
56 tenant.manage_container()
57