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
Nikola Balog
erp5
Commits
26676fb8
Commit
26676fb8
authored
Nov 30, 2023
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Site: add erp5_sql_isolated_connection.
parent
93b3bdc6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
6 deletions
+27
-6
product/ERP5/ERP5Site.py
product/ERP5/ERP5Site.py
+12
-4
product/ERP5Type/tests/ERP5TypeTestCase.py
product/ERP5Type/tests/ERP5TypeTestCase.py
+2
-1
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+13
-1
No files found.
product/ERP5/ERP5Site.py
View file @
26676fb8
...
...
@@ -50,6 +50,7 @@ from Products.ERP5Type.mixin.response_header_generator import ResponseHeaderGene
from
zLOG
import
LOG
,
INFO
,
WARNING
,
ERROR
from
zExceptions
import
BadRequest
import
os
import
re
import
warnings
import
transaction
from
App.config
import
getConfiguration
...
...
@@ -84,6 +85,7 @@ def manage_addERP5Site(self,
validate_email
=
0
,
erp5_catalog_storage
=
'erp5_mysql_innodb_catalog'
,
erp5_sql_connection_string
=
default_sql_connection_string
,
erp5_sql_read_committed_connection_string
=
default_sql_connection_string
,
cmf_activity_sql_connection_string
=
default_sql_connection_string
,
bt5_repository_url
=
''
,
bt5
=
''
,
...
...
@@ -103,6 +105,7 @@ def manage_addERP5Site(self,
create_userfolder
,
erp5_catalog_storage
,
erp5_sql_connection_string
,
erp5_sql_read_committed_connection_string
,
cmf_activity_sql_connection_string
,
bt5_repository_url
,
bt5
,
...
...
@@ -2114,6 +2117,7 @@ class ERP5Generator(PortalGenerator):
create_userfolder
,
erp5_catalog_storage
,
erp5_sql_connection_string
,
erp5_sql_read_committed_connection_string
,
cmf_activity_sql_connection_string
,
bt5_repository_url
,
bt5
,
...
...
@@ -2138,11 +2142,13 @@ class ERP5Generator(PortalGenerator):
# Return the fully wrapped object.
p
=
parent
.
this
().
_getOb
(
id
)
erp5_sql_deferred_connection_string
=
erp5_sql_connection_string
erp5_sql_deferred_connection_string
=
erp5_sql_
read_committed_
connection_string
p
.
_setProperty
(
'erp5_catalog_storage'
,
erp5_catalog_storage
,
'string'
)
p
.
_setProperty
(
'erp5_sql_connection_string'
,
erp5_sql_connection_string
,
'string'
)
p
.
_setProperty
(
'erp5_sql_read_committed_connection_string'
,
erp5_sql_read_committed_connection_string
,
'string'
)
p
.
_setProperty
(
'erp5_sql_deferred_connection_string'
,
erp5_sql_deferred_connection_string
,
'string'
)
p
.
_setProperty
(
'cmf_activity_sql_connection_string'
,
...
...
@@ -2291,7 +2297,7 @@ class ERP5Generator(PortalGenerator):
# The only difference compared to activity connection is the
# minus prepended to the connection string.
if
id
==
'erp5_sql_transactionless_connection'
:
connection_string
=
'-'
+
p
.
cmf_activity_sql_connection_string
connection_string
=
re
.
sub
(
r'((?:[%*][^ ]+ )*)(![^ ]+ )?(.+)'
,
r'\1-\3'
,
p
.
cmf_activity_sql_connection_string
)
else
:
connection_string
=
getattr
(
p
,
id
+
'_string'
)
manage_add
(
id
,
title
,
connection_string
,
**
kw
)
...
...
@@ -2302,6 +2308,8 @@ class ERP5Generator(PortalGenerator):
manage_add
=
p
.
manage_addProduct
[
'ZMySQLDA'
].
manage_addZMySQLConnection
addSQLConnection
(
'erp5_sql_connection'
,
'ERP5 SQL Server Connection'
)
addSQLConnection
(
'erp5_sql_read_committed_connection'
,
'ERP5 SQL Server Isolated Connection'
)
addSQLConnection
(
'erp5_sql_deferred_connection'
,
'ERP5 SQL Server Deferred Connection'
,
deferred
=
True
)
...
...
@@ -2603,8 +2611,8 @@ def initialize(self):
from
Products.ZMySQLDA.db
import
DB
,
OperationalError
def
addERP5Site
(
REQUEST
):
default_kw
=
inspect
.
getcallargs
(
manage_addERP5Site
,
None
,
''
)
db
=
(
kw
.
get
(
'erp5_sql_connection_string'
)
or
default_kw
[
'erp5_sql_connection_string'
])
db
=
(
kw
.
get
(
'erp5_sql_
read_committed_
connection_string'
)
or
default_kw
[
'erp5_sql_
read_committed_
connection_string'
])
# The lock is to avoid that multiple zopes try to create a site when
# they're started at the same time, because this is a quite long operation
# (-> high probably of conflict with a lot of wasted CPU).
...
...
product/ERP5Type/tests/ERP5TypeTestCase.py
View file @
26676fb8
...
...
@@ -101,6 +101,7 @@ def _getConnectionStringDict():
connection_string_dict
=
{}
default
=
os
.
environ
.
get
(
'erp5_sql_connection_string'
)
for
connection
in
(
'erp5_sql_connection_string'
,
'erp5_sql_read_committed_connection_string'
,
'erp5_sql_deferred_connection_string'
,
# default value for transactionless is derived from value
# for cmf_activity, so process it last
...
...
@@ -111,7 +112,7 @@ def _getConnectionStringDict():
connection
=
'erp5_sql_transactionless_connection_string'
if
os
.
environ
.
get
(
connection
,
connection_string
):
connection_string_dict
[
connection
]
=
\
os
.
environ
.
get
(
connection
,
'-'
+
connection_string
)
os
.
environ
.
get
(
connection
,
re
.
sub
(
r'((?:[%*][^ ]+ )*)(![^ ]+ )?(.+)'
,
r'\1-\3'
,
connection_string
)
)
return
connection_string_dict
def
_getConversionServerUrlList
():
...
...
product/ERP5Type/tests/runUnitTest.py
View file @
26676fb8
...
...
@@ -58,10 +58,13 @@ Options:
--erp5_sql_connection_string=STRING
ZSQL Connection string for erp5_sql_connection, by
default, it will use "test test"
--erp5_sql_read_committed_connection_string=STRING
ZSQL Connection string for erp5_sql_read_committed_connection
(if unset, defaults to erp5_sql_connection_string with "!READ-COMMITTED")
--cmf_activity_sql_connection_string=STRING
ZSQL Connection string for
cmf_activity_sql_connection (if unset, defaults to
erp5_sql_connection_string)
erp5_sql_
read_committed_
connection_string)
--extra_sql_connection_string_list=STRING
Used when 2 or more ZSQL connection strings are
needed. By defaut, it will take the last four
...
...
@@ -744,6 +747,7 @@ def main(argument_list=None):
"firefox_bin="
,
"xvfb_bin="
,
"recreate_catalog="
,
"erp5_sql_connection_string="
,
"erp5_sql_read_committed_connection_string="
,
"cmf_activity_sql_connection_string="
,
"extra_sql_connection_string_list="
,
"conversion_server_url="
,
...
...
@@ -824,6 +828,8 @@ def main(argument_list=None):
os
.
environ
[
"erp5_tests_recreate_catalog"
]
=
arg
elif
opt
==
"--erp5_sql_connection_string"
:
os
.
environ
[
"erp5_sql_connection_string"
]
=
arg
elif
opt
==
"--erp5_sql_read_committed_connection_string"
:
os
.
environ
[
"erp5_sql_read_committed_connection_string"
]
=
arg
elif
opt
==
"--cmf_activity_sql_connection_string"
:
os
.
environ
[
"cmf_activity_sql_connection_string"
]
=
arg
elif
opt
==
"--extra_sql_connection_string_list"
:
...
...
@@ -898,6 +904,12 @@ def main(argument_list=None):
elif
opt
==
"--with_wendelin_core"
:
os
.
environ
[
"with_wendelin_core"
]
=
"1"
if
"erp5_sql_read_committed_connection_string"
not
in
os
.
environ
and
"erp5_sql_connection_string"
in
os
.
environ
:
os
.
environ
[
"erp5_sql_read_committed_connection_string"
]
=
re
.
sub
(
r'((?:[%*][^ ]+ )*)(![^ ]+ )?(.+)'
,
r'\1!READ-COMMITTED \3'
,
os
.
environ
[
"erp5_sql_connection_string"
])
if
"cmf_activity_sql_connection_string"
not
in
os
.
environ
and
"erp5_sql_read_committed_connection_string"
in
os
.
environ
:
os
.
environ
[
"cmf_activity_sql_connection_string"
]
=
os
.
environ
[
"erp5_sql_read_committed_connection_string"
]
bt5_path_list
+=
filter
(
None
,
os
.
environ
.
get
(
"erp5_tests_bt5_path"
,
""
).
split
(
','
))
valid_path_list
=
[]
...
...
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