Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
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
lscsoft
GstLAL
Commits
08f45877
Commit
08f45877
authored
11 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
lloidparts: use locks as context managers
parent
93b4beba
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-inspiral/python/lloidparts.py
+23
-25
23 additions, 25 deletions
gstlal-inspiral/python/lloidparts.py
with
23 additions
and
25 deletions
gstlal-inspiral/python/lloidparts.py
+
23
−
25
View file @
08f45877
...
...
@@ -194,31 +194,29 @@ class Handler(simplehandler.Handler):
return
False
def
flush_segments_to_disk
(
self
,
timestamp
):
self
.
lock
.
acquire
()
try
:
# close out existing segments
for
name
,
elem
in
[(
name
,
self
.
pipeline
.
get_by_name
(
name
))
for
name
in
self
.
gates
]:
if
name
in
self
.
current_segment_start
:
# By construction these gates should be
# in the on state. We fake a state
# transition to off in order to flush
# the segments
self
.
gatehandler
(
elem
,
timestamp
,
"
off
"
)
# But we have to remember to put it back
self
.
gatehandler
(
elem
,
timestamp
,
"
on
"
)
xmldoc
=
self
.
gen_segments_doc
()
# FIXME Can't use extent_all() since one list might be empty.
ext
=
self
.
segments
.
union
(
self
.
segments
.
keys
()).
extent
()
fname
=
"
%s-%s_SEGMENTS-%d-%d.xml.gz
"
%
(
""
.
join
(
sorted
(
self
.
dataclass
.
instruments
)),
self
.
tag
,
int
(
ext
[
0
]),
int
(
abs
(
ext
)))
utils
.
write_filename
(
xmldoc
,
fname
,
gz
=
fname
.
endswith
(
'
.gz
'
),
verbose
=
self
.
verbose
)
# Reset the segment lists
for
name
in
self
.
segments
:
self
.
segments
[
name
]
=
segments
.
segmentlist
([])
except
ValueError
:
print
>>
sys
.
stderr
,
"
Warning: couldn
'
t build segment list on checkpoint, probably there aren
'
t any segments
"
finally
:
self
.
lock
.
release
()
with
self
.
lock
:
try
:
# close out existing segments
for
name
,
elem
in
[(
name
,
self
.
pipeline
.
get_by_name
(
name
))
for
name
in
self
.
gates
]:
if
name
in
self
.
current_segment_start
:
# By construction these gates should be
# in the on state. We fake a state
# transition to off in order to flush
# the segments
self
.
gatehandler
(
elem
,
timestamp
,
"
off
"
)
# But we have to remember to put it back
self
.
gatehandler
(
elem
,
timestamp
,
"
on
"
)
xmldoc
=
self
.
gen_segments_doc
()
# FIXME Can't use extent_all() since one list might be empty.
ext
=
self
.
segments
.
union
(
self
.
segments
.
keys
()).
extent
()
fname
=
"
%s-%s_SEGMENTS-%d-%d.xml.gz
"
%
(
""
.
join
(
sorted
(
self
.
dataclass
.
instruments
)),
self
.
tag
,
int
(
ext
[
0
]),
int
(
abs
(
ext
)))
utils
.
write_filename
(
xmldoc
,
fname
,
gz
=
fname
.
endswith
(
'
.gz
'
),
verbose
=
self
.
verbose
)
# Reset the segment lists
for
name
in
self
.
segments
:
self
.
segments
[
name
]
=
segments
.
segmentlist
([])
except
ValueError
:
print
>>
sys
.
stderr
,
"
Warning: couldn
'
t build segment list on checkpoint, probably there aren
'
t any segments
"
def
gatehandler
(
self
,
elem
,
timestamp
,
segment_type
):
timestamp
=
LIGOTimeGPS
(
0
,
timestamp
)
# timestamp is in nanoseconds
...
...
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