1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <ExchangePlugin_Validators.h>
22 #include <ExchangePlugin_Tools.h>
24 #include <Events_InfoMessage.h>
26 #include <ModelAPI_Feature.h>
27 #include <ModelAPI_Object.h>
28 #include <ModelAPI_Session.h>
29 #include <ModelAPI_AttributeString.h>
35 bool ExchangePlugin_FormatValidator::parseFormats(const std::list<std::string>& theArguments,
36 std::list<std::string>& outFormats)
38 std::list<std::string>::const_iterator it = theArguments.begin();
40 for (; it != theArguments.end(); ++it) {
41 std::string anArg = *it;
42 size_t aSepPos = anArg.find(":");
43 if (aSepPos == std::string::npos) {
47 std::string aFormats = anArg.substr(0, aSepPos);
48 std::transform(aFormats.begin(), aFormats.end(), aFormats.begin(), toupper);
49 std::list<std::string> aFormatList = ExchangePlugin_Tools::split(aFormats, '|');
50 outFormats.insert(outFormats.end(), aFormatList.begin(), aFormatList.end());
55 bool ExchangePlugin_FormatValidator::isValid(const AttributePtr& theAttribute,
56 const std::list<std::string>& theArguments,
57 Events_InfoMessage& theError) const
59 if (!theAttribute->isInitialized()) {
61 theError = "%1 is not initialized.";
62 theError.arg(theAttribute->id());
67 const AttributeStringPtr aStrAttr =
68 std::dynamic_pointer_cast<ModelAPI_AttributeString>(theAttribute);
71 theError = "%1 is not a string attribute.";
72 theError.arg(theAttribute->id());
77 std::string aFileName = aStrAttr->value();
78 if (aFileName.empty()) {
79 theError = "File name is empty.";
83 std::list<std::string> aFormats;
84 ExchangePlugin_FormatValidator::parseFormats(theArguments, aFormats);
85 std::list<std::string>::const_iterator itFormats = aFormats.begin();
86 size_t aFileNameLen = aFileName.length();
87 std::transform(aFileName.begin(), aFileName.end(), aFileName.begin(), toupper);
88 // Is file name ends with the format
89 for (; itFormats != aFormats.end(); ++itFormats) {
90 std::string aFormat = "." + *itFormats;
91 if (aFileNameLen > aFormat.length()) {
92 size_t aFormatBeginPos = aFileNameLen - aFormat.length();
93 if (aFileName.compare(aFormatBeginPos, std::string::npos, aFormat) == 0) {
98 theError = "File name does not end with any available format.";