X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangePlugin%2FExchangePlugin_Validators.cpp;h=8b3bcf587fb89bf4c761d6c714482e1236dcbda9;hb=18c48550de6c4a7d17912336d0e2651e01bb987f;hp=2582ca76e115063bcb941e10ab4d0e586e9e69b4;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Validators.cpp b/src/ExchangePlugin/ExchangePlugin_Validators.cpp index 2582ca76e..8b3bcf587 100644 --- a/src/ExchangePlugin/ExchangePlugin_Validators.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Validators.cpp @@ -1,8 +1,15 @@ -// File: SketchPlugin_Validators.cpp -// Created: 01 Aug 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + +// File: ExchangePlugin_Validators.cpp +// Created: Aug 01, 2014 +// Author: Sergey BELASH #include + +#include + +#include + #include #include #include @@ -12,68 +19,64 @@ #include #include -bool ExchangePlugin_ImportFormatValidator::parseFormats(const std::list& theArguments, - std::list& outFormats) +bool ExchangePlugin_FormatValidator::parseFormats(const std::list& theArguments, + std::list& outFormats) { std::list::const_iterator it = theArguments.begin(); 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 aFormat = anArg.substr(0, aSepPos); - std::transform(aFormat.begin(), aFormat.end(), aFormat.begin(), toupper); - 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_ImportFormatValidator::parsePlugins(const std::list& theArguments, - std::list& outPlugins) +bool ExchangePlugin_FormatValidator::isValid(const AttributePtr& theAttribute, + const std::list& theArguments, + Events_InfoMessage& theError) const { - std::list::const_iterator it = theArguments.begin(); - bool result = true; - for (; it != theArguments.end(); ++it) { - std::string anArg = *it; - int aSepPos = anArg.find(":"); - if (aSepPos == std::string::npos) { - result = false; - continue; - } - outPlugins.push_back(anArg.substr(aSepPos + 1)); + if (!theAttribute->isInitialized()) { + theError = "%1 is not initialized."; + theError.arg(theAttribute->id()); + return false; } - return result; -} -bool ExchangePlugin_ImportFormatValidator::isValid(const AttributePtr& theAttribute, - const std::list& theArguments) const -{ - SessionPtr aMgr = ModelAPI_Session::get(); - ModelAPI_ValidatorsFactory* aFactory = aMgr->validators(); - if (theAttribute->isInitialized()) { - const AttributeStringPtr aStrAttr = - std::dynamic_pointer_cast(theAttribute); - if(!aStrAttr) - return false; - std::string aFileName = aStrAttr->value(); - if (!aFileName.empty()) { - std::list aFormats; - ExchangePlugin_ImportFormatValidator::parseFormats(theArguments, aFormats); - std::list::const_iterator itFormats = aFormats.begin(); - size_t aFileNameLen = aFileName.length(); - 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; - } + const AttributeStringPtr aStrAttr = + std::dynamic_pointer_cast(theAttribute); + if (!aStrAttr) { + theError = "%1 is not a string attribute."; + theError.arg(theAttribute->id()); + return false; + } + + std::string aFileName = aStrAttr->value(); + if (aFileName.empty()) { + theError = "File name is empty."; + return false; + } + + std::list aFormats; + ExchangePlugin_FormatValidator::parseFormats(theArguments, aFormats); + std::list::const_iterator itFormats = aFormats.begin(); + size_t aFileNameLen = aFileName.length(); + std::transform(aFileName.begin(), aFileName.end(), aFileName.begin(), toupper); + // Is file name ends with the format + for (; itFormats != aFormats.end(); ++itFormats) { + 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; } -