]> SALOME platform Git repositories - modules/shaper.git/blob - src/GeomValidators/GeomValidators_PartitionArguments.cpp
Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomValidators / GeomValidators_PartitionArguments.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
18 //
19
20 #include <GeomValidators_PartitionArguments.h>
21
22 #include <Events_InfoMessage.h>
23
24 #include <ModelAPI_AttributeBoolean.h>
25 #include <ModelAPI_AttributeSelectionList.h>
26
27 //=================================================================================================
28 bool GeomValidators_PartitionArguments::isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
29                                               const std::list<std::string>& theArguments,
30                                               Events_InfoMessage& theError) const
31 {
32   if(theArguments.size() != 3) {
33     theError = "Wrong number of arguments (expected 3).";
34     return false;
35   }
36
37   int anObjectsNb = 0, aToolsNb = 0;
38   bool isCombine = true;
39
40   std::list<std::string>::const_iterator anIt = theArguments.begin(), aLast = theArguments.end();
41
42   std::shared_ptr<ModelAPI_AttributeSelectionList> anAttrSelList = theFeature->selectionList(*anIt);
43   if(anAttrSelList) {
44     anObjectsNb = anAttrSelList->size();
45   }
46   anIt++;
47
48   anAttrSelList = theFeature->selectionList(*anIt);
49   if(anAttrSelList) {
50     aToolsNb = anAttrSelList->size();
51   }
52   anIt++;
53
54   std::shared_ptr<ModelAPI_AttributeBoolean> anAttrBool = theFeature->boolean(*anIt);
55   if(anAttrBool) {
56     isCombine = anAttrBool->value();
57   }
58
59   if((anObjectsNb > 0 && aToolsNb > 0) ||
60      (isCombine && anObjectsNb != 0 && (anObjectsNb + aToolsNb > 1))) {
61     return true;
62   }
63
64   theError = "Not enough arguments";
65   return false;
66 }
67
68 //=================================================================================================
69 bool GeomValidators_PartitionArguments::isNotObligatory(std::string theFeature,
70                                                         std::string theAttribute)
71 {
72   if(theAttribute == "tool_objects") {
73     return true;
74   }
75
76   return false;
77 }