Salome HOME
668a89f7b81f65e8f6440d6b1fb59cfefc741436
[modules/shaper.git] / src / FiltersAPI / FiltersAPI_Filter.cpp
1 // Copyright (C) 2014-2019  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
18 //
19
20 #include "FiltersAPI_Filter.h"
21
22 #include <ModelAPI_Attribute.h>
23 #include <ModelAPI_AttributeBoolean.h>
24 #include <ModelAPI_AttributeSelectionList.h>
25
26 #include <ModelHighAPI_Dumper.h>
27
28 FiltersAPI_Filter::FiltersAPI_Filter(
29     const std::string& theName,
30     const bool theRevertFilter,
31     const std::list<ModelHighAPI_Selection>& theArguments)
32   : myName(theName), myReversed(theRevertFilter), myFilterArguments(theArguments)
33 {
34 }
35
36 FiltersAPI_Filter::FiltersAPI_Filter(const std::string& theName,
37                                      const std::list<AttributePtr>& theArguments)
38   : myName(theName)
39 {
40   for (std::list<AttributePtr>::const_iterator anArgIt = theArguments.begin();
41        anArgIt != theArguments.end(); ++anArgIt) {
42     AttributeBooleanPtr aBoolAttr =
43       std::dynamic_pointer_cast<ModelAPI_AttributeBoolean>(*anArgIt);
44     if (aBoolAttr)
45       myReversed = aBoolAttr->value();
46     else {
47       AttributeSelectionListPtr aSelList =
48           std::dynamic_pointer_cast<ModelAPI_AttributeSelectionList>(*anArgIt);
49       if (aSelList) {
50         int aSize = aSelList->size();
51         for (int i = 0; i < aSize; ++i) {
52           AttributeSelectionPtr aSelection = aSelList->value(i);
53           myFilterArguments.push_back(
54               ModelHighAPI_Selection(aSelection->context(), aSelection->value()));
55         }
56       }
57     }
58   }
59 }
60
61 FiltersAPI_Filter::~FiltersAPI_Filter()
62 {
63 }
64
65 void FiltersAPI_Filter::dump(ModelHighAPI_Dumper& theDumper) const
66 {
67   theDumper << "model.addFilter(name = \"" << myName << "\"";
68   if (myReversed)
69     theDumper << ", exclude = " << myReversed;
70   if (!myFilterArguments.empty())
71     theDumper << ", args = []";
72   theDumper << ")";
73 }
74
75 // ================================================================================================
76 FilterAPIPtr addFilter(const std::string& name,
77                        const bool exclude,
78                        const std::list<ModelHighAPI_Selection>& args)
79 {
80   return FilterAPIPtr(new FiltersAPI_Filter(name, exclude, args));
81 }