Add selection for vpnnetworkreservations
This commit is contained in:
parent
7f32d05cd4
commit
074cffcbd7
1 changed files with 23 additions and 0 deletions
23
uncloud_net/selectors.py
Normal file
23
uncloud_net/selectors.py
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
from django.db.models import Count
|
||||||
|
from .models import *
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def get_suitable_pool(subnetwork_size):
|
||||||
|
"""
|
||||||
|
Find suitable pools for a certain network size.
|
||||||
|
|
||||||
|
First, filter for all pools that offer the requested subnetwork_size.
|
||||||
|
|
||||||
|
Then find those pools that are not fully exhausted:
|
||||||
|
|
||||||
|
The number of available networks in a pool is 2^(subnetwork_size-network_size.
|
||||||
|
|
||||||
|
The number of available networks in a pool is given by the number of VPNNetworkreservations.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
return VPNPool.objects.annotate(
|
||||||
|
num_reservations=Count('vpnnetworkreservation'),
|
||||||
|
max_reservations=2**(F('subnetwork_size')-F('network_size'))).filter(
|
||||||
|
num_reservations__lt=F('max_reservations'),
|
||||||
|
subnetwork_size=subnetwork_size)
|
Loading…
Reference in a new issue