utils.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2013-2015 Marek Marczykowski-Górecki
  8. # <marmarek@invisiblethingslab.com>
  9. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License along
  22. # with this program; if not, write to the Free Software Foundation, Inc.,
  23. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  24. #
  25. import os
  26. import re
  27. import subprocess
  28. import docutils
  29. import docutils.core
  30. import docutils.io
  31. def get_timezone():
  32. # fc18
  33. if os.path.islink('/etc/localtime'):
  34. return '/'.join(os.readlink('/etc/localtime').split('/')[-2:])
  35. # <=fc17
  36. elif os.path.exists('/etc/sysconfig/clock'):
  37. clock_config = open('/etc/sysconfig/clock', "r")
  38. clock_config_lines = clock_config.readlines()
  39. clock_config.close()
  40. zone_re = re.compile(r'^ZONE="(.*)"')
  41. for line in clock_config_lines:
  42. line_match = zone_re.match(line)
  43. if line_match:
  44. return line_match.group(1)
  45. else:
  46. # last resort way, some applications makes /etc/localtime
  47. # hardlink instead of symlink...
  48. tz_info = os.stat('/etc/localtime')
  49. if not tz_info:
  50. return None
  51. if tz_info.st_nlink > 1:
  52. p = subprocess.Popen(['find', '/usr/share/zoneinfo',
  53. '-inum', str(tz_info.st_ino)],
  54. stdout=subprocess.PIPE)
  55. tz_path = p.communicate()[0].strip()
  56. return tz_path.replace('/usr/share/zoneinfo/', '')
  57. return None
  58. def format_doc(docstring):
  59. '''Return parsed documentation string, stripping RST markup.
  60. '''
  61. if not docstring:
  62. return ''
  63. # pylint: disable=unused-variable
  64. output, pub = docutils.core.publish_programmatically(
  65. source_class=docutils.io.StringInput,
  66. source=' '.join(docstring.strip().split()),
  67. source_path=None,
  68. destination_class=docutils.io.NullOutput, destination=None,
  69. destination_path=None,
  70. reader=None, reader_name='standalone',
  71. parser=None, parser_name='restructuredtext',
  72. writer=None, writer_name='null',
  73. settings=None, settings_spec=None, settings_overrides=None,
  74. config_section=None, enable_exit_status=None)
  75. return pub.writer.document.astext()
  76. # FIXME those are wrong, k/M/G are SI prefixes and means 10**3
  77. # maybe adapt https://code.activestate.com/recipes/578019
  78. def parse_size(size):
  79. units = [ ('K', 1024), ('KB', 1024),
  80. ('M', 1024*1024), ('MB', 1024*1024),
  81. ('G', 1024*1024*1024), ('GB', 1024*1024*1024),
  82. ]
  83. size = size.strip().upper()
  84. if size.isdigit():
  85. return int(size)
  86. for unit, multiplier in units:
  87. if size.endswith(unit):
  88. size = size[:-len(unit)].strip()
  89. return int(size)*multiplier
  90. raise QubesException("Invalid size: {0}.".format(size))