Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
refscrub
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
refscrub
Commits
8aba968a
Commit
8aba968a
authored
4 years ago
by
Maeva Pourpoint
Browse files
Options
Downloads
Patches
Plain Diff
Code cleanup to conform to PEP8 style guide
parent
0778756b
No related branches found
No related tags found
1 merge request
!5
Formatting and cookiecutter files cleanup
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
refscrub/refscrub.py
+30
-14
30 additions, 14 deletions
refscrub/refscrub.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
31 additions
and
15 deletions
refscrub/refscrub.py
+
30
−
14
View file @
8aba968a
...
...
@@ -13,13 +13,22 @@ August 2018
Updates to work on both Python 2 & 3.
Code cleanup to match PEP 8.
Cleanup global vars.
Maeva Pourpoint
August 2020
Updates to work under Python 3.
Unit tests to ensure basic functionality.
Code cleanup to conform to the PEP8 style guide.
Directory cleanup (remove unused files introduced by Cookiecutter).
Packaged with conda.
"""
import
sys
import
argparse
import
struct
import
sys
from
os.path
import
basename
,
getsize
,
isfile
PROG_VERSION
=
'
20
18.228
'
PROG_VERSION
=
'
20
20.216
'
VERBOSE
=
False
EXTRACT
=
False
SUMMARY_FILE
=
'
scrubsum.txt
'
...
...
@@ -74,9 +83,11 @@ class SNseen(dict):
class
RTPacket
:
RTstruct
=
struct
.
Struct
(
'
2c1B1B2B6B2B2B
'
)
# Define the packet types as byte literals, since that is what the above structure will cause the type field
# do be decoded as. Without this, they will not match below.
packet_types
=
(
b
'
AD
'
,
b
'
CD
'
,
b
'
DS
'
,
b
'
DT
'
,
b
'
EH
'
,
b
'
ET
'
,
b
'
OM
'
,
b
'
SH
'
,
b
'
SC
'
)
# Define the packet types as byte literals, since that is what the above
# structure will cause the type field do be decoded as. Without this, they
# will not match below.
packet_types
=
(
b
'
AD
'
,
b
'
CD
'
,
b
'
DS
'
,
b
'
DT
'
,
b
'
EH
'
,
b
'
ET
'
,
b
'
OM
'
,
b
'
SH
'
,
b
'
SC
'
)
seen
=
SNseen
()
goodpkts
=
0
IOErrorCount
=
0
...
...
@@ -111,11 +122,13 @@ class RTPacket:
print
(
e
)
def
settimestring
(
self
):
self
.
timestring
=
"
%(year)0.2d:%(day)0.3d:%(hour)0.2d:%(min)0.2d:%(sec)0.2d.%(millisec)0.3d
"
%
self
.
__dict__
self
.
timestring
=
(
"
%(year)0.2d:%(day)0.3d:%(hour)0.2d:%(min)0.2d:
"
"
%(sec)0.2d.%(millisec)0.3d
"
%
self
.
__dict__
)
def
isvalid
(
self
):
"""
Returns True if a valid reftek packet (headers parse well and are valid)
Returns True if a valid reftek packet (headers parse well and are
valid)
Also populates the objects attributes SN, time, etc.
"""
...
...
@@ -128,11 +141,12 @@ class RTPacket:
self
.
expnum
=
int
(
"
%0.2X
"
%
tup
[
2
])
self
.
year
=
int
(
"
%0.2X
"
%
tup
[
3
])
self
.
sn
=
"
%0.2X%0.2X
"
%
(
tup
[
4
],
tup
[
5
])
assert
'
9001
'
<=
self
.
sn
,
"
BAD SN
"
assert
self
.
sn
>=
'
9001
'
,
"
BAD SN
"
assert
self
.
sn
<=
'
FFFF
'
,
"
BAD SN
"
time
=
"
%0.2X%0.2X%0.2X%0.2X%0.2X%0.2X
"
%
tup
[
6
:
12
]
self
.
day
,
self
.
hour
,
self
.
min
,
self
.
sec
,
self
.
millisec
=
\
int
(
time
[:
3
]),
int
(
time
[
3
:
5
]),
int
(
time
[
5
:
7
]),
int
(
time
[
7
:
9
]),
int
(
time
[
9
:])
int
(
time
[:
3
]),
int
(
time
[
3
:
5
]),
int
(
time
[
5
:
7
]),
int
(
time
[
7
:
9
]),
int
(
time
[
9
:])
assert
self
.
day
<=
366
,
"
BAD TIME
"
assert
self
.
hour
<=
24
,
"
BAD TIME
"
assert
self
.
min
<=
60
,
"
BAD TIME
"
...
...
@@ -199,8 +213,9 @@ def readfile(infile):
infile
.
seek
(
-
1023
,
1
)
print
(
summary
(
infile
))
# commented out as when run with many files as input like a cf dir the closed fh's need to be written to and isn't
# smart enough to be opened RTPacket.seen.close_fhs()
# commented out as when run with many files as input like a cf dir the
# closed fh's need to be written to and isn't smart enough to be opened
# RTPacket.seen.close_fhs()
def
summary
(
infile
):
...
...
@@ -208,7 +223,8 @@ def summary(infile):
offstring
=
"
%6s: %12d
\n
"
s
=
offstring
%
(
"
OFFSET
"
,
infile
.
tell
())
s
+=
offstring
%
(
"
OF
"
,
FILESIZE
)
s
+=
"
Good packets: %d = %8.2fMB
\n
"
%
(
RTPacket
.
goodpkts
,
RTPacket
.
goodpkts
/
1024.0
)
s
+=
"
Good packets: %d = %8.2fMB
\n
"
%
(
RTPacket
.
goodpkts
,
RTPacket
.
goodpkts
/
1024.0
)
s
+=
"
IOErrors: %d
\n
"
%
RTPacket
.
IOErrorCount
s
+=
str
(
RTPacket
.
seen
)
+
'
\n
'
return
s
...
...
@@ -259,13 +275,13 @@ def main():
PREFIX
=
basename
(
infilename
)
print
(
"
Using prefix %s
"
%
PREFIX
)
FILESIZE
=
getsize
(
infilename
)
# Must open the file in binary mode or else we will have unicode issues when reading.
# Must open the file in binary mode or else we will have unicode issues
# when reading.
with
open
(
infilename
,
"
rb
"
)
as
infile
:
readfile
(
infile
)
if
args
.
SUMMARY
:
summaryfh
.
write
(
infilename
+
'
,
'
+
PREFIX
+
'
\n
'
)
summaryfh
.
write
(
summary
(
infile
))
print
(
"
----------------------------------------
"
)
if
isfile
(
SUMMARY_FILE
):
summaryfh
.
close
()
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
8aba968a
...
...
@@ -31,7 +31,7 @@ setup(
],
},
install_requires
=
[],
setup_requires
=
[],
setup_requires
=
[],
extras_require
=
{
'
dev
'
:
[
'
pip
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment