| Server IP : 217.160.0.244 / Your IP : 216.73.217.138 Web Server : Apache System : Linux infong-eu155 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u100174116 ( 6746176) PHP Version : 8.5.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/breezy/ |
Upload File : |
# Copyright (C) 2005, 2006, 2008, 2009, 2010 Canonical Ltd
#
# 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
import os
import stat
from breezy import errors, osutils
# not forksafe - but we dont fork.
_pid = os.getpid()
_hostname = None
class AtomicFileAlreadyClosed(errors.PathError):
_fmt = '"%(function)s" called on an AtomicFile after it was closed: "%(path)s"'
def __init__(self, path, function):
errors.PathError.__init__(self, path=path, extra=None)
self.function = function
class AtomicFile:
"""A file that does an atomic-rename to move into place.
This also causes hardlinks to break when it's written out.
Open this as for a regular file, then use commit() to move into
place or abort() to cancel.
"""
__slots__ = ["_fd", "realfilename", "tmpfilename"]
def __init__(self, filename, mode="wb", new_mode=None):
global _hostname
self._fd = None
if _hostname is None:
_hostname = osutils.get_host_name()
self.tmpfilename = f"{filename}.{_pid}.{_hostname}.{osutils.rand_chars(10)}.tmp"
self.realfilename = filename
flags = os.O_EXCL | os.O_CREAT | os.O_WRONLY | osutils.O_NOINHERIT
if mode == "wb":
flags |= osutils.O_BINARY
elif mode != "wt":
raise ValueError("invalid AtomicFile mode {!r}".format(mode))
if new_mode is not None:
local_mode = new_mode
else:
local_mode = 0o666
# Use a low level fd operation to avoid chmodding later.
# This may not succeed, but it should help most of the time
self._fd = os.open(self.tmpfilename, flags, local_mode)
if new_mode is not None:
# Because of umask issues, we may need to chmod anyway
# the common case is that we won't, though.
st = os.fstat(self._fd)
if stat.S_IMODE(st.st_mode) != new_mode:
osutils.chmod_if_possible(self.tmpfilename, new_mode)
def __repr__(self):
return "{}({!r})".format(self.__class__.__name__, self.realfilename)
def write(self, data):
"""Write some data to the file. Like file.write()."""
os.write(self._fd, data)
def _close_tmpfile(self, func_name):
"""Close the local temp file in preparation for commit or abort."""
if self._fd is None:
raise AtomicFileAlreadyClosed(path=self.realfilename, function=func_name)
fd = self._fd
self._fd = None
os.close(fd)
def commit(self):
"""Close the file and move to final name."""
self._close_tmpfile("commit")
osutils.rename(self.tmpfilename, self.realfilename)
def abort(self):
"""Discard temporary file without committing changes."""
self._close_tmpfile("abort")
os.remove(self.tmpfilename)
def close(self):
"""Discard the file unless already committed."""
if self._fd is not None:
self.abort()
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
if exc_type:
self.abort()
return False
self.commit()