Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zabbix-external-scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OCP-MONITORING
zabbix-external-scripts
Commits
d5dcb4f1
Commit
d5dcb4f1
authored
9 years ago
by
Matteo Pergolesi
Browse files
Options
Downloads
Patches
Plain Diff
Committing cheanges made by INFN PG.
parent
ea11bae6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
filelock.py
+77
-0
77 additions, 0 deletions
filelock.py
proxy_template.conf
+6
-0
6 additions, 0 deletions
proxy_template.conf
token_backup_template
+3
-0
3 additions, 0 deletions
token_backup_template
with
86 additions
and
0 deletions
filelock.py
0 → 100755
+
77
−
0
View file @
d5dcb4f1
import
os
import
time
import
errno
class
FileLockException
(
Exception
):
pass
class
FileLock
(
object
):
"""
A file locking mechanism that has context-manager support so
you can use it in a with statement. This should be relatively cross
compatible as it doesn
'
t rely on msvcrt or fcntl for the locking.
"""
def
__init__
(
self
,
file_name
,
timeout
=
10
,
delay
=
.
05
):
"""
Prepare the file locker. Specify the file to lock and optionally
the maximum timeout and the delay between each attempt to lock.
"""
self
.
is_locked
=
False
self
.
lockfile
=
os
.
path
.
join
(
os
.
getcwd
(),
"
%s.lock
"
%
file_name
)
self
.
file_name
=
file_name
self
.
timeout
=
timeout
self
.
delay
=
delay
def
acquire
(
self
):
"""
Acquire the lock, if possible. If the lock is in use, it check again
every `wait` seconds. It does this until it either gets the lock or
exceeds `timeout` number of seconds, in which case it throws
an exception.
"""
start_time
=
time
.
time
()
while
True
:
try
:
self
.
fd
=
os
.
open
(
self
.
lockfile
,
os
.
O_CREAT
|
os
.
O_EXCL
|
os
.
O_RDWR
)
break
;
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EEXIST
:
raise
if
(
time
.
time
()
-
start_time
)
>=
self
.
timeout
:
raise
FileLockException
(
"
Timeout occured.
"
)
time
.
sleep
(
self
.
delay
)
self
.
is_locked
=
True
def
release
(
self
):
"""
Get rid of the lock by deleting the lockfile.
When working in a `with` statement, this gets automatically
called at the end.
"""
if
self
.
is_locked
:
os
.
close
(
self
.
fd
)
os
.
unlink
(
self
.
lockfile
)
self
.
is_locked
=
False
def
__enter__
(
self
):
"""
Activated when used in the with statement.
Should automatically acquire a lock to be used in the with block.
"""
if
not
self
.
is_locked
:
self
.
acquire
()
return
self
def
__exit__
(
self
,
type
,
value
,
traceback
):
"""
Activated at the end of the with statement.
It automatically releases the lock if it isn
'
t locked.
"""
if
self
.
is_locked
:
self
.
release
()
def
__del__
(
self
):
"""
Make sure that the FileLock instance doesn
'
t leave a lockfile
lying around.
"""
self
.
release
()
This diff is collapsed.
Click to expand it.
proxy_template.conf
0 → 100644
+
6
−
0
View file @
d5dcb4f1
[
ceilometer
]
server
=
tenant
=
username
=
password
=
port
=
This diff is collapsed.
Click to expand it.
token_backup_template
0 → 100644
+
3
−
0
View file @
d5dcb4f1
[token]
id =
expires =
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment