Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
Kirill Smelkov
ZODB
Commits
6e5bb8e1
Commit
6e5bb8e1
authored
Jan 15, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add minimal progress on debugger/recorder for ZEO.
Handing off to Barry.
parent
3b6c3dcb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
97 additions
and
1 deletion
+97
-1
src/ZEO/DebugServer.py
src/ZEO/DebugServer.py
+91
-0
src/ZEO/runsvr.py
src/ZEO/runsvr.py
+6
-1
No files found.
src/ZEO/DebugServer.py
0 → 100644
View file @
6e5bb8e1
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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
#
##############################################################################
"""A debugging version of the server that records network activity."""
from
__future__
import
nested_scopes
import
struct
import
time
from
ZEO.StorageServer
import
StorageServer
,
ZEOStorage
,
log
from
ZEO.zrpc.server
import
ManagedServerConnection
# a bunch of codes
NEW_CONN
=
1
CLOSE_CONN
=
2
DATA
=
3
ERROR
=
4
class
DebugManagedServerConnection
(
ManagedServerConnection
):
def
__init__
(
self
,
sock
,
addr
,
obj
,
mgr
):
# mgr is the DebugServer instance
self
.
mgr
=
mgr
self
.
__super_init
(
sock
,
addr
,
obj
)
record_id
=
mgr
.
_record_connection
(
addr
)
self
.
_record
=
lambda
code
,
data
:
mgr
.
_record
(
record_id
,
code
,
data
)
self
.
obj
.
notifyConnected
(
self
)
def
close
(
self
):
self
.
_record
(
CLOSE_CONN
,
""
)
ManagedServerConnection
.
close
(
self
)
# override the lowest-level of asyncore's connection
def
recv
(
self
,
buffer_size
):
try
:
data
=
self
.
socket
.
recv
(
buffer_size
)
if
not
data
:
# a closed connection is indicated by signaling
# a read condition, and having recv() return 0.
self
.
handle_close
()
return
''
else
:
self
.
_record
(
DATA
,
data
)
return
data
except
socket
.
error
,
why
:
# winsock sometimes throws ENOTCONN
self
.
_record
(
ERROR
,
why
)
if
why
[
0
]
in
[
ECONNRESET
,
ENOTCONN
,
ESHUTDOWN
]:
self
.
handle_close
()
return
''
else
:
raise
socket
.
error
,
why
class
DebugServer
(
StorageServer
):
ZEOStorageClass
=
DebugZEOStorage
ManagedServerConnectionClass
=
DebugManagerConnection
def
__init__
(
self
,
*
args
,
**
kwargs
):
StorageServer
.
__init__
(
*
args
,
**
kwargs
)
self
.
_setup_record
(
kwargs
[
"record"
])
self
.
_conn_counter
=
1
def
_setup_record
(
self
,
path
):
try
:
self
.
_recordfile
=
open
(
path
,
"ab"
)
except
IOError
,
msg
:
self
.
_recordfile
=
None
log
(
"failed to open recordfile %s: %s"
%
(
path
,
msg
))
def
_record_connection
(
self
,
addr
):
cid
=
self
.
_conn_counter
self
.
_conn_counter
+=
1
self
.
_record
(
cid
,
NEW_CONN
,
str
(
addr
))
return
cid
def
_record
(
self
,
conn
,
code
,
data
):
s
=
struct
.
pack
(
">iii"
,
code
,
time
.
time
(),
len
(
data
))
+
data
self
.
_recordfile
.
write
(
s
)
src/ZEO/runsvr.py
View file @
6e5bb8e1
...
...
@@ -23,6 +23,7 @@ Options:
-f/--filename FILENAME -- filename for FileStorage
-h/--help -- print this usage message and exit
-m/--monitor ADDRESS -- address of monitor server
-r/--record -- path of file to record low-level network activity
Unless -C is specified, -a and -f are required.
"""
...
...
@@ -176,18 +177,20 @@ class ZEOOptions(Options):
transaction_timeout
=
None
invalidation_queue_size
=
None
monitor_address
=
None
record
=
None
family
=
None
# set by -a; AF_UNIX or AF_INET
address
=
None
# set by -a; string or (host, port)
storages
=
None
# set by -f
_short_options
=
"a:C:f:hm:"
_short_options
=
"a:C:f:hm:
r:
"
_long_options
=
[
"address="
,
"configuration="
,
"filename="
,
"help"
,
"monitor="
,
"record="
,
]
def
handle_option
(
self
,
opt
,
arg
):
...
...
@@ -225,6 +228,8 @@ class ZEOOptions(Options):
key
=
str
(
1
+
len
(
self
.
storages
))
conf
=
FSConfig
(
key
,
arg
)
self
.
storages
[
key
]
=
FileStorage
(
conf
)
elif
opt
in
(
"-r"
,
"--record"
):
self
.
record
=
arg
else
:
# Pass it to the base class, for --help/-h
Options
.
handle_option
(
self
,
opt
,
arg
)
...
...
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