Enable dynamic resolution of counter field mappings for the management command

This commit is contained in:
Jeremy Stretch 2023-07-24 11:38:49 -04:00
parent 113de69af7
commit 296e62579f
3 changed files with 46 additions and 30 deletions

View File

@ -21,7 +21,7 @@ class Registry(dict):
# Initialize the global registry # Initialize the global registry
registry = Registry({ registry = Registry({
'counter_fields': collections.defaultdict(set), 'counter_fields': collections.defaultdict(dict),
'data_backends': dict(), 'data_backends': dict(),
'denormalized_fields': collections.defaultdict(list), 'denormalized_fields': collections.defaultdict(list),
'model_features': dict(), 'model_features': dict(),

View File

@ -43,7 +43,7 @@ class Counter:
# add the field to be tracked for changes in case of update # add the field to be tracked for changes in case of update
change_tracking_fields = registry['counter_fields'][self.child_model] change_tracking_fields = registry['counter_fields'][self.child_model]
change_tracking_fields.add(f"{self.foreign_key_field.name}_id") change_tracking_fields[f"{self.foreign_key_field.name}_id"] = counter_name
self.connect() self.connect()

View File

@ -1,36 +1,52 @@
from collections import defaultdict
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from django.core.management.color import no_style from django.db.models import Count, OuterRef, Subquery
from dcim.models import Device from netbox.registry import registry
from virtualization.models import VirtualMachine
def recalculate_device_counts():
for device in Device.objects.all():
device._console_port_count = device.consoleports.count()
device._console_server_port_count = device.consoleserverports.count()
device._interface_count = device.interfaces.count()
device._front_port_count = device.frontports.count()
device._rear_port_count = device.rearports.count()
device._device_bay_count = device.devicebays.count()
device._inventory_item_count = device.inventoryitems.count()
device._power_port_count = device.powerports.count()
device._power_outlet_count = device.poweroutlets.count()
device.save()
def recalculate_virtual_machine_counts():
for vm in VirtualMachine.objects.all():
vm._interface_count = vm.interfaces.count()
vm.save()
class Command(BaseCommand): class Command(BaseCommand):
help = "Recalculate cached counts" help = "Force a recalculation of all cached counter fields"
@staticmethod
def collect_models():
"""
Query the registry to find all models which have one or more counter fields. Return a mapping of counter fields
to related query names for each model.
"""
models = defaultdict(dict)
for model, field_mappings in registry['counter_fields'].items():
for field_name, counter_name in field_mappings.items():
fk_field = model._meta.get_field(field_name) # Interface.device
parent_model = fk_field.related_model # Device
related_query_name = fk_field.related_query_name() # 'interfaces'
models[parent_model][counter_name] = related_query_name
return models
def update_counts(self, model, field_name, related_query):
"""
Perform a bulk update for the given model and counter field. For example,
update_counts(Device, '_interface_count', 'interfaces')
will effectively set
Device.objects.update(_interface_count=Count('interfaces'))
"""
self.stdout.write(f'Updating {model.__name__} {field_name}...')
subquery = Subquery(
model.objects.filter(pk=OuterRef('pk')).annotate(_count=Count(related_query)).values('_count')
)
return model.objects.update(**{
field_name: subquery
})
def handle(self, *model_names, **options): def handle(self, *model_names, **options):
self.stdout.write('Recalculating device counts...') for model, mappings in self.collect_models().items():
recalculate_device_counts() for field_name, related_query in mappings.items():
self.stdout.write('Recalculating virtual machine counts...') self.update_counts(model, field_name, related_query)
recalculate_virtual_machine_counts()
self.stdout.write(self.style.SUCCESS('Finished.')) self.stdout.write(self.style.SUCCESS('Finished.'))