Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EdosL0Util
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
SIPS
EdosL0Util
Commits
0579b00b
Commit
0579b00b
authored
9 years ago
by
Bruce Flynn
Browse files
Options
Downloads
Patches
Plain Diff
Fix offset issue in packet pruner
parent
4a9ddd3b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/prune_packets.py
+38
-0
38 additions, 0 deletions
scripts/prune_packets.py
with
38 additions
and
0 deletions
scripts/prune_packets.py
0 → 100755
+
38
−
0
View file @
0579b00b
#!/usr/bin/env python
"""
Prune all the non-header data out of a PDS file. Usefull for geenerating test
data for CCSDS tools.
"""
import
ctypes
as
c
import
argparse
from
edosl0util
import
stream
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
parser
.
add_argument
(
'
pdsfile
'
)
parser
.
add_argument
(
'
outfile
'
)
args
=
parser
.
parse_args
()
def
pack_hdr_bytes
(
hdr
):
return
c
.
string_at
(
c
.
byref
(
hdr
),
c
.
sizeof
(
hdr
))
with
open
(
args
.
outfile
,
'
wb
'
)
as
fptr
:
idx
=
0
for
pkt
in
stream
.
PacketStream
(
open
(
args
.
pdsfile
)):
h1
=
pkt
.
_primary_header
h2
=
pkt
.
_secondary_header
if
h2
:
h1
.
data_length_minus1
=
c
.
sizeof
(
h2
)
-
1
fptr
.
write
(
h1
)
if
pkt
.
stamp
:
h2
.
packet_count
=
0
fptr
.
write
(
h2
)
else
:
h1
.
data_length_minus1
=
0
fptr
.
write
(
h1
)
fptr
.
write
(
'
x
'
)
idx
+=
1
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