Salome HOME
Implement dumping filters to Python
[modules/shaper.git] / src / FiltersAPI / FiltersAPI_Feature.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_Feature.h"
21
22 #include <ModelAPI_Feature.h>
23
24 #include <ModelHighAPI_Dumper.h>
25
26 FiltersAPI_Feature::FiltersAPI_Feature(
27     const std::shared_ptr<ModelAPI_Feature> & theFeature)
28 : ModelHighAPI_Interface(theFeature)
29 {
30   initialize();
31 }
32
33 FiltersAPI_Feature::~FiltersAPI_Feature()
34 {
35 }
36
37 void FiltersAPI_Feature::setFilters(const std::list<FilterAPIPtr>& theFilters)
38 {
39   FiltersFeaturePtr aBase = std::dynamic_pointer_cast<ModelAPI_FiltersFeature>(feature());
40   for (std::list<FilterAPIPtr>::const_iterator anIt = theFilters.begin();
41        anIt != theFilters.end(); ++anIt) {
42     aBase->addFilter((*anIt)->name());
43     aBase->setReversed((*anIt)->name(), (*anIt)->isReversed());
44   }
45 }
46
47 void FiltersAPI_Feature::dump(ModelHighAPI_Dumper& theDumper) const
48 {
49   FiltersFeaturePtr aBase = std::dynamic_pointer_cast<ModelAPI_FiltersFeature>(feature());
50   if (!aBase)
51     return;
52
53   const std::string& aDocName = theDumper.name(aBase->document());
54   theDumper << "model.filters(" << aDocName << ", [";
55
56   std::list<std::string> aFilters = aBase->filters();
57   for (std::list<std::string>::iterator aFIt = aFilters.begin(); aFIt != aFilters.end(); ++aFIt) {
58     FiltersAPI_Filter aFilter(*aFIt, aBase->filterArgs(*aFIt));
59     if (aFIt != aFilters.begin())
60       theDumper << ", ";
61     aFilter.dump(theDumper);
62   }
63
64   theDumper << "])";
65 }