123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- # Copyright (C) 2012, Ansgar Burchardt <ansgar@debian.org>
- #
- # 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 2 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, write to the Free Software Foundation, Inc.,
- # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- """Transactions for filesystem actions
- """
- import errno
- import os
- import shutil
- class _FilesystemAction(object):
- @property
- def temporary_name(self):
- raise NotImplementedError()
- def check_for_temporary(self):
- try:
- if os.path.exists(self.temporary_name):
- raise IOError("Temporary file '{0}' already exists.".format(self.temporary_name))
- except NotImplementedError:
- pass
- class _FilesystemCopyAction(_FilesystemAction):
- def __init__(self, source, destination, link=True, symlink=False, mode=None):
- self.destination = destination
- self.need_cleanup = False
- dirmode = 0o2755
- if mode is not None:
- dirmode = 0o2700 | mode
- # Allow +x for group and others if they have +r.
- if dirmode & 0o0040:
- dirmode = dirmode | 0o0010
- if dirmode & 0o0004:
- dirmode = dirmode | 0o0001
- self.check_for_temporary()
- destdir = os.path.dirname(self.destination)
- if not os.path.exists(destdir):
- os.makedirs(destdir, dirmode)
- if symlink:
- os.symlink(source, self.destination)
- elif link:
- try:
- os.link(source, self.destination)
- except OSError:
- shutil.copy2(source, self.destination)
- else:
- shutil.copy2(source, self.destination)
- self.need_cleanup = True
- if mode is not None:
- os.chmod(self.destination, mode)
- @property
- def temporary_name(self):
- return self.destination
- def commit(self):
- pass
- def rollback(self):
- if self.need_cleanup:
- os.unlink(self.destination)
- self.need_cleanup = False
- class _FilesystemUnlinkAction(_FilesystemAction):
- def __init__(self, path):
- self.path = path
- self.need_cleanup = False
- self.check_for_temporary()
- os.rename(self.path, self.temporary_name)
- self.need_cleanup = True
- @property
- def temporary_name(self):
- return "{0}.dak-rm".format(self.path)
- def commit(self):
- if self.need_cleanup:
- os.unlink(self.temporary_name)
- self.need_cleanup = False
- def rollback(self):
- if self.need_cleanup:
- os.rename(self.temporary_name, self.path)
- self.need_cleanup = False
- class _FilesystemCreateAction(_FilesystemAction):
- def __init__(self, path):
- self.path = path
- self.need_cleanup = True
- @property
- def temporary_name(self):
- return self.path
- def commit(self):
- pass
- def rollback(self):
- if self.need_cleanup:
- os.unlink(self.path)
- self.need_cleanup = False
- class FilesystemTransaction(object):
- """transactions for filesystem actions"""
- def __init__(self):
- self.actions = []
- def copy(self, source, destination, link=False, symlink=False, mode=None):
- """copy C{source} to C{destination}
- @type source: str
- @param source: source file
- @type destination: str
- @param destination: destination file
- @type link: bool
- @param link: try hardlinking, falling back to copying
- @type symlink: bool
- @param symlink: create a symlink instead of copying
- @type mode: int
- @param mode: permissions to change C{destination} to
- """
- if isinstance(mode, str) or isinstance(mode, unicode):
- mode = int(mode, 8)
- self.actions.append(_FilesystemCopyAction(source, destination, link=link, symlink=symlink, mode=mode))
- def move(self, source, destination, mode=None):
- """move C{source} to C{destination}
- @type source: str
- @param source: source file
- @type destination: str
- @param destination: destination file
- @type mode: int
- @param mode: permissions to change C{destination} to
- """
- self.copy(source, destination, link=True, mode=mode)
- self.unlink(source)
- def unlink(self, path):
- """unlink C{path}
- @type path: str
- @param path: file to unlink
- """
- self.actions.append(_FilesystemUnlinkAction(path))
- def create(self, path, mode=None):
- """create C{filename} and return file handle
- @type filename: str
- @param filename: file to create
- @type mode: int
- @param mode: permissions for the new file
- @return: file handle of the new file
- """
- if isinstance(mode, str) or isinstance(mode, unicode):
- mode = int(mode, 8)
- destdir = os.path.dirname(path)
- if not os.path.exists(destdir):
- os.makedirs(destdir, 0o2775)
- if os.path.exists(path):
- raise IOError("File '{0}' already exists.".format(path))
- fh = open(path, 'w')
- self.actions.append(_FilesystemCreateAction(path))
- if mode is not None:
- os.chmod(path, mode)
- return fh
- def commit(self):
- """Commit all recorded actions."""
- try:
- for action in self.actions:
- action.commit()
- except:
- self.rollback()
- raise
- finally:
- self.actions = []
- def rollback(self):
- """Undo all recorded actions."""
- try:
- for action in self.actions:
- action.rollback()
- finally:
- self.actions = []
- def __enter__(self):
- return self
- def __exit__(self, type, value, traceback):
- if type is None:
- self.commit()
- else:
- self.rollback()
- return None
|