utils.py 899 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env python
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. ''' The purpose of this module is to contain small utility functions.
  4. '''
  5. import re
  6. def normalize_dnsname(name, padding=10):
  7. ''' The purpose of this function is to return a dns name with zero padding,
  8. so that it sorts properly (as a human would expect).
  9. Example: name=ex-lrg-node10.prod.rhcloud.com
  10. Returns: ex-lrg-node0000000010.prod.rhcloud.com
  11. Example Usage:
  12. sorted(['a3.example.com', 'a10.example.com', 'a1.example.com'],
  13. key=normalize_dnsname)
  14. Returns: ['a1.example.com', 'a3.example.com', 'a10.example.com']
  15. '''
  16. parts = re.split(r'(\d+)', name)
  17. retval = []
  18. for part in parts:
  19. if re.match(r'^\d+$', part):
  20. retval.append(part.zfill(padding))
  21. else:
  22. retval.append(part)
  23. return ''.join(retval)