Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
772221b8
Commit
772221b8
authored
Aug 08, 2016
by
Jim Fulton
Committed by
GitHub
Aug 08, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #69 from zopefoundation/dont-pickle-errors
Dont pickle errors
parents
c087f634
2c7a04f7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
13 deletions
+77
-13
src/ZEO/Exceptions.py
src/ZEO/Exceptions.py
+4
-0
src/ZEO/asyncio/client.py
src/ZEO/asyncio/client.py
+67
-10
src/ZEO/asyncio/server.py
src/ZEO/asyncio/server.py
+6
-3
No files found.
src/ZEO/Exceptions.py
View file @
772221b8
...
...
@@ -37,3 +37,7 @@ class AuthError(StorageError):
class
ProtocolError
(
ClientStorageError
):
"""A client contacted a server with an incomparible protocol
"""
class
ServerException
(
ClientStorageError
):
"""
"""
src/ZEO/asyncio/client.py
View file @
772221b8
...
...
@@ -5,7 +5,7 @@ if PY3:
else
:
import
trollius
as
asyncio
from
ZEO.Exceptions
import
ClientDisconnected
from
ZEO.Exceptions
import
ClientDisconnected
,
ServerException
import
concurrent.futures
import
functools
import
logging
...
...
@@ -208,15 +208,22 @@ class Protocol(base.Protocol):
msgid
,
async
,
name
,
args
=
decode
(
data
)
if
name
==
'.reply'
:
future
=
self
.
futures
.
pop
(
msgid
)
if
(
isinstance
(
args
,
tuple
)
and
len
(
args
)
>
1
and
if
(
async
):
# ZEO 5 exception
class_
,
args
=
args
factory
=
exc_factories
.
get
(
class_
)
if
factory
:
exc
=
factory
(
class_
,
args
)
if
not
isinstance
(
exc
,
unlogged_exceptions
):
logger
.
error
(
"%s from server: %s:%s"
,
self
.
name
,
class_
,
args
)
else
:
exc
=
ServerException
(
class_
,
args
)
future
.
set_exception
(
exc
)
elif
(
isinstance
(
args
,
tuple
)
and
len
(
args
)
>
1
and
type
(
args
[
0
])
==
self
.
exception_type_type
and
issubclass
(
args
[
0
],
Exception
)
):
if
not
issubclass
(
args
[
0
],
(
ZODB
.
POSException
.
POSKeyError
,
ZODB
.
POSException
.
ConflictError
,)
):
if
not
issubclass
(
args
[
0
],
unlogged_exceptions
):
logger
.
error
(
"%s from server: %s.%s:%s"
,
self
.
name
,
args
[
0
].
__module__
,
...
...
@@ -270,6 +277,56 @@ class Protocol(base.Protocol):
self
.
heartbeat_handle
=
self
.
loop
.
call_later
(
self
.
heartbeat_interval
,
self
.
heartbeat
)
def
create_Exception
(
class_
,
args
):
return
exc_classes
[
class_
](
*
args
)
def
create_ConflictError
(
class_
,
args
):
exc
=
exc_classes
[
class_
](
message
=
args
[
'message'
],
oid
=
args
[
'oid'
],
serials
=
args
[
'serials'
],
)
exc
.
class_name
=
args
.
get
(
'class_name'
)
return
exc
def
create_BTreesConflictError
(
class_
,
args
):
return
ZODB
.
POSException
.
BTreesConflictError
(
p1
=
args
[
'p1'
],
p2
=
args
[
'p2'
],
p3
=
args
[
'p3'
],
reason
=
args
[
'reason'
],
)
def
create_MultipleUndoErrors
(
class_
,
args
):
return
ZODB
.
POSException
.
MultipleUndoErrors
(
args
[
'_errs'
])
exc_classes
=
{
'builtins.KeyError'
:
KeyError
,
'builtins.TypeError'
:
TypeError
,
'exceptions.KeyError'
:
KeyError
,
'exceptions.TypeError'
:
TypeError
,
'ZODB.POSException.ConflictError'
:
ZODB
.
POSException
.
ConflictError
,
'ZODB.POSException.POSKeyError'
:
ZODB
.
POSException
.
POSKeyError
,
'ZODB.POSException.ReadConflictError'
:
ZODB
.
POSException
.
ReadConflictError
,
'ZODB.POSException.ReadOnlyError'
:
ZODB
.
POSException
.
ReadOnlyError
,
'ZODB.POSException.StorageTransactionError'
:
ZODB
.
POSException
.
StorageTransactionError
,
}
exc_factories
=
{
'builtins.KeyError'
:
create_Exception
,
'builtins.TypeError'
:
create_Exception
,
'exceptions.KeyError'
:
create_Exception
,
'exceptions.TypeError'
:
create_Exception
,
'ZODB.POSException.BTreesConflictError'
:
create_BTreesConflictError
,
'ZODB.POSException.ConflictError'
:
create_ConflictError
,
'ZODB.POSException.MultipleUndoErrors'
:
create_MultipleUndoErrors
,
'ZODB.POSException.POSKeyError'
:
create_Exception
,
'ZODB.POSException.ReadConflictError'
:
create_ConflictError
,
'ZODB.POSException.ReadOnlyError'
:
create_Exception
,
'ZODB.POSException.StorageTransactionError'
:
create_Exception
,
}
unlogged_exceptions
=
(
ZODB
.
POSException
.
POSKeyError
,
ZODB
.
POSException
.
ConflictError
)
class
Client
(
object
):
"""asyncio low-level ZEO client interface
"""
...
...
src/ZEO/asyncio/server.py
View file @
772221b8
...
...
@@ -111,9 +111,9 @@ class ServerProtocol(base.Protocol):
if
not
async
:
self
.
send_reply
(
message_id
,
result
)
def
send_reply
(
self
,
message_id
,
result
,
send_error
=
False
):
def
send_reply
(
self
,
message_id
,
result
,
send_error
=
False
,
flag
=
0
):
try
:
result
=
self
.
encode
(
message_id
,
0
,
'.reply'
,
result
)
result
=
self
.
encode
(
message_id
,
flag
,
'.reply'
,
result
)
except
Exception
:
if
isinstance
(
result
,
Delay
):
result
.
set_sender
(
message_id
,
self
)
...
...
@@ -134,7 +134,10 @@ class ServerProtocol(base.Protocol):
def
send_error
(
self
,
message_id
,
exc
,
send_error
=
False
):
"""Abstracting here so we can make this cleaner in the future
"""
self
.
send_reply
(
message_id
,
(
exc
.
__class__
,
exc
),
send_error
)
class_
=
exc
.
__class__
class_
=
"%s.%s"
%
(
class_
.
__module__
,
class_
.
__name__
)
args
=
class_
,
exc
.
__dict__
or
exc
.
args
self
.
send_reply
(
message_id
,
args
,
send_error
,
2
)
def
async
(
self
,
method
,
*
args
):
self
.
call_async
(
method
,
args
)
...
...
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