Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Duncan Macleod
gstlal
Commits
33ee92b9
Commit
33ee92b9
authored
8 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
framecpp_igwdparse: make resyncable
- still no CRC checks, though.
parent
34e90784
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
+67
-12
67 additions, 12 deletions
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
with
67 additions
and
12 deletions
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
+
67
−
12
View file @
33ee92b9
...
...
@@ -89,6 +89,9 @@ G_DEFINE_TYPE_WITH_CODE(
/* FIXME: get from framecpp */
/* number of bytes in table 5 in LIGO-T970130 */
#define SIZEOF_FRHEADER 40
/* initial character sequence (includes null terminator) */
#define FRHEADER_IDENT "IGWD"
#define SIZEOF_FRHEADER_IDENT sizeof(FRHEADER_IDENT)
/* class of FrSH structure */
#define FRSH_KLASS 1
/* name of end-of-file structure */
...
...
@@ -238,12 +241,10 @@ static gboolean start(GstBaseParse *parse)
/*
* GstBaseParse lobotomizes itself on paused-->ready transitions,
* so this stuff needs to be set here every time
*
* FIXME: see if this can now be moved to init()
*/
gst_base_parse_set_min_frame_size
(
parse
,
SIZEOF_FRHEADER
);
gst_base_parse_set_syncable
(
parse
,
FALS
E
);
gst_base_parse_set_syncable
(
parse
,
TRU
E
);
gst_base_parse_set_has_timing_info
(
parse
,
TRUE
);
/*
...
...
@@ -304,20 +305,35 @@ static GstFlowReturn handle_frame(GstBaseParse *parse, GstBaseParseFrame *frame,
while
(
element
->
filesize
<=
mapinfo
.
size
)
{
if
(
element
->
offset
==
0
)
{
guint8
*
start
;
/*
* parse header. see table 5 of LIGO-T970130.
* note: we only need the endianness and word
* sizes.
* FIXME: this doesn't check that the header is
* valid. adding code to do that could allow the
* parser to be "resyncable" (able to find frame
* files starting at an arbitrary point in a byte
* stream)
* FIXME: use framecpp to parse / validate header?
*/
g_assert_cmpuint
(
mapinfo
.
size
,
>=
,
SIZEOF_FRHEADER
);
/*
* check for identifier
*/
GST_DEBUG_OBJECT
(
element
,
"searching for
\"
"
FRHEADER_IDENT
"
\"
identifier"
);
start
=
(
guint8
*
)
memmem
(
mapinfo
.
data
,
SIZEOF_FRHEADER
,
FRHEADER_IDENT
,
SIZEOF_FRHEADER_IDENT
);
if
(
start
!=
mapinfo
.
data
)
{
if
(
start
)
{
GST_DEBUG_OBJECT
(
element
,
"found, skipping %zu bytes"
,
start
-
mapinfo
.
data
);
*
skipsize
=
start
-
mapinfo
.
data
;
}
else
{
GST_DEBUG_OBJECT
(
element
,
"not found, skipping %zu bytes"
,
SIZEOF_FRHEADER
-
SIZEOF_FRHEADER_IDENT
+
1
);
*
skipsize
=
SIZEOF_FRHEADER
-
SIZEOF_FRHEADER_IDENT
+
1
;
}
break
;
}
GST_DEBUG_OBJECT
(
element
,
"found at offset 0"
);
/*
* word sizes and endianness
*/
...
...
@@ -325,19 +341,58 @@ static GstFlowReturn handle_frame(GstBaseParse *parse, GstBaseParseFrame *frame,
element
->
sizeof_int_2
=
*
(
mapinfo
.
data
+
7
);
element
->
sizeof_int_4
=
*
(
mapinfo
.
data
+
8
);
element
->
sizeof_int_8
=
*
(
mapinfo
.
data
+
9
);
g_assert_cmpuint
(
*
(
mapinfo
.
data
+
11
),
==
,
8
);
/* sizeof(REAL_8) */
if
(
GST_READ_UINT16_LE
(
mapinfo
.
data
+
12
)
==
0x1234
)
element
->
endianness
=
G_LITTLE_ENDIAN
;
else
if
(
GST_READ_UINT16_BE
(
mapinfo
.
data
+
12
)
==
0x1234
)
element
->
endianness
=
G_BIG_ENDIAN
;
else
{
GST_ERROR_OBJECT
(
element
,
"unable to determine endianness"
);
g_assert_not_reached
();
GST_ERROR_OBJECT
(
element
,
"unable to determine endianness, skipping %zu bytes and trying again"
,
SIZEOF_FRHEADER_IDENT
);
*
skipsize
=
SIZEOF_FRHEADER_IDENT
;
break
;
}
/*
* believe we have found the start of a frame file
*/
GST_DEBUG_OBJECT
(
element
,
"parsed header: endianness = %d, size of INT_2 = %d, size of INT_4 = %d, size of INT_8 = %d"
,
element
->
endianness
,
element
->
sizeof_int_2
,
element
->
sizeof_int_4
,
element
->
sizeof_int_8
);
/*
* set the size of the structure in table 6 of LIGO-T970130
* validate remainder of header
*/
if
(
element
->
endianness
==
G_LITTLE_ENDIAN
)
{
if
(
*
(
mapinfo
.
data
+
11
)
!=
8
||
/* sizeof(REAL_8) */
GST_READ_UINT32_LE
(
mapinfo
.
data
+
14
)
!=
0x12345678
||
GST_READ_UINT64_LE
(
mapinfo
.
data
+
18
)
!=
0x123456789abcdef
||
GST_READ_FLOAT_LE
(
mapinfo
.
data
+
26
)
!=
(
float
)
M_PI
||
GST_READ_DOUBLE_LE
(
mapinfo
.
data
+
30
)
!=
M_PI
)
{
GST_DEBUG_OBJECT
(
element
,
"header failed validation checks, skipping %zu bytes and trying again"
,
SIZEOF_FRHEADER_IDENT
);
*
skipsize
=
SIZEOF_FRHEADER_IDENT
;
break
;
}
}
else
if
(
element
->
endianness
==
G_BIG_ENDIAN
)
{
if
(
*
(
mapinfo
.
data
+
11
)
!=
8
||
/* sizeof(REAL_8) */
GST_READ_UINT32_BE
(
mapinfo
.
data
+
14
)
!=
0x12345678
||
GST_READ_UINT64_BE
(
mapinfo
.
data
+
18
)
!=
0x123456789abcdef
||
GST_READ_FLOAT_BE
(
mapinfo
.
data
+
26
)
!=
(
float
)
M_PI
||
GST_READ_DOUBLE_BE
(
mapinfo
.
data
+
30
)
!=
M_PI
)
{
GST_DEBUG_OBJECT
(
element
,
"header failed validation checks, skipping %zu bytes and trying again"
,
SIZEOF_FRHEADER_IDENT
);
*
skipsize
=
SIZEOF_FRHEADER_IDENT
;
break
;
}
}
else
{
/* impossible */
g_assert_not_reached
();
}
/*
* set the size of the structure in table 6 of
* LIGO-T970130
*/
element
->
sizeof_table_6
=
element
->
sizeof_int_8
+
element
->
sizeof_int_2
+
element
->
sizeof_int_4
;
...
...
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