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
eaed29bb
Commit
eaed29bb
authored
12 years ago
by
Ruud Overeem
Browse files
Options
Downloads
Patches
Plain Diff
Task #3713: Updated conversion-regexes between PVSS and SAS to support the LBA and HBA antenna's.
parent
87c7f46d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
LCS/ApplCommon/src/StationInfo.cc
+15
-13
15 additions, 13 deletions
LCS/ApplCommon/src/StationInfo.cc
LCS/ApplCommon/test/CMakeLists.txt
+1
-0
1 addition, 0 deletions
LCS/ApplCommon/test/CMakeLists.txt
LCS/ApplCommon/test/tStationInfo.cc
+9
-1
9 additions, 1 deletion
LCS/ApplCommon/test/tStationInfo.cc
with
25 additions
and
14 deletions
LCS/ApplCommon/src/StationInfo.cc
+
15
−
13
View file @
eaed29bb
...
@@ -147,32 +147,34 @@ string realHostname(const string& someName)
...
@@ -147,32 +147,34 @@ string realHostname(const string& someName)
//
//
// SAS : LOFAR.PIC.<RING>.<SYSTEM>.xxx
// SAS : LOFAR.PIC.<RING>.<SYSTEM>.xxx
// PVSS: <SYSTEM>:LOFAR_PIC_xxx
// PVSS: <SYSTEM>:LOFAR_PIC_xxx
// ^ ^ ^
// | | +-- locationPos + locationLen
// | +-- colon
// +-- systemLen
//
//
// NOTE: instead of PIC the DPname may contain PermSW or ObsSW_Observation<n>
// NOTE: instead of PIC the DPname may contain PermSW or ObsSW_Observation<n>
//
//
string
PVSS2SASname
(
const
string
&
PVSSname
)
string
PVSS2SASname
(
const
string
&
PVSSname
)
{
{
const
char
*
structure_match
=
"(([A-Z]{2,3}[0-9]{3}[A-Z]?):LOFAR_(PIC|PermSW)_)|"
// 1,2,3
const
char
*
structure_match
=
"(([A-Z]{2,3}[0-9]{3}[A-Z]?):LOFAR_(PIC|PermSW)_)|"
// 1,2,3
"(([A-Z]{2,3}[0-9]{3}[A-Z]?):LOFAR_(PIC|PermSW)
\\
.)"
;
// 4,5,6
"(([A-Z]{2,3}[0-9]{3}[A-Z]?):LOFAR_(PIC|PermSW)
\\
.)"
;
// 4,5,6
"(([A-Z]{2,3}[0-9]{3}[A-Z]?):LOFAR_PIC_(LBA|HBA)
\\
.)"
;
// 7,8,9
const
char
*
location_match
=
"(RCU[0-9]{3})|"
// 1
const
char
*
location_match
=
"(RCU[0-9]{3})|"
// 1
"_(CS[0-9]{3}[A-Z]?)_|"
// 2 CS999
"(LBA[0-9]{3})|"
// 2 LBA999
"_(RS[0-9]{3}[A-Z]?)_|"
// 3 RS999
"(HBA[0-9]{2})|"
// 3 HBA99
"_([ABD-QS-Z][A-Z][0-9]{3}[A-Z]?)_|"
// 4 XX999
"_(CS[0-9]{3}[A-Z]?)_|"
// 4 CS999
"_([A-Z]{3}[0-9]{3}[A-Z]?)_"
;
// 5 XXX999
"_(RS[0-9]{3}[A-Z]?)_|"
// 5 RS999
"_([ABD-QS-Z][A-Z][0-9]{3}[A-Z]?)_|"
// 6 XX999
"_([A-Z]{3}[0-9]{3}[A-Z]?)_"
;
// 7 XXX999
const
char
*
separator_match
=
"(_)|(
\\
.)"
;
const
char
*
separator_match
=
"(_)|(
\\
.)"
;
const
char
*
boundary_match
=
"(^([^_]+)_)"
;
const
char
*
boundary_match
=
"(^([^_]+)_)"
;
const
char
*
structure_repl
=
"(?1LOFAR_$3_$2_)"
// LOFAR_PIC_RS002
const
char
*
structure_repl
=
"(?1LOFAR_$3_$2_)"
// LOFAR_PIC_RS002
"(?4LOFAR_$6.)"
;
// LOFAR_PIC
"(?4LOFAR_$6.)"
;
// LOFAR_PIC
"(?7LOFAR_PIC_$6.)"
;
// LOFAR_PIC_[HL]BA
const
char
*
location_repl
=
"(?1$&)"
// ignore RCU999
const
char
*
location_repl
=
"(?1$&)"
// ignore RCU999
"(?2_Core$&)"
"(?2$&)"
"(?3_Remote$&)"
"(?3$&)"
"(?4_Europe$&)"
"(?4_Core$&)"
"(?5_Control$&)"
;
"(?5_Remote$&)"
"(?6_Europe$&)"
"(?7_Control$&)"
;
const
char
*
separator_repl
=
"(?1.)(?2_)"
;
// swap separators
const
char
*
separator_repl
=
"(?1.)(?2_)"
;
// swap separators
const
char
*
boundary_repl
=
"$2."
;
// reverse separator on object-field edge
const
char
*
boundary_repl
=
"$2."
;
// reverse separator on object-field edge
...
...
This diff is collapsed.
Click to expand it.
LCS/ApplCommon/test/CMakeLists.txt
+
1
−
0
View file @
eaed29bb
...
@@ -6,3 +6,4 @@ lofar_add_test(tAntField tAntField.cc)
...
@@ -6,3 +6,4 @@ lofar_add_test(tAntField tAntField.cc)
lofar_add_test
(
tAntennaSet tAntennaSet.cc
)
lofar_add_test
(
tAntennaSet tAntennaSet.cc
)
lofar_add_test
(
tObservation tObservation.cc
)
lofar_add_test
(
tObservation tObservation.cc
)
lofar_add_executable
(
tHasDataslots tHasDataslots.cc
)
lofar_add_executable
(
tHasDataslots tHasDataslots.cc
)
lofar_add_executable
(
tStationInfo tStationInfo.cc
)
This diff is collapsed.
Click to expand it.
LCS/ApplCommon/test/tStationInfo.cc
+
9
−
1
View file @
eaed29bb
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
using
namespace
LOFAR
;
using
namespace
LOFAR
;
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
/*
argc
*/
,
char
*
argv
[])
{
{
INIT_LOGGER
(
argv
[
0
]);
INIT_LOGGER
(
argv
[
0
]);
...
@@ -59,6 +59,10 @@ int main (int argc, char* argv[])
...
@@ -59,6 +59,10 @@ int main (int argc, char* argv[])
PVSS2SASname
(
"RS002:LOFAR_ObsSW_Observation5.antennaArray"
));
PVSS2SASname
(
"RS002:LOFAR_ObsSW_Observation5.antennaArray"
));
LOG_INFO_STR
(
"PVSS==>SAS(RS002:LOFAR_ObsSW_Observation5_BeamControl.status.state) = "
<<
LOG_INFO_STR
(
"PVSS==>SAS(RS002:LOFAR_ObsSW_Observation5_BeamControl.status.state) = "
<<
PVSS2SASname
(
"RS002:LOFAR_ObsSW_Observation5_BeamControl.status.state"
));
PVSS2SASname
(
"RS002:LOFAR_ObsSW_Observation5_BeamControl.status.state"
));
LOG_INFO_STR
(
"PVSS==>SAS(RS005:LOFAR_PIC_HBA05.status.state) = "
<<
PVSS2SASname
(
"RS005:LOFAR_PIC_HBA05.status.state"
));
LOG_INFO_STR
(
"PVSS==>SAS(DE603:LOFAR_PIC_LBA005.status.state) = "
<<
PVSS2SASname
(
"DE603:LOFAR_PIC_LBA005.status.state"
));
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.PIC.Remote.RS002.Cabinet0.Subrack0.status_state) = "
<<
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.PIC.Remote.RS002.Cabinet0.Subrack0.status_state) = "
<<
SAS2PVSSname
(
"LOFAR.PIC.Remote.RS002.Cabinet0.Subrack0.status_state"
));
SAS2PVSSname
(
"LOFAR.PIC.Remote.RS002.Cabinet0.Subrack0.status_state"
));
...
@@ -68,6 +72,10 @@ int main (int argc, char* argv[])
...
@@ -68,6 +72,10 @@ int main (int argc, char* argv[])
SAS2PVSSname
(
"LOFAR.PermSW.Control.MCU001.MACScheduler.status_state"
));
SAS2PVSSname
(
"LOFAR.PermSW.Control.MCU001.MACScheduler.status_state"
));
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.ObsSW.Observation.VirtualInstrument.stationList) = "
<<
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.ObsSW.Observation.VirtualInstrument.stationList) = "
<<
SAS2PVSSname
(
"LOFAR.ObsSW.Observation.VirtualInstrument.stationList"
));
SAS2PVSSname
(
"LOFAR.ObsSW.Observation.VirtualInstrument.stationList"
));
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.PIC.Remote.RS005.LBA123.status_state) = "
<<
SAS2PVSSname
(
"LOFAR.PIC.Remote.RS005.LBA123.status_state"
));
LOG_INFO_STR
(
"SAS==>PVSS(LOFAR.PIC.Europe.DE603.HBA23.status_state) = "
<<
SAS2PVSSname
(
"LOFAR.PIC.Europe.DE603.HBA23.status_state"
));
return
(
0
);
return
(
0
);
}
}
...
...
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