Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
AURA
engine
Commits
04ad709c
"src/scheduling/models.py" did not exist on "f6f0af4e60bfa55b0445ad5011f81411e52535d8"
Commit
04ad709c
authored
2 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Add new @synchronized decorator
#65
parent
3953e9b2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/aura_engine/base/lang.py
+28
-4
28 additions, 4 deletions
src/aura_engine/base/lang.py
with
28 additions
and
4 deletions
src/aura_engine/base/lang.py
+
28
−
4
View file @
04ad709c
...
...
@@ -18,16 +18,40 @@
"""
A collection of
Python
meta-programming and language utilities.
A collection of meta-programming and language utilities.
"""
import
inspect
from
functools
import
wraps
from
multiprocessing
import
Lock
def
synchronized
(
member
):
"""
@synchronized decorator.
Lock a method for synchronized access only.
"""
mutex
=
Lock
()
@wraps
(
member
)
def
wrapper
(
*
args
,
**
vargs
):
result
=
""
try
:
mutex
.
acquire
()
result
=
member
(
*
args
,
**
vargs
)
mutex
.
release
()
except
Exception
as
e
:
mutex
.
release
()
raise
e
return
result
return
wrapper
def
private
(
member
):
"""
@private
D
ecorator.
@private
d
ecorator.
Use this to annotate your methods for private-visibility.
...
...
@@ -35,7 +59,7 @@ def private(member):
"""
@wraps
(
member
)
def
wrapper
(
*
args
):
def
wrapper
(
*
args
,
**
vargs
):
me
=
member
.
__name__
stack
=
inspect
.
stack
()
calling_class
=
stack
[
1
][
0
].
f_locals
[
"
self
"
].
__class__
.
__name__
...
...
@@ -44,7 +68,7 @@ def private(member):
msg
=
f
'"
{
me
}
(..)
"
called by
"
{
calling_class
}
.
{
calling_method
}
(..)
"
is private
'
print
(
msg
)
raise
Exception
(
msg
)
return
member
(
*
args
)
return
member
(
*
args
,
**
vargs
)
return
wrapper
...
...
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