Skip to content
Snippets Groups Projects
Commit cb326b58 authored by bruijn's avatar bruijn
Browse files

%[ER: 198]%

Navigator function dpAccessable becomes common
parent 82926000
No related branches found
No related tags found
No related merge requests found
......@@ -225,6 +225,7 @@ MAC/GCF/DEPENDENCIES -text svneol=native#application/octet-stream
MAC/GCF/GCFCommon/Makefile.am -text svneol=native#application/octet-stream
MAC/GCF/GCFCommon/bootstrap -text svneol=native#application/octet-stream
MAC/GCF/GCFCommon/configure.in -text svneol=native#application/octet-stream
MAC/GCF/GCFCommon/pvss/scripts/libs/gcf-common.ctl -text svneol=native#application/octet-stream
MAC/GCF/GCFCommon/src/Makefile.am -text svneol=native#application/octet-stream
MAC/GCF/HighLevelTools/UITools/Navigator/colorDB/colorDB_fw -text svneol=native#application/octet-stream
MAC/GCF/HighLevelTools/UITools/Navigator/dplist/DemoAllNew.dpl -text svneol=native#application/octet-stream
......
///////////////////////////////////////////////////////////////////////////
// Function dpAccessable: Checks whether the given dpName is accessable and
// existing (in case of a distributed system.
//
// Input : datapoint name, including systemName
// Output: TRUE, if accessable and existing,
// FALSE, if not accessable and/or not existing
///////////////////////////////////////////////////////////////////////////
bool dpAccessable(string dpName)
{
string dpSystemName = strrtrim(dpSubStr(dpName,DPSUB_SYS),":");
if(getSystemName()==(dpSystemName+":"))
{
return TRUE;
}
else if (getSystemName()!=(dpSystemName+":"))
{
dyn_int distributedSystems;
dpGet("_DistManager.State.SystemNums", distributedSystems);
//Check if dpSystemName is in the distributedSystems list
if (dynlen(distributedSystems)>0)
{
for(int i=1; i<=dynlen(distributedSystems); i++)
{
if(getSystemName(distributedSystems[i])==(dpSystemName+":")) //if the system is reacheable
{
return dpExists(dpName);
}
}
}
return FALSE;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment