Salome HOME
Copyright update 2021
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_BooleanCommon.cpp
1 // Copyright (C) 2014-2021  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 "FeaturesAPI_BooleanCommon.h"
21
22 #include <ModelHighAPI_Dumper.h>
23 #include <ModelHighAPI_Selection.h>
24 #include <ModelHighAPI_Tools.h>
25
26 //==================================================================================================
27 FeaturesAPI_BooleanCommon::FeaturesAPI_BooleanCommon(
28   const std::shared_ptr<ModelAPI_Feature>& theFeature)
29 : ModelHighAPI_Interface(theFeature)
30 {
31   initialize();
32 }
33
34 //==================================================================================================
35 FeaturesAPI_BooleanCommon::FeaturesAPI_BooleanCommon(
36   const std::shared_ptr<ModelAPI_Feature>& theFeature,
37   const std::list<ModelHighAPI_Selection>& theMainObjects)
38 : ModelHighAPI_Interface(theFeature)
39 {
40   if(initialize()) {
41     fillAttribute(FeaturesPlugin_BooleanCommon::CREATION_METHOD_SIMPLE(), mycreationMethod);
42     fillAttribute(theMainObjects, mymainObjects);
43
44     execute(false);
45   }
46 }
47
48 //==================================================================================================
49 FeaturesAPI_BooleanCommon::FeaturesAPI_BooleanCommon(
50   const std::shared_ptr<ModelAPI_Feature>& theFeature,
51   const std::list<ModelHighAPI_Selection>& theMainObjects,
52   const std::list<ModelHighAPI_Selection>& theToolObjects)
53 : ModelHighAPI_Interface(theFeature)
54 {
55   if(initialize()) {
56     fillAttribute(FeaturesPlugin_BooleanCommon::CREATION_METHOD_ADVANCED(), mycreationMethod);
57     fillAttribute(theMainObjects, mymainObjects);
58     fillAttribute(theToolObjects, mytoolObjects);
59
60     execute(false);
61   }
62 }
63
64 //==================================================================================================
65 FeaturesAPI_BooleanCommon::~FeaturesAPI_BooleanCommon()
66 {
67 }
68
69
70 //==================================================================================================
71 void FeaturesAPI_BooleanCommon::setMainObjects(
72   const std::list<ModelHighAPI_Selection>& theMainObjects)
73 {
74   fillAttribute(theMainObjects, mymainObjects);
75
76   execute();
77 }
78
79 //==================================================================================================
80 void FeaturesAPI_BooleanCommon::setToolObjects(
81   const std::list<ModelHighAPI_Selection>& theToolObjects)
82 {
83   fillAttribute(FeaturesPlugin_BooleanCommon::CREATION_METHOD_ADVANCED(), mycreationMethod);
84   fillAttribute(theToolObjects, mytoolObjects);
85
86   execute();
87 }
88
89 //==================================================================================================
90 void FeaturesAPI_BooleanCommon::setAdvancedMode(const bool theMode)
91 {
92   if (theMode) {
93     fillAttribute(FeaturesPlugin_BooleanCommon::CREATION_METHOD_ADVANCED(), mycreationMethod);
94   } else {
95     fillAttribute(FeaturesPlugin_BooleanCommon::CREATION_METHOD_SIMPLE(), mycreationMethod);
96   }
97
98   execute();
99 }
100
101 //==================================================================================================
102 void FeaturesAPI_BooleanCommon::dump(ModelHighAPI_Dumper& theDumper) const
103 {
104   FeaturePtr aBase = feature();
105
106   theDumper << aBase << " = model.addCommon";
107
108   const std::string& aDocName = theDumper.name(aBase->document());
109   AttributeStringPtr aMode = aBase->string(FeaturesPlugin_BooleanCommon::CREATION_METHOD());
110   AttributeSelectionListPtr anObjects =
111     aBase->selectionList(FeaturesPlugin_BooleanCommon::OBJECT_LIST_ID());
112   AttributeSelectionListPtr aTools =
113     aBase->selectionList(FeaturesPlugin_BooleanCommon::TOOL_LIST_ID());
114
115   theDumper << "(" << aDocName << ", " << anObjects;
116
117   if (aMode->value() == FeaturesPlugin_BooleanCommon::CREATION_METHOD_ADVANCED()) {
118     theDumper << ", " << aTools;
119   }
120
121   if (!aBase->data()->version().empty())
122     theDumper << ", keepSubResults = True";
123
124   theDumper << ")" << std::endl;
125 }
126
127 //==================================================================================================
128 BooleanCommonPtr addCommon(const std::shared_ptr<ModelAPI_Document>& thePart,
129                            const std::list<ModelHighAPI_Selection>& theMainObjects,
130                            const std::list<ModelHighAPI_Selection>& theToolObjects,
131                            const bool keepSubResults)
132 {
133   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_BooleanCommon::ID());
134   if (!keepSubResults)
135     aFeature->data()->setVersion("");
136   BooleanCommonPtr aCommon;
137   if (theToolObjects.empty())
138     aCommon.reset(new FeaturesAPI_BooleanCommon(aFeature, theMainObjects));
139   else
140     aCommon.reset(new FeaturesAPI_BooleanCommon(aFeature, theMainObjects, theToolObjects));
141   return aCommon;
142 }