本文整理汇总了C++中FactoryResource::hasGreaterLevel方法的典型用法代码示例。如果您正苦于以下问题:C++ FactoryResource::hasGreaterLevel方法的具体用法?C++ FactoryResource::hasGreaterLevel怎么用?C++ FactoryResource::hasGreaterLevel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FactoryResource
的用法示例。
在下文中一共展示了FactoryResource::hasGreaterLevel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: pHandler
//.........这里部分代码省略.........
{
if (*iter == Nitf::ImageSubheaderFieldValues::BAND_REPRESENTATIONS_LUT)
{
hasLut = true;
break;
}
}
}
}
if (hasLut == false)
{
vector<unsigned int> numLuts;
const string numLutsPathName[] = { Nitf::NITF_METADATA, Nitf::IMAGE_SUBHEADER,
Nitf::ImageSubheaderFieldNames::NUMBER_OF_LUTS, END_METADATA_NAME };
const DataVariant& dvNumLuts = pMetadata->getAttributeByPath(numLutsPathName);
if (dvNumLuts.getValue(numLuts) == true)
{
for (vector<unsigned int>::iterator iter = numLuts.begin(); iter != numLuts.end(); iter++)
{
if (*iter > 0)
{
hasLut = true;
break;
}
}
}
}
if (hasLut == true)
{
if (errorMessage.empty() == false)
{
errorMessage += "\n";
}
errorMessage += "The lookup table will not be applied.";
}
// Check for valid Classification markings. If any level is higher than the file header, display a warning.
FactoryResource<Classification> pClassification;
const Classification* pOverallClassification = pDescriptor->getClassification();
VERIFY(pOverallClassification != NULL);
// Look in the image subheader.
string imageClassLevel;
const string imageClassLevelPathName[] = { Nitf::NITF_METADATA, Nitf::IMAGE_SUBHEADER,
Nitf::ImageSubheaderFieldNames::SECURITY_LEVEL, END_METADATA_NAME };
const DataVariant& dvImageClassLevel = pMetadata->getAttributeByPath(imageClassLevelPathName);
if (dvImageClassLevel.getValue(imageClassLevel) == true)
{
pClassification->setLevel(imageClassLevel);
if (pClassification->hasGreaterLevel(pOverallClassification) == true)
{
if (errorMessage.empty() == false)
{
errorMessage += "\n";
}
errorMessage += "THIS FILE CONTAINS INVALID CLASSIFICATION INFORMATION! The image has a higher "
"classification level than the file. Update the Classification information before proceeding.";
}
}
// Look in each DES subheader.
int numDes;
const string numDesPathName[] = { Nitf::NITF_METADATA, Nitf::FILE_HEADER,
Nitf::FileHeaderFieldNames::NUM_DES, END_METADATA_NAME };
const DataVariant& dvNumDes = pMetadata->getAttributeByPath(numDesPathName);
if (dvNumDes.getValue(numDes) == true)
{
for (int i = 0; i < numDes; ++i)
{
stringstream desStr;
desStr << "DES_" << setw(3) << setfill('0') << i;
string desClassLevel;
const string desClassLevelPathName[] = { Nitf::NITF_METADATA, Nitf::DES_METADATA,
desStr.str(), Nitf::DesSubheaderFieldNames::SECURITY_LEVEL, END_METADATA_NAME };
const DataVariant& dvDesClassLevel = pMetadata->getAttributeByPath(desClassLevelPathName);
if (dvDesClassLevel.getValue(desClassLevel) == true)
{
pClassification->setLevel(desClassLevel);
if (pClassification->hasGreaterLevel(pOverallClassification) == true)
{
if (errorMessage.empty() == false)
{
errorMessage += "\n";
}
errorMessage += "THIS FILE CONTAINS INVALID CLASSIFICATION INFORMATION! " + desStr.str() +
" has a higher classification level than the file. Update the Classification information "
"before proceeding.";
}
}
}
}
return true;
}