Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
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
Carlos Ramos Carreño
neoppod
Commits
66743daa
Commit
66743daa
authored
Jun 15, 2017
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
neolog: new --decompress option
parent
4b34d910
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
7 deletions
+53
-7
neo/scripts/neolog.py
neo/scripts/neolog.py
+53
-7
No files found.
neo/scripts/neolog.py
View file @
66743daa
...
...
@@ -20,6 +20,7 @@
import
bz2
,
gzip
,
errno
,
optparse
,
os
,
signal
,
sqlite3
,
sys
,
time
from
bisect
import
insort
from
logging
import
getLevelName
from
zlib
import
decompress
comp_dict
=
dict
(
bz2
=
bz2
.
BZ2File
,
gz
=
gzip
.
GzipFile
)
...
...
@@ -28,10 +29,10 @@ class Log(object):
_log_id
=
_packet_id
=
-
1
_protocol_date
=
None
def
__init__
(
self
,
db_path
,
decode
_all
=
False
,
date_format
=
None
,
def
__init__
(
self
,
db_path
,
decode
=
0
,
date_format
=
None
,
filter_from
=
None
,
node_column
=
True
,
node_list
=
None
):
self
.
_date_format
=
'%F %T'
if
date_format
is
None
else
date_format
self
.
_decode
_all
=
decode_all
self
.
_decode
=
decode
self
.
_filter_from
=
filter_from
self
.
_node_column
=
node_column
self
.
_node_list
=
node_list
...
...
@@ -94,6 +95,30 @@ class Log(object):
exec
bz2
.
decompress
(
text
)
in
g
for
x
in
'uuid_str'
,
'Packets'
,
'PacketMalformedError'
:
setattr
(
self
,
x
,
g
[
x
])
x
=
{}
if
self
.
_decode
>
1
:
PStruct
=
g
[
'PStruct'
]
PBoolean
=
g
[
'PBoolean'
]
def
hasData
(
item
):
items
=
item
.
_items
for
i
,
item
in
enumerate
(
items
):
if
isinstance
(
item
,
PStruct
):
j
=
hasData
(
item
)
if
j
:
return
(
i
,)
+
j
elif
(
isinstance
(
item
,
PBoolean
)
and
item
.
_name
==
'compression'
and
i
+
2
<
len
(
items
)
and
items
[
i
+
2
].
_name
==
'data'
):
return
i
,
for
p
in
self
.
Packets
.
itervalues
():
if
p
.
_fmt
is
not
None
:
path
=
hasData
(
p
.
_fmt
)
if
path
:
assert
not
hasattr
(
p
,
'_neolog'
),
p
x
[
p
.
_code
]
=
path
self
.
_getDataPath
=
x
.
get
try
:
self
.
_next_protocol
,
=
q
(
"SELECT date FROM protocol WHERE date>?"
,
(
date
,)).
next
()
...
...
@@ -128,7 +153,7 @@ class Log(object):
msg
=
[
'#0x%04x %-30s %s'
%
(
msg_id
,
msg
,
peer
)]
if
body
is
not
None
:
log
=
getattr
(
p
,
'_neolog'
,
None
)
if
log
or
self
.
_decode
_all
:
if
log
or
self
.
_decode
:
p
=
p
()
p
.
_id
=
msg_id
p
.
_body
=
body
...
...
@@ -140,10 +165,28 @@ class Log(object):
if
log
:
args
,
extra
=
log
(
*
args
)
msg
+=
extra
if
args
and
self
.
_decode_all
:
else
:
path
=
self
.
_getDataPath
(
code
)
if
path
:
args
=
self
.
_decompress
(
args
,
path
)
if
args
and
self
.
_decode
:
msg
[
0
]
+=
'
\
t
| '
+
repr
(
args
)
return
date
,
name
,
'PACKET'
,
msg
def
_decompress
(
self
,
args
,
path
):
if
args
:
args
=
list
(
args
)
i
=
path
[
0
]
path
=
path
[
1
:]
if
path
:
args
[
i
]
=
self
.
_decompress
(
args
[
i
],
path
)
else
:
data
=
args
[
i
+
2
]
if
args
[
i
]:
data
=
decompress
(
data
)
args
[
i
:
i
+
3
]
=
(
len
(
data
),
data
),
return
tuple
(
args
)
def
emit_many
(
log_list
):
log_list
=
[(
log
,
iter
(
log
).
next
)
for
log
in
log_list
]
...
...
@@ -181,7 +224,9 @@ def emit_many(log_list):
def
main
():
parser
=
optparse
.
OptionParser
()
parser
.
add_option
(
'-a'
,
'--all'
,
action
=
"store_true"
,
help
=
'decode all packets'
)
help
=
'decode body of packets'
)
parser
.
add_option
(
'-A'
,
'--decompress'
,
action
=
"store_true"
,
help
=
'decompress data when decode body of packets (implies --all)'
)
parser
.
add_option
(
'-d'
,
'--date'
,
metavar
=
'FORMAT'
,
help
=
'custom date format, according to strftime(3)'
)
parser
.
add_option
(
'-f'
,
'--follow'
,
action
=
"store_true"
,
...
...
@@ -213,8 +258,9 @@ def main():
node_column
=
False
except
ValueError
:
node_column
=
True
log_list
=
[
Log
(
db_path
,
options
.
all
,
options
.
date
,
filter_from
,
node_column
,
node_list
)
log_list
=
[
Log
(
db_path
,
2
if
options
.
decompress
else
1
if
options
.
all
else
0
,
options
.
date
,
filter_from
,
node_column
,
node_list
)
for
db_path
in
args
]
if
options
.
follow
:
try
:
...
...
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