Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 1 | from abc import ABCMeta, abstractmethod |
| 2 | |
| 3 | |
| 4 | class VppObject(object): |
| 5 | """ Abstract vpp object """ |
| 6 | __metaclass__ = ABCMeta |
| 7 | |
| 8 | def __init__(self): |
| 9 | VppObjectRegistry().register(self) |
| 10 | |
| 11 | @abstractmethod |
| 12 | def add_vpp_config(self): |
| 13 | """ Add the configuration for this object to vpp. """ |
| 14 | pass |
| 15 | |
| 16 | @abstractmethod |
| 17 | def query_vpp_config(self): |
| 18 | """Query the vpp configuration. |
| 19 | |
| 20 | :return: True if the object is configured""" |
| 21 | pass |
| 22 | |
| 23 | @abstractmethod |
| 24 | def remove_vpp_config(self): |
| 25 | """ Remove the configuration for this object from vpp. """ |
| 26 | pass |
| 27 | |
| 28 | @abstractmethod |
| 29 | def object_id(self): |
| 30 | """ Return a unique string representing this object. """ |
| 31 | pass |
| 32 | |
| 33 | |
| 34 | class VppObjectRegistry(object): |
| 35 | """ Class which handles automatic configuration cleanup. """ |
| 36 | _shared_state = {} |
| 37 | |
| 38 | def __init__(self): |
| 39 | self.__dict__ = self._shared_state |
| 40 | if not hasattr(self, "_object_registry"): |
| 41 | self._object_registry = [] |
| 42 | if not hasattr(self, "_object_dict"): |
| 43 | self._object_dict = dict() |
| 44 | |
| 45 | def register(self, o): |
| 46 | """ Register an object in the registry. """ |
| 47 | if not o.unique_id() in self._object_dict: |
| 48 | self._object_registry.append(o) |
| 49 | self._object_dict[o.unique_id()] = o |
| 50 | else: |
| 51 | print "not adding duplicate %s" % o |
| 52 | |
| 53 | def remove_vpp_config(self, logger): |
| 54 | """ |
| 55 | Remove configuration (if present) from vpp and then remove all objects |
| 56 | from the registry. |
| 57 | """ |
| 58 | if not self._object_registry: |
| 59 | logger.info("No objects registered for auto-cleanup.") |
| 60 | return |
| 61 | logger.info("Removing VPP configuration for registered objects") |
| 62 | for o in reversed(self._object_registry): |
| 63 | if o.query_vpp_config(): |
| 64 | logger.info("Removing %s", o) |
| 65 | o.remove_vpp_config() |
| 66 | else: |
| 67 | logger.info("Skipping %s, configuration not present", o) |
| 68 | failed = [] |
| 69 | for o in self._object_registry: |
| 70 | if o.query_vpp_config(): |
| 71 | failed.append(o) |
| 72 | self._object_registry = [] |
| 73 | self._object_dict = dict() |
| 74 | if failed: |
| 75 | logger.error("Couldn't remove configuration for object(s):") |
| 76 | for x in failed: |
| 77 | logger.error(repr(x)) |
| 78 | raise Exception("Couldn't remove configuration for object(s): %s" % |
| 79 | (", ".join(str(x) for x in failed))) |