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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
1211afd2
Commit
1211afd2
authored
Jun 22, 2015
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Follow python2.7
parent
4401cb4f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
720 additions
and
0 deletions
+720
-0
erp5/util/taskdistribution/__init__.py
erp5/util/taskdistribution/__init__.py
+560
-0
product/ERP5Type/patches/ExternalMethod.py
product/ERP5Type/patches/ExternalMethod.py
+135
-0
product/ERP5Type/patches/_transaction.py
product/ERP5Type/patches/_transaction.py
+25
-0
No files found.
erp5/util/taskdistribution/__init__.py
0 → 100644
View file @
1211afd2
This diff is collapsed.
Click to expand it.
product/ERP5Type/patches/ExternalMethod.py
0 → 100644
View file @
1211afd2
##############################################################################
#
# Copyright (c) 2002 Zope Foundation and Contributors.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
from
inspect
import
getargs
from
Products.ExternalMethod.ExternalMethod
import
*
if
1
:
def
getFunction
(
self
,
reload
=
False
,
f
=
None
):
"""
Patch to get ZODB Component Extension function if available, otherwise
fallback on filesystem Extension
Patch2: do not use hasattr.
"""
if
f
is
None
:
try
:
component_module
=
__import__
(
'erp5.component.extension.'
+
self
.
_module
,
fromlist
=
[
'erp5.component.extension'
],
level
=
0
)
except
ImportError
:
f
=
getObject
(
self
.
_module
,
self
.
_function
,
reload
)
else
:
f
=
getattr
(
component_module
,
self
.
_function
)
ff
=
getattr
(
f
,
'im_func'
,
f
)
self
.
_v_func_defaults
=
ff
.
func_defaults
self
.
_v_func_code
=
FuncCode
(
ff
,
f
is
not
ff
)
self
.
_v_f
=
f
return
f
ExternalMethod
.
getFunction
=
getFunction
ExternalMethod_reloadIfChanged
=
ExternalMethod
.
reloadIfChanged
def
reloadIfChanged
(
self
):
try
:
component_module
=
__import__
(
'erp5.component.extension.'
+
self
.
_module
,
fromlist
=
[
'erp5.component.extension'
],
level
=
0
)
except
ImportError
:
return
ExternalMethod_reloadIfChanged
(
self
)
ExternalMethod
.
reloadIfChanged
=
reloadIfChanged
def
__call__
(
self
,
*
args
,
**
kw
):
"""Call an ExternalMethod
Calling an External Method is roughly equivalent to calling
the original actual function from Python. Positional and
keyword parameters can be passed as usual. Note however that
unlike the case of a normal Python method, the "self" argument
must be passed explicitly. An exception to this rule is made
if:
- The supplied number of arguments is one less than the
required number of arguments, and
- The name of the function
\
'
s first argument is 'self'.
In this case, the URL parent of the object is supplied as the
first argument.
Monkey patches:
- call ZODB Component Extension, by trying first to import ZODB
Component Extension if available, otherwise fallback on filesystem
Extension
- access volatile attribute safely
- fix magic "self" argument when positional arguments get their values
from kw.
"""
import
erp5.component.extension
component_module
=
erp5
.
component
.
extension
.
find_load_module
(
self
.
_module
)
if
component_module
is
not
None
:
f
=
getattr
(
component_module
,
self
.
_function
)
else
:
import
Globals
# for data
filePath
=
self
.
filepath
()
if
filePath
==
None
:
raise
RuntimeError
,
\
"external method could not be called "
\
"because it is None"
if
not
os
.
path
.
exists
(
filePath
):
raise
RuntimeError
,
\
"external method could not be called "
\
"because the file does not exist"
if
Globals
.
DevelopmentMode
:
self
.
reloadIfChanged
()
f
=
None
_v_f
=
getattr
(
self
,
'_v_f'
,
None
)
if
not
_v_f
or
(
f
and
f
is
not
_v_f
):
f
=
self
.
getFunction
(
f
=
f
)
else
:
f
=
_v_f
__traceback_info__
=
args
,
kw
,
self
.
_v_func_defaults
# XXX: We'd like to use inspect.getcallargs instead of try..except.
# However, for the same reason as we use getargs instead of
# getargspec, we need something that works for any callable
# providing func_code & func_default (not only functions).
try
:
return
f
(
*
args
,
**
kw
)
except
TypeError
,
v
:
tb
=
sys
.
exc_info
()[
2
]
try
:
func_args
,
func_varargs
,
_
=
getargs
(
f
.
func_code
)
by_kw
=
set
(
kw
)
if
f
.
func_defaults
:
by_kw
.
update
(
func_args
[
-
len
(
f
.
func_defaults
):])
if
func_args
[
0
]
==
'self'
and
'self'
not
in
kw
and
(
func_varargs
or
len
(
set
(
func_args
[
len
(
args
):]
).
difference
(
by_kw
))
==
1
):
return
f
(
self
.
aq_parent
.
this
(),
*
args
,
**
kw
)
raise
TypeError
,
v
,
tb
finally
:
tb
=
None
ExternalMethod
.
__call__
=
__call__
product/ERP5Type/patches/_transaction.py
0 → 100644
View file @
1211afd2
############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
############################################################################
# XXX: This file starts with an underscore because imports are relative
# by default.
from
time
import
time
from
transaction
import
_manager
def
_new_transaction
(
txn
,
synchs
):
txn
.
start_time
=
time
()
if
synchs
:
synchs
.
map
(
lambda
s
:
s
.
newTransaction
(
txn
))
_manager
.
_new_transaction
=
_new_transaction
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