1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
"""
Copyright (C) 2023 Michael Ablassmeier <abi@grinser.de>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import os
import sys
import zipfile
import logging
import time
from typing import IO, Tuple
from libvirtnbdbackup.output import exceptions
from libvirtnbdbackup.output.target.directory import Directory
if sys.version_info >= (3, 8):
from typing import Literal
else:
from typing_extensions import Literal
log = logging.getLogger("zip")
class Zip:
"""Backup to zip file"""
def __init__(self) -> None:
self.zipStream: zipfile.ZipFile
self.zipFileStream: IO[bytes]
log.info("Writing zip file stream to stdout")
try:
# pylint: disable=consider-using-with
self.zipStream = zipfile.ZipFile(sys.stdout.buffer, "x", zipfile.ZIP_STORED)
except zipfile.error as e:
raise exceptions.OutputOpenException(f"Failed to open zip file: {e}") from e
def create(self, targetDir) -> None:
"""Create wrapper"""
log.debug("Create: %s", targetDir)
Directory().create(targetDir)
def open(self, fileName: str, mode: Literal["w"] = "w") -> IO[bytes]:
"""Open wrapper"""
zipFile = zipfile.ZipInfo(
filename=os.path.basename(fileName),
)
dateTime: time.struct_time = time.localtime(time.time())
timeStamp: Tuple[int, int, int, int, int, int] = (
dateTime.tm_year,
dateTime.tm_mon,
dateTime.tm_mday,
dateTime.tm_hour,
dateTime.tm_min,
dateTime.tm_sec,
)
zipFile.date_time = timeStamp
zipFile.compress_type = zipfile.ZIP_STORED
try:
# pylint: disable=consider-using-with
self.zipFileStream = self.zipStream.open(zipFile, mode, force_zip64=True)
return self.zipFileStream
except zipfile.error as e:
raise exceptions.OutputOpenException(
f"Failed to open zip stream: {e}"
) from e
return False
def truncate(self, size: int) -> None:
"""Truncate target file"""
raise RuntimeError("Not implemented")
def write(self, data: bytes) -> int:
"""Write wrapper"""
return self.zipFileStream.write(data)
def close(self) -> None:
"""Close wrapper"""
log.debug("Close file")
self.zipFileStream.close()
def checksum(self) -> None:
"""Checksum: not implemented for zip file"""
return
|