compress.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Copyright (C) 2015, Ansgar Burchardt <ansgar@debian.org>
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License along
  14. # with this program; if not, write to the Free Software Foundation, Inc.,
  15. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  16. """
  17. Helper methods to deal with (de)compressing files
  18. """
  19. import daklib.config
  20. import os
  21. import shutil
  22. import subprocess
  23. import tempfile
  24. def decompress_xz(input, output):
  25. subprocess.check_call(["xz", "--decompress"], stdin=input, stdout=output)
  26. def decompress_bz2(input, output):
  27. subprocess.check_call(["bzip2", "--decompress"], stdin=input, stdout=output)
  28. def decompress_gz(input, output):
  29. subprocess.check_call(["gzip", "--decompress"], stdin=input, stdout=output)
  30. decompressors = {
  31. '.xz': decompress_xz,
  32. '.bz2': decompress_bz2,
  33. '.gz': decompress_gz,
  34. }
  35. def decompress(input, output, filename=None):
  36. if filename is None:
  37. filename = input.name
  38. base, ext = os.path.splitext(filename)
  39. decompressor = decompressors.get(ext, None)
  40. if decompressor is not None:
  41. decompressor(input, output)
  42. else:
  43. shutil.copyfileobj(input, output)