Salome HOME
Issue #529 : 4.07. Import IGES, export to BREP, STEP, IGES - Export IGES with versions
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Validators.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketchPlugin_Validators.cpp
4 // Created:     01 Aug 2014
5 // Author:      Vitaly SMETANNIKOV
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) const
42 {
43   if (!theAttribute->isInitialized())
44     return false;
45
46   const AttributeStringPtr aStrAttr =
47       std::dynamic_pointer_cast<ModelAPI_AttributeString>(theAttribute);
48   if (!aStrAttr)
49     return false;
50
51   std::string aFileName = aStrAttr->value();
52   if (aFileName.empty())
53     return false;
54
55   std::list<std::string> aFormats;
56   ExchangePlugin_FormatValidator::parseFormats(theArguments, aFormats);
57   std::list<std::string>::const_iterator itFormats = aFormats.begin();
58   size_t aFileNameLen = aFileName.length();
59   std::transform(aFileName.begin(), aFileName.end(), aFileName.begin(), toupper);
60   // Is file name ends with the format
61   for (; itFormats != aFormats.end(); ++itFormats) {
62     size_t aFormatBeginPos = aFileNameLen - (*itFormats).length();
63     if (aFileName.compare(aFormatBeginPos, std::string::npos, *itFormats) == 0) {
64       return true;
65     }
66   }
67   return false;
68 }