Salome HOME
Merge branch 'Dev_GroupsRevision'
[modules/shaper.git] / src / ModelAPI / ModelAPI_Tools.h
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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef ModelAPI_Tools_HeaderFile
22 #define ModelAPI_Tools_HeaderFile
23
24 #include "ModelAPI.h"
25
26 class ModelAPI_CompositeFeature;
27 class ModelAPI_Document;
28 class ModelAPI_Feature;
29 class ModelAPI_Result;
30 class ModelAPI_ResultParameter;
31 class ModelAPI_ResultCompSolid;
32
33 class GeomAPI_Shape;
34
35 #include <memory>
36 #include <vector>
37 #include <map>
38 #include <set>
39 #include <list>
40
41 namespace ModelAPI_Tools {
42 /// Returns shape from the given Result object
43 MODELAPI_EXPORT std::shared_ptr<GeomAPI_Shape> shape(
44                                    const std::shared_ptr<ModelAPI_Result>& theResult);
45
46 /*! Returns the feature error generated according to feature error and exec state
47  * \param theFeature a feature
48  * \return error value or empty string
49  */
50 MODELAPI_EXPORT std::string getFeatureError(const std::shared_ptr<ModelAPI_Feature>& theFeature);
51
52 /*!
53  * Searches for variable with name \param theName in \param theDocument. 
54  * If found, set it value in the \param outValue and returns true.
55  * theSearcher must be located later in the history than the found variable.
56  */
57 MODELAPI_EXPORT bool findVariable(const std::shared_ptr<ModelAPI_Document>& theDocument,
58                                   std::shared_ptr<ModelAPI_Feature> theSearcher,
59                                   const std::string& theName, double& outValue,
60                                   std::shared_ptr<ModelAPI_ResultParameter>& theParam);
61
62 /*!
63  * Searches for variable with name \param theName in the active document (Part), when
64  * in the root document (PartSet). If found, set it value in the \param outValue
65  * and returns true. If \param theDocument is empty active document is used.
66  * theSearcher must be located later in the history than the found variable.
67  */
68 MODELAPI_EXPORT bool findVariable(std::shared_ptr<ModelAPI_Feature> theSearcher,
69   const std::string& theName,
70   double& outValue, std::shared_ptr<ModelAPI_ResultParameter>& theParam,
71   const std::shared_ptr<ModelAPI_Document>& theDocument = std::shared_ptr<ModelAPI_Document>());
72
73 /*!
74  * Searches for Part result that contains the reference to the given document.
75  * The result must be presented in the tree.
76  * \param theMain document that contains the searched feature
77  * \param theSub document that is searched, the resulting feature references to it
78  * \returns null if not found
79  */
80 MODELAPI_EXPORT std::shared_ptr<ModelAPI_Result> findPartResult(
81                                               const std::shared_ptr<ModelAPI_Document>& theMain,
82                                               const std::shared_ptr<ModelAPI_Document>& theSub);
83
84 /*!
85  * Searches for Part the feature that contains in result the reference to the given document.
86  * The result may be disabled.
87  * \param theMain document that contains the searched feature
88  * \param theSub document that is searched, the resulting feature references to it
89  * \returns null if not found
90  */
91 MODELAPI_EXPORT std::shared_ptr<ModelAPI_Feature> findPartFeature(
92                                            const std::shared_ptr<ModelAPI_Document>& theMain,
93                                            const std::shared_ptr<ModelAPI_Document>& theSub);
94
95 /*!
96  * Returns the composite feature - parent of this feature.
97  * \param theFeature the sub-element of composite
98  * \returns null if it is not sub-element of composite
99  */
100 MODELAPI_EXPORT std::shared_ptr<ModelAPI_CompositeFeature> compositeOwner(
101                                         const std::shared_ptr<ModelAPI_Feature>& theFeature);
102
103 /*!
104  * Returns the compsolid result - parent of this result.
105  * \param theSub the sub-element of comp-solid
106  * \returns null if it is not sub-element of composite
107  */
108 MODELAPI_EXPORT std::shared_ptr<ModelAPI_ResultCompSolid> compSolidOwner(
109                                             const std::shared_ptr<ModelAPI_Result>& theSub);
110 /*!
111  * Returns index of this result in parent (if parent exists, returned by compSolidOwner)
112  * \returns zero-base index, or -1 if not found
113  */
114 MODELAPI_EXPORT int compSolidIndex(const std::shared_ptr<ModelAPI_Result>& theSub);
115
116 /*!
117 * Returns true if the result contains a not empty list of sub results.
118 * It processes result compsolid.
119 * \param theResult a result object
120 * \returns boolean value
121 */
122 MODELAPI_EXPORT bool hasSubResults(const std::shared_ptr<ModelAPI_Result>& theResult);
123
124 /*!
125 * Adds the results of the given feature to theResults list: including disabled and sub-results
126 */
127 MODELAPI_EXPORT void allResults(const std::shared_ptr<ModelAPI_Feature>& theFeature,
128                                 std::list<std::shared_ptr<ModelAPI_Result> >& theResults);
129
130 /*!
131  Returns true if there are no parts in the document, which are not activated
132  \param theNotActivatedNames out string which contains not activated names
133  \return a boolean value
134  */
135 MODELAPI_EXPORT bool allDocumentsActivated(std::string& theNotActivatedNames);
136
137 /*! Removes features from the document
138 * \param theFeatures a list of features to be removed
139 * \param theFlushRedisplay a boolean value if the redisplay signal should be flushed
140 * \return true if at least one feature is removed
141 */
142 MODELAPI_EXPORT bool removeFeaturesAndReferences(
143                        const std::set<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
144                                                  const bool theFlushRedisplay = false,
145                                                  const bool theUseComposite = false,
146                                                  const bool theUseRecursion = true);
147
148 /*! Removes features from the document
149 * \param theFeatures a list of features to be removed
150 * \param theFlushRedisplay a boolean value if the redisplay signal should be flushed
151 * \return true if at least one feature is removed
152 */
153 MODELAPI_EXPORT bool removeFeatures(
154                             const std::set<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
155                             const bool theFlushRedisplay);
156
157 /*! Build a map of references for the given set of features
158 * \param theFeatures a list of features
159 * \param theReferences a map of all references to the features
160 * \param theUseComposite state if the composite features of the reference should be in the map
161 * \param theUseRecursion state if references for features out of the sources feature
162          list are put into the result container. E.g. if theFeatures contains "Sketch_2", map will
163          contain references to this feature also.
164 */
165 MODELAPI_EXPORT void findAllReferences(
166   const std::set<std::shared_ptr<ModelAPI_Feature> >& theFeatures,
167   std::map<std::shared_ptr<ModelAPI_Feature>,
168   std::set<std::shared_ptr<ModelAPI_Feature> > >& theReferences,
169   const bool theUseComposite = true,
170   const bool theUseRecursion = true);
171
172 /*! In the map of references find all features referenced to the source feature
173 * \param theFeatures a list of features to find references
174 * \param theReferences a map of all references to the features
175 * \param theFeaturesRefsTo an out list of referenced features
176 */
177 MODELAPI_EXPORT void findRefsToFeatures(
178   const std::set<std::shared_ptr<ModelAPI_Feature> >& aFeatures,
179   const std::map<std::shared_ptr<ModelAPI_Feature>,
180                  std::set<std::shared_ptr<ModelAPI_Feature> > >& aReferences,
181   std::set<std::shared_ptr<ModelAPI_Feature> >& aFeaturesRefsTo);
182
183 /*! Finds referenced of the feature to objects and collects concealed results.
184 * \param theFeatures a model feature
185 * \param theResults container for concealed results. It has no duplications
186 */
187 MODELAPI_EXPORT void getConcealedResults(const std::shared_ptr<ModelAPI_Feature>& theFeature,
188                                    std::list<std::shared_ptr<ModelAPI_Result> >& theResults);
189
190 /*! Return the default name of the result according the the features it depends.
191  *  Return also whether the name is get from the concealing result of parent object
192  *  (means that concealing result has user-defined name).
193  */
194 MODELAPI_EXPORT std::pair<std::string, bool> getDefaultName(
195     const std::shared_ptr<ModelAPI_Result>& theResult,
196     const int theResultIndex);
197 }
198
199 #endif