Salome HOME
Error management -- Attribute validator returns an error.
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Validators.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    ExchangePlugin_Validators.cpp
4 // Created: Aug 01, 2014
5 // Author:  Sergey BELASH
6
7 #include <ExchangePlugin_Validators.h>
8
9 #include <ExchangePlugin_Tools.h>
10
11 #include <ModelAPI_Feature.h>
12 #include <ModelAPI_Object.h>
13 #include <ModelAPI_Session.h>
14 #include <ModelAPI_AttributeString.h>
15
16 #include <list>
17 #include <string>
18 #include <algorithm>
19
20 bool ExchangePlugin_FormatValidator::parseFormats(const std::list<std::string>& theArguments,
21                                                   std::list<std::string>& outFormats)
22 {
23   std::list<std::string>::const_iterator it = theArguments.begin();
24   bool result = true;
25   for (; it != theArguments.end(); ++it) {
26     std::string anArg = *it;
27     int aSepPos = anArg.find(":");
28     if (aSepPos == std::string::npos) {
29       result = false;
30       continue;
31     }
32     std::string aFormats = anArg.substr(0, aSepPos);
33     std::transform(aFormats.begin(), aFormats.end(), aFormats.begin(), toupper);
34     std::list<std::string> aFormatList = ExchangePlugin_Tools::split(aFormats, '|');
35     outFormats.insert(outFormats.end(), aFormatList.begin(), aFormatList.end());
36   }
37   return result;
38 }
39
40 bool ExchangePlugin_FormatValidator::isValid(const AttributePtr& theAttribute,
41                                              const std::list<std::string>& theArguments,
42                                              std::string& theError) const
43 {
44   if (!theAttribute->isInitialized())
45     return false;
46
47   const AttributeStringPtr aStrAttr =
48       std::dynamic_pointer_cast<ModelAPI_AttributeString>(theAttribute);
49   if (!aStrAttr)
50     return false;
51
52   std::string aFileName = aStrAttr->value();
53   if (aFileName.empty())
54     return false;
55
56   std::list<std::string> aFormats;
57   ExchangePlugin_FormatValidator::parseFormats(theArguments, aFormats);
58   std::list<std::string>::const_iterator itFormats = aFormats.begin();
59   size_t aFileNameLen = aFileName.length();
60   std::transform(aFileName.begin(), aFileName.end(), aFileName.begin(), toupper);
61   // Is file name ends with the format
62   for (; itFormats != aFormats.end(); ++itFormats) {
63     if (aFileNameLen > (*itFormats).length()) {
64       size_t aFormatBeginPos = aFileNameLen - (*itFormats).length();
65       if (aFileName.compare(aFormatBeginPos, std::string::npos, *itFormats) == 0) {
66         return true;
67       }
68     }
69   }
70   return false;
71 }