openshift_version.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Custom version comparison filters for use in openshift-ansible
  5. """
  6. # pylint can't locate distutils.version within virtualenv
  7. # https://github.com/PyCQA/pylint/issues/73
  8. # pylint: disable=no-name-in-module, import-error
  9. from distutils.version import LooseVersion
  10. def gte_function_builder(name, gte_version):
  11. """
  12. Build and return a version comparison function.
  13. Ex: name = 'oo_version_gte_3_6'
  14. version = '3.6'
  15. returns oo_version_gte_3_6, a function which based on the
  16. version will return true if the provided version is greater
  17. than or equal to the function's version
  18. """
  19. def _gte_function(version):
  20. """
  21. Dynamic function created by gte_function_builder.
  22. Ex: version = '3.1'
  23. returns True/False
  24. """
  25. version_gte = False
  26. if str(version) >= LooseVersion(gte_version):
  27. version_gte = True
  28. return version_gte
  29. _gte_function.__name__ = name
  30. return _gte_function
  31. # pylint: disable=too-few-public-methods
  32. class FilterModule(object):
  33. """
  34. Filters for version checking.
  35. """
  36. # Each element of versions is composed of (major, minor_start, minor_end)
  37. # Origin began versioning 3.x with 3.6, so begin 3.x with 3.6.
  38. versions = [(3, 6, 10)]
  39. def __init__(self):
  40. """
  41. Creates a new FilterModule for ose version checking.
  42. """
  43. self._filters = {}
  44. # For each set of (major, minor, minor_iterations)
  45. for major, minor_start, minor_end in self.versions:
  46. # For each minor version in the range
  47. for minor in range(minor_start, minor_end):
  48. # Create the function name
  49. func_name = 'oo_version_gte_{}_{}'.format(major, minor)
  50. # Create the function with the builder
  51. func = gte_function_builder(func_name, "{}.{}.0".format(major, minor))
  52. # Add the function to the mapping
  53. self._filters[func_name] = func
  54. def filters(self):
  55. """
  56. Return the filters mapping.
  57. """
  58. return self._filters