Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laurent S
erp5
Commits
85af32bd
Commit
85af32bd
authored
Nov 29, 2011
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make Workflow.disable thread-safe
parent
200bf7cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
product/ERP5Type/Base.py
product/ERP5Type/Base.py
+14
-1
No files found.
product/ERP5Type/Base.py
View file @
85af32bd
...
...
@@ -31,7 +31,7 @@ from struct import unpack
from
copy
import
copy
import
warnings
import
types
import
threading
import
thread
,
thread
ing
from
Products.ERP5Type.Globals
import
InitializeClass
,
DTMLFile
from
AccessControl
import
ClassSecurityInfo
...
...
@@ -266,11 +266,19 @@ class WorkflowMethod(Method):
# Return result finally
return
result
# Interactions should not be disabled during normal operation. Only in very
# rare and specific cases like data migration. That's why it is implemented
# with temporary monkey-patching, instead of slowing down __call__ with yet
# another condition.
_do_interaction
=
__call__
_no_interaction_lock
=
threading
.
Lock
()
_no_interaction_log
=
None
_no_interaction_thread_id
=
None
def
_no_interaction
(
self
,
*
args
,
**
kw
):
if
WorkflowMethod
.
_no_interaction_thread_id
!=
thread
.
get_ident
():
return
self
.
_do_interaction
(
*
args
,
**
kw
)
log
=
"skip interactions for %r"
%
args
[
0
]
if
WorkflowMethod
.
_no_interaction_log
!=
log
:
WorkflowMethod
.
_no_interaction_log
=
log
...
...
@@ -281,12 +289,17 @@ class WorkflowMethod(Method):
@
simple_decorator
def
disable
(
func
):
def
wrapper
(
*
args
,
**
kw
):
thread_id
=
thread
.
get_ident
()
if
WorkflowMethod
.
_no_interaction_thread_id
==
thread_id
:
return
func
(
*
args
,
**
kw
)
WorkflowMethod
.
_no_interaction_lock
.
acquire
()
try
:
WorkflowMethod
.
_no_interaction_thread_id
=
thread_id
WorkflowMethod
.
__call__
=
WorkflowMethod
.
__dict__
[
'_no_interaction'
]
return
func
(
*
args
,
**
kw
)
finally
:
WorkflowMethod
.
__call__
=
WorkflowMethod
.
__dict__
[
'_do_interaction'
]
WorkflowMethod
.
_no_interaction_thread_id
=
None
WorkflowMethod
.
_no_interaction_lock
.
release
()
return
wrapper
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment