X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangePlugin%2FExchangePlugin_Validators.cpp;h=a0117d84ef3131ef50cdd11088287c60c8fb31cc;hb=5905e018e30ae6867720c08ed2ba7745a0f94585;hp=5a62fea8f048dd260110e69fc81d83bc46547948;hpb=eaa34d7803a364b8da51b6dde8b0ee3c469ae27a;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Validators.cpp b/src/ExchangePlugin/ExchangePlugin_Validators.cpp index 5a62fea8f..a0117d84e 100644 --- a/src/ExchangePlugin/ExchangePlugin_Validators.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Validators.cpp @@ -1,10 +1,15 @@ // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -// File: SketchPlugin_Validators.cpp -// Created: 01 Aug 2014 -// Author: Vitaly SMETANNIKOV +// File: ExchangePlugin_Validators.cpp +// Created: Aug 01, 2014 +// Author: Sergey BELASH #include + +#include + +#include + #include #include #include @@ -12,7 +17,6 @@ #include #include -#include #include bool ExchangePlugin_FormatValidator::parseFormats(const std::list& theArguments, @@ -22,35 +26,40 @@ bool ExchangePlugin_FormatValidator::parseFormats(const std::list& bool result = true; for (; it != theArguments.end(); ++it) { std::string anArg = *it; - int aSepPos = anArg.find(":"); + size_t aSepPos = anArg.find(":"); if (aSepPos == std::string::npos) { result = false; continue; } - std::string aFormatList = anArg.substr(0, aSepPos); - std::transform(aFormatList.begin(), aFormatList.end(), aFormatList.begin(), toupper); - std::istringstream aStream(aFormatList); - std::string aFormat; - while (std::getline(aStream, aFormat, '|')) - outFormats.push_back(aFormat); + std::string aFormats = anArg.substr(0, aSepPos); + std::transform(aFormats.begin(), aFormats.end(), aFormats.begin(), toupper); + std::list aFormatList = ExchangePlugin_Tools::split(aFormats, '|'); + outFormats.insert(outFormats.end(), aFormatList.begin(), aFormatList.end()); } return result; } bool ExchangePlugin_FormatValidator::isValid(const AttributePtr& theAttribute, - const std::list& theArguments) const + const std::list& theArguments, + Events_InfoMessage& theError) const { - if (!theAttribute->isInitialized()) + if (!theAttribute->isInitialized()) { + theError = "Is not initialized."; return false; + } const AttributeStringPtr aStrAttr = std::dynamic_pointer_cast(theAttribute); - if (!aStrAttr) + if (!aStrAttr) { + theError = "Is not a string attribute."; return false; + } std::string aFileName = aStrAttr->value(); - if (aFileName.empty()) + if (aFileName.empty()) { + theError = "File name is empty."; return false; + } std::list aFormats; ExchangePlugin_FormatValidator::parseFormats(theArguments, aFormats); @@ -59,10 +68,13 @@ bool ExchangePlugin_FormatValidator::isValid(const AttributePtr& theAttribute, std::transform(aFileName.begin(), aFileName.end(), aFileName.begin(), toupper); // Is file name ends with the format for (; itFormats != aFormats.end(); ++itFormats) { - size_t aFormatBeginPos = aFileNameLen - (*itFormats).length(); - if (aFileName.compare(aFormatBeginPos, std::string::npos, *itFormats) == 0) { - return true; + if (aFileNameLen > (*itFormats).length()) { + size_t aFormatBeginPos = aFileNameLen - (*itFormats).length(); + if (aFileName.compare(aFormatBeginPos, std::string::npos, *itFormats) == 0) { + return true; + } } } + theError = "File name does not end with any available format."; return false; }