Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
78be1a04
Commit
78be1a04
authored
18 years ago
by
wierenga
Browse files
Options
Downloads
Patches
Plain Diff
BugID: 935
Check return code of port.accept(). Fix event deferral and recall.
parent
889bccd9
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
MAC/APL/PAC/BeamServer/src/BeamServer.cc
+45
-39
45 additions, 39 deletions
MAC/APL/PAC/BeamServer/src/BeamServer.cc
with
45 additions
and
39 deletions
MAC/APL/PAC/BeamServer/src/BeamServer.cc
+
45
−
39
View file @
78be1a04
...
@@ -295,11 +295,12 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
...
@@ -295,11 +295,12 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
static
int
period
=
0
;
static
int
period
=
0
;
undertaker
();
undertaker
();
switch
(
e
.
signal
)
switch
(
e
.
signal
)
{
{
case
F_ENTRY
:
case
F_ENTRY
:
{
{
m_calserver
.
setTimer
((
long
)
0
);
// trigger single recall
}
}
break
;
break
;
...
@@ -307,10 +308,11 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
...
@@ -307,10 +308,11 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
{
{
GCFTCPPort
*
client
=
new
GCFTCPPort
();
GCFTCPPort
*
client
=
new
GCFTCPPort
();
client
->
init
(
*
this
,
"client"
,
GCFPortInterface
::
SPP
,
BS_PROTOCOL
);
client
->
init
(
*
this
,
"client"
,
GCFPortInterface
::
SPP
,
BS_PROTOCOL
);
m_acceptor
.
accept
(
*
client
);
if
(
!
m_acceptor
.
accept
(
*
client
))
delete
client
;
m_client_list
.
push_back
(
client
);
else
{
m_client_list
.
push_back
(
client
);
LOG_INFO
(
formatString
(
"NEW CLIENT CONNECTED: %d clients connected"
,
m_client_list
.
size
()));
LOG_INFO
(
formatString
(
"NEW CLIENT CONNECTED: %d clients connected"
,
m_client_list
.
size
()));
}
}
}
break
;
break
;
...
@@ -322,27 +324,37 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
...
@@ -322,27 +324,37 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
case
F_TIMER
:
case
F_TIMER
:
{
{
GCFTimerEvent
*
timer
=
static_cast
<
GCFTim
er
E
ve
nt
*>
(
&
e
);
if
(
&
port
==
&
m_cals
erve
r
)
{
LOG_DEBUG_STR
(
"timer="
<<
Timestamp
(
timer
->
sec
,
timer
->
usec
));
// recall one deferred event, set timer again if an event was handled
if
(
recall
(
port
)
==
GCFEvent
::
HANDLED
)
m_calserver
.
setTimer
((
long
)
0
);
period
++
;
}
else
{
if
(
0
==
(
period
%
COMPUTE_INTERVAL
))
{
period
=
0
;
// compute new weights after sending weights
GCFTimerEvent
*
timer
=
static_cast
<
GCFTimerEvent
*>
(
&
e
);
compute_weights
(
Timestamp
(
timer
->
sec
,
0
)
+
COMPUTE_INTERVAL
);
send_weights
(
Timestamp
(
timer
->
sec
,
0
)
+
COMPUTE_INTERVAL
);
LOG_DEBUG_STR
(
"timer="
<<
Timestamp
(
timer
->
sec
,
timer
->
usec
));
}
if
(
m_beams_modified
)
period
++
;
{
if
(
0
==
(
period
%
COMPUTE_INTERVAL
))
send_sbselection
();
{
period
=
0
;
m_beams_modified
=
false
;
// compute new weights and send them weights
}
LOG_INFO_STR
(
"computing weights "
<<
Timestamp
(
timer
->
sec
,
timer
->
usec
));
compute_weights
(
Timestamp
(
timer
->
sec
,
0
)
+
COMPUTE_INTERVAL
);
LOG_INFO_STR
(
"done computing weights"
);
send_weights
(
Timestamp
(
timer
->
sec
,
0
)
+
COMPUTE_INTERVAL
);
}
if
(
m_beams_modified
)
{
send_sbselection
();
m_beams_modified
=
false
;
}
}
}
}
break
;
break
;
...
@@ -396,7 +408,7 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
...
@@ -396,7 +408,7 @@ GCFEvent::TResult BeamServer::enabled(GCFEvent& e, GCFPortInterface& port)
CALUpdateEvent
calupd
(
e
);
CALUpdateEvent
calupd
(
e
);
if
(
CAL_Protocol
::
SUCCESS
==
calupd
.
status
)
{
if
(
CAL_Protocol
::
SUCCESS
==
calupd
.
status
)
{
LOG_INFO
(
"
\n\n
Received valid CAL_UPDATE event.
\n\n
"
);
LOG_INFO
(
"Received valid CAL_UPDATE event."
);
m_beams
.
updateCalibration
(
calupd
.
handle
,
calupd
.
gains
);
m_beams
.
updateCalibration
(
calupd
.
handle
,
calupd
.
gains
);
}
}
...
@@ -539,8 +551,8 @@ GCFEvent::TResult BeamServer::beamalloc_state(GCFEvent& e, GCFPortInterface& por
...
@@ -539,8 +551,8 @@ GCFEvent::TResult BeamServer::beamalloc_state(GCFEvent& e, GCFPortInterface& por
&&
(
ack
.
subarray
.
getSPW
().
getNumSubbands
()
>=
&&
(
ack
.
subarray
.
getSPW
().
getNumSubbands
()
>=
(
int
)
m_bt
.
getBeam
()
->
getAllocation
()().
size
())
)
{
(
int
)
m_bt
.
getBeam
()
->
getAllocation
()().
size
())
)
{
LOG_INFO
(
"Got subscription to subarray
"
);
LOG_INFO
_STR
(
"Got subscription to subarray
"
<<
ack
.
subarray
.
getName
()
);
LOG_
WARN
_STR
(
"ack.subarray.positions="
<<
ack
.
subarray
.
getAntennaPos
());
LOG_
DEBUG
_STR
(
"ack.subarray.positions="
<<
ack
.
subarray
.
getAntennaPos
());
// set positions on beam
// set positions on beam
m_bt
.
getBeam
()
->
setSubarray
(
ack
.
subarray
);
m_bt
.
getBeam
()
->
setSubarray
(
ack
.
subarray
);
...
@@ -583,9 +595,6 @@ GCFEvent::TResult BeamServer::beamalloc_state(GCFEvent& e, GCFPortInterface& por
...
@@ -583,9 +595,6 @@ GCFEvent::TResult BeamServer::beamalloc_state(GCFEvent& e, GCFPortInterface& por
{
{
// completed current transaction, reset
// completed current transaction, reset
m_bt
.
reset
();
m_bt
.
reset
();
// recall any deferred events
recall
(
port
);
}
}
break
;
break
;
...
@@ -658,9 +667,6 @@ GCFEvent::TResult BeamServer::beamfree_state(GCFEvent& e, GCFPortInterface& port
...
@@ -658,9 +667,6 @@ GCFEvent::TResult BeamServer::beamfree_state(GCFEvent& e, GCFPortInterface& port
// completed current transaction, reset
// completed current transaction, reset
m_bt
.
reset
();
m_bt
.
reset
();
// recall any deferred events
recall
(
port
);
}
}
break
;
break
;
...
@@ -726,7 +732,7 @@ bool BeamServer::beampointto_action(BSBeampointtoEvent& pt,
...
@@ -726,7 +732,7 @@ bool BeamServer::beampointto_action(BSBeampointtoEvent& pt,
Beam
*
beam
=
(
Beam
*
)
pt
.
handle
;
Beam
*
beam
=
(
Beam
*
)
pt
.
handle
;
if
(
m_beams
.
exists
(
beam
))
{
if
(
m_beams
.
exists
(
beam
))
{
LOG_INFO_STR
(
"
received
new coordinates for
beam
"
<<
beam
->
getName
()
LOG_INFO_STR
(
"new coordinates for "
<<
beam
->
getName
()
<<
": "
<<
pt
.
pointing
.
angle0
()
<<
", "
<<
": "
<<
pt
.
pointing
.
angle0
()
<<
", "
<<
pt
.
pointing
.
angle1
()
<<
", time="
<<
pt
.
pointing
.
time
());
<<
pt
.
pointing
.
angle1
()
<<
", time="
<<
pt
.
pointing
.
time
());
...
@@ -847,20 +853,20 @@ void BeamServer::defer(GCFEvent& e, GCFPortInterface& p)
...
@@ -847,20 +853,20 @@ void BeamServer::defer(GCFEvent& e, GCFPortInterface& p)
{
{
char
*
event
=
new
char
[
sizeof
(
e
)
+
e
.
length
];
char
*
event
=
new
char
[
sizeof
(
e
)
+
e
.
length
];
memcpy
(
event
,
(
const
char
*
)
&
e
,
sizeof
(
e
)
+
e
.
length
);
memcpy
(
event
,
(
const
char
*
)
&
e
,
sizeof
(
e
)
+
e
.
length
);
m_deferred_queue
[
&
p
]
.
push_back
(
event
);
m_deferred_queue
.
push_back
(
pair
<
char
*
,
GCFPortInterface
*>
(
event
,
&
p
)
);
LOG_
INFO
_STR
(
">>> deferring event "
<<
m_deferred_queue
[
&
p
]
.
size
()
<<
" <<<"
);
LOG_
DEBUG
_STR
(
">>> deferring event "
<<
m_deferred_queue
.
size
()
<<
" <<<"
);
}
}
GCFEvent
::
TResult
BeamServer
::
recall
(
GCFPortInterface
&
p
)
GCFEvent
::
TResult
BeamServer
::
recall
(
GCFPortInterface
&
/*p*/
)
{
{
GCFEvent
::
TResult
status
=
GCFEvent
::
NOT_HANDLED
;
GCFEvent
::
TResult
status
=
GCFEvent
::
NOT_HANDLED
;
if
(
m_deferred_queue
[
&
p
]
.
size
()
>
0
)
{
if
(
m_deferred_queue
.
size
()
>
0
)
{
LOG_
INFO
_STR
(
">>> recalling event "
<<
m_deferred_queue
[
&
p
]
.
size
()
<<
" <<<"
);
LOG_
DEBUG
_STR
(
">>> recalling event "
<<
m_deferred_queue
.
size
()
<<
" <<<"
);
char
*
event
=
m_deferred_queue
[
&
p
]
.
front
();
pair
<
char
*
,
GCFPortInterface
*>
port_
event
=
m_deferred_queue
.
front
();
m_deferred_queue
[
&
p
]
.
pop_front
();
m_deferred_queue
.
pop_front
();
status
=
dispatch
(
*
(
GCFEvent
*
)
event
,
p
);
status
=
dispatch
(
*
(
GCFEvent
*
)
(
port_event
.
first
),
*
port_event
.
second
);
delete
[]
even
t
;
delete
[]
port_event
.
firs
t
;
}
}
return
status
;
return
status
;
...
...
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