blob: 3b9df64ac604f13fbbed52afafe657412eef9c8f (
plain)
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
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# File: flocker.py
#
# Handles all file locking.
#
# Copyright:
# (c) 2015 Devan Franchini
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
# Michał Górny <mgorny@gentoo.org>
# Devan Franchini <twitch153@gentoo.org>
#
#===============================================================================
#
# Dependencies
#
#-------------------------------------------------------------------------------
import fcntl
from layman.compatibility import fileopen
class LockingException(Exception):
'''
Exception class for relay errors properly
'''
def __init__(self, msg):
self.msg = msg
def __str__(self):
return repr(self.msg)
class FileLocker(object):
def __init__(self):
self.files = {}
self.locked = set()
def lock_file(self, path, exclusive=False):
'''Lock the file located at path.'''
file_mode = 'r'
lock_mode = fcntl.LOCK_SH
if exclusive:
file_mode = 'w+'
lock_mode = fcntl.LOCK_EX
if path in self.locked:
raise LockingException('"%(path)s" is already locked.'
% {'path': path})
self.locked.add(path)
fcntl.flock(self.get_file(path, file_mode).fileno(), lock_mode)
def unlock_file(self, path):
'''Unlock the file located at path.'''
if path not in self.locked:
raise LockingException('"%(path)s" is not locked, unlocking failed'
% {'path': path})
fcntl.flock(self.get_file(path).fileno(), fcntl.LOCK_UN)
self.locked.discard(path)
def get_file(self, path, mode='r'):
'''Obtains file object for given path'''
if mode not in ('r', 'w+'):
raise LockingException('Invalid mode %(mode)s' % {'mode': mode})
if (path not in self.files or self.files[path].closed or
self.files[path].mode != mode):
self.files[path] = fileopen(path, mode)
f = self.files[path]
f.seek(0)
return f
|