Salome HOME
Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/salome/shaper
[modules/shaper.git] / src / Model / Model_AttributeSelection.cpp
1 // Copyright (C) 2014-2020  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 "Model_AttributeSelection.h"
21 #include "Model_Application.h"
22 #include "Model_Events.h"
23 #include "Model_Data.h"
24 #include "Model_Document.h"
25 #include <Model_Objects.h>
26 #include <Model_AttributeSelectionList.h>
27 #include <Model_ResultConstruction.h>
28 #include <ModelAPI_Feature.h>
29 #include <ModelAPI_ResultBody.h>
30 #include <ModelAPI_ResultBody.h>
31 #include <ModelAPI_ResultConstruction.h>
32 #include <ModelAPI_ResultGroup.h>
33 #include <ModelAPI_ResultPart.h>
34 #include <ModelAPI_CompositeFeature.h>
35 #include <ModelAPI_Tools.h>
36 #include <ModelAPI_Session.h>
37 #include <ModelAPI_Validator.h>
38 #include <ModelGeomAlgo_Shape.h>
39 #include <Events_InfoMessage.h>
40 #include <GeomAPI_Edge.h>
41 #include <GeomAPI_Pnt.h>
42 #include <GeomAPI_ShapeIterator.h>
43 #include <GeomAPI_Vertex.h>
44 #include <GeomAPI_ShapeExplorer.h>
45 #include <GeomAlgoAPI_CompoundBuilder.h>
46 #include <GeomAlgoAPI_NExplode.h>
47 #include <Selector_Selector.h>
48
49 #include <TNaming_NamedShape.hxx>
50 #include <TNaming_Tool.hxx>
51 #include <TNaming_Builder.hxx>
52 #include <TNaming_SameShapeIterator.hxx>
53 #include <TNaming_NewShapeIterator.hxx>
54 #include <TNaming_Iterator.hxx>
55 #include <TDataStd_Integer.hxx>
56 #include <TDataStd_UAttribute.hxx>
57 #include <TDataStd_Name.hxx>
58 #include <TopTools_ListOfShape.hxx>
59 #include <TopTools_DataMapOfShapeShape.hxx>
60 #include <TopTools_MapOfShape.hxx>
61 #include <TopExp_Explorer.hxx>
62 #include <BRep_Tool.hxx>
63 #include <TopoDS.hxx>
64 #include <TopoDS_Edge.hxx>
65 #include <TopExp.hxx>
66 #include <TDF_ChildIterator.hxx>
67 #include <TDF_ChildIDIterator.hxx>
68 #include <TopoDS_Iterator.hxx>
69 #include <TDF_ChildIDIterator.hxx>
70 #include <Geom_Circle.hxx>
71 #include <Geom_Ellipse.hxx>
72 #include <Geom_TrimmedCurve.hxx>
73 #include <BRep_Builder.hxx>
74
75 //#define DEB_NAMING 1
76 #ifdef DEB_NAMING
77 #include <BRepTools.hxx>
78 #endif
79 /// added to the index in the packed map to signalize that the vertex of edge is selected
80 /// (multiplied by the index of the edge)
81 static const int kSTART_VERTEX_DELTA = 1000000;
82 // identifier that there is simple reference: selection equals to context
83 Standard_GUID kSIMPLE_REF_ID("635eacb2-a1d6-4dec-8348-471fae17cb29");
84 // reference to Part sub-object
85 Standard_GUID kPART_REF_ID("635eacb2-a1d6-4dec-8348-471fae17cb27");
86 // selection is invalid after recomputation
87 Standard_GUID kINVALID_SELECTION("bce47fd7-80fa-4462-9d63-2f58acddd49d");
88
89 // identifier of the selection of the center of circle on edge
90 Standard_GUID kCIRCLE_CENTER("d0d0e0f1-217a-4b95-8fbb-0c4132f23718");
91 // identifier of the selection of the first focus point of ellipse on edge
92 Standard_GUID kELLIPSE_CENTER1("f70df04c-3168-4dc9-87a4-f1f840c1275d");
93 // identifier of the selection of the second focus point of ellipse on edge
94 Standard_GUID kELLIPSE_CENTER2("1395ae73-8e02-4cf8-b204-06ff35873a32");
95
96 // prefix for the whole feature context identification
97 const static std::string kWHOLE_FEATURE = "all-in-";
98
99 // on this label is stored:
100 // TNaming_NamedShape - selected shape
101 // TNaming_Naming - topological selection information (for the body)
102 // TDataStd_IntPackedMap - indexes of edges in composite element (for construction)
103 // TDataStd_Integer - type of the selected shape (for construction)
104 // TDF_Reference - from ReferenceAttribute, the context
105 bool Model_AttributeSelection::setValue(const ObjectPtr& theContext,
106   const std::shared_ptr<GeomAPI_Shape>& theSubShape, const bool theTemporarily)
107 {
108   if (theTemporarily) {
109     // just keep the stored without DF update
110     myTmpContext = theContext;
111     myTmpSubShape = theSubShape;
112     owner()->data()->sendAttributeUpdated(this);
113     return true;
114   } else {
115     myTmpContext.reset();
116     myTmpSubShape.reset();
117     myTmpCenterType = NOT_CENTER;
118   }
119
120   CenterType aType;
121   const std::shared_ptr<GeomAPI_Shape>& anOldShape = internalValue(aType);
122   bool isOldContext = theContext == myRef.value();
123   bool isOldShape = isOldContext &&
124     (theSubShape == anOldShape || (theSubShape && anOldShape && theSubShape->isEqual(anOldShape)));
125   if (isOldShape) return false; // shape is the same, so context is also unchanged
126   bool aToUnblock = false;
127   // update the referenced object if needed
128   if (!isOldContext) {
129     aToUnblock = !owner()->data()->blockSendAttributeUpdated(true);
130     myRef.setValue(theContext);
131   }
132
133   // do not use naming if selected shape is result shape itself, but not sub-shape
134   TDF_Label aSelLab = selectionLabel();
135   aSelLab.ForgetAttribute(kSIMPLE_REF_ID);
136   aSelLab.ForgetAttribute(kINVALID_SELECTION);
137   aSelLab.ForgetAttribute(kCIRCLE_CENTER);
138   aSelLab.ForgetAttribute(kELLIPSE_CENTER1);
139   aSelLab.ForgetAttribute(kELLIPSE_CENTER2);
140
141   bool isDegeneratedEdge = false;
142   // do not use the degenerated edge as a shape, a null context and shape is used in the case
143   if (theSubShape.get() && !theSubShape->isNull() && theSubShape->isEdge()) {
144     const TopoDS_Shape& aSubShape = theSubShape->impl<TopoDS_Shape>();
145     if (aSubShape.ShapeType() == TopAbs_EDGE)
146       isDegeneratedEdge = BRep_Tool::Degenerated(TopoDS::Edge(aSubShape)) == Standard_True;
147   }
148   if (!theContext.get() || isDegeneratedEdge) {
149     // to keep the reference attribute label
150     TDF_Label aRefLab = myRef.myRef->Label();
151     aSelLab.ForgetAllAttributes(true);
152     myRef.myRef = TDF_Reference::Set(aSelLab.Father(), aSelLab.Father());
153     if (aToUnblock)
154       owner()->data()->blockSendAttributeUpdated(false);
155     return false;
156   }
157   bool isSelectBody = theContext->groupName() == ModelAPI_ResultBody::group();
158   if (!isSelectBody) {
159     ResultConstructionPtr aContextConstruction =
160       std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(theContext);
161     isSelectBody = aContextConstruction.get() && !aContextConstruction->isInfinite();
162   }
163   if (isSelectBody) {
164     ResultPtr aContextResult = std::dynamic_pointer_cast<ModelAPI_Result>(theContext);
165     GeomShapePtr aContextShape = aContextResult->shape();
166     // do not select the whole shape for body:it is already must be in the data framework
167     // equal and null selected objects mean the same: object is equal to context,
168     if (aContextShape.get() && (aContextShape->isEqual(theSubShape) || !theSubShape.get())) {
169       aSelLab.ForgetAllAttributes(true);
170       TDataStd_UAttribute::Set(aSelLab, kSIMPLE_REF_ID);
171     } else {
172       selectBody(aContextResult, theSubShape);
173     }
174   } else if (theContext->groupName() == ModelAPI_ResultConstruction::group()) {
175     aSelLab.ForgetAllAttributes(true); // to remove old selection data
176     std::shared_ptr<Model_ResultConstruction> aConstruction =
177       std::dynamic_pointer_cast<Model_ResultConstruction>(theContext);
178     std::shared_ptr<GeomAPI_Shape> aSubShape;
179     if (theSubShape.get() && !aConstruction->shape()->isEqual(theSubShape))
180       aSubShape = theSubShape; // the whole context
181   } else if (theContext->groupName() == ModelAPI_ResultPart::group()) {
182     aSelLab.ForgetAllAttributes(true);
183     TDataStd_UAttribute::Set(aSelLab, kPART_REF_ID);
184     selectPart(std::dynamic_pointer_cast<ModelAPI_Result>(theContext), theSubShape);
185   } else if (theContext->groupName() == ModelAPI_ResultGroup::group()) {
186     aSelLab.ForgetAllAttributes(true);
187     TDataStd_UAttribute::Set(aSelLab, kSIMPLE_REF_ID);
188   } else { // check the feature context: only construction features of PartSet could be selected
189     FeaturePtr aFeatureContext = std::dynamic_pointer_cast<ModelAPI_Feature>(theContext);
190     if (aFeatureContext.get() && owner()->document() != aFeatureContext->document()) {
191       if (aFeatureContext->results().empty() ||
192           aFeatureContext->firstResult()->groupName() != ModelAPI_ResultConstruction::group()) {
193         aSelLab.ForgetAllAttributes(true);
194         myRef.setValue(ObjectPtr());
195         if (aToUnblock)
196           owner()->data()->blockSendAttributeUpdated(false);
197         return false;
198       }
199     }
200   }
201
202   owner()->data()->sendAttributeUpdated(this);
203
204   if (aToUnblock)
205     owner()->data()->blockSendAttributeUpdated(false);
206
207   return true;
208 }
209
210 void Model_AttributeSelection::setValueCenter(
211     const ObjectPtr& theContext, const std::shared_ptr<GeomAPI_Edge>& theEdge,
212     const CenterType theCenterType, const bool theTemporarily)
213 {
214   bool anUpdated = setValue(theContext, theEdge, theTemporarily);
215   if (theTemporarily) {
216     myTmpCenterType = theCenterType;
217   } else { // store in the data structure
218     TDF_Label aSelLab = selectionLabel();
219     switch(theCenterType) {
220     case CIRCLE_CENTER:
221       if (!anUpdated)
222         anUpdated = !aSelLab.IsAttribute(kCIRCLE_CENTER);
223       TDataStd_UAttribute::Set(aSelLab, kCIRCLE_CENTER);
224       break;
225     case ELLIPSE_FIRST_FOCUS:
226       if (!anUpdated)
227         anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER1);
228       TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER1);
229       break;
230     case ELLIPSE_SECOND_FOCUS:
231       if (!anUpdated)
232         anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER2);
233       TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER2);
234       break;
235     }
236     if (anUpdated)
237       owner()->data()->sendAttributeUpdated(this);
238   }
239 }
240
241 void Model_AttributeSelection::selectValue(
242     const std::shared_ptr<ModelAPI_AttributeSelection>& theSource)
243 {
244   CenterType aType;
245   std::shared_ptr<GeomAPI_Shape> aValue =
246     std::dynamic_pointer_cast<Model_AttributeSelection>(theSource)->internalValue(aType);
247   if (!aValue.get() || aType == NOT_CENTER) {
248     setValue(theSource->context(), aValue);
249   } else {
250     std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge);
251     anEdge->setImpl(new TopoDS_Shape(aValue->impl<TopoDS_Shape>()));
252     setValueCenter(theSource->context(), anEdge, aType);
253   }
254 }
255
256 void Model_AttributeSelection::removeTemporaryValues()
257 {
258   if (myTmpContext.get() || myTmpSubShape.get()) {
259     myTmpContext.reset();
260     myTmpSubShape.reset();
261   }
262 }
263
264 // returns the center of the edge: circular or elliptic
265 GeomShapePtr centerByEdge(GeomShapePtr theEdge, ModelAPI_AttributeSelection::CenterType theType)
266 {
267   if (theType != ModelAPI_AttributeSelection::NOT_CENTER && theEdge.get() != NULL) {
268     TopoDS_Shape aShape = theEdge->impl<TopoDS_Shape>();
269     if (!aShape.IsNull() && aShape.ShapeType() == TopAbs_EDGE) {
270       TopoDS_Edge anEdge = TopoDS::Edge(aShape);
271       double aFirst, aLast;
272       Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, aFirst, aLast);
273       if (!aCurve.IsNull()) {
274         TopoDS_Vertex aVertex;
275         BRep_Builder aBuilder;
276         if (theType == ModelAPI_AttributeSelection::CIRCLE_CENTER) {
277           while(!aCurve.IsNull() && aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
278             aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve();
279           Handle(Geom_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve);
280           if (!aCirc.IsNull()) {
281             aBuilder.MakeVertex(aVertex, aCirc->Location(), Precision::Confusion());
282           }
283         } else { // ellipse
284           while(!aCurve.IsNull() && aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
285             aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve();
286           Handle(Geom_Ellipse) anEll = Handle(Geom_Ellipse)::DownCast(aCurve);
287           if (!anEll.IsNull()) {
288             aBuilder.MakeVertex(aVertex,
289               theType == ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS ?
290               anEll->Focus1() : anEll->Focus2(), Precision::Confusion());
291           }
292         }
293         if (!aVertex.IsNull()) {
294           std::shared_ptr<GeomAPI_Vertex> aResult(new GeomAPI_Vertex);
295           aResult->setImpl(new TopoDS_Vertex(aVertex));
296           return aResult;
297         }
298       }
299     }
300   }
301   return theEdge; // no vertex, so, return the initial edge
302 }
303
304 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::value()
305 {
306   if (!myRef.isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
307     return std::shared_ptr<GeomAPI_Shape>();
308   CenterType aType = NOT_CENTER;
309   std::shared_ptr<GeomAPI_Shape> aResult = internalValue(aType);
310   return centerByEdge(aResult, aType);
311 }
312
313 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::internalValue(CenterType& theType)
314 {
315   theType = NOT_CENTER;
316   GeomShapePtr aResult;
317   if (myTmpContext.get() || myTmpSubShape.get()) {
318     theType = myTmpCenterType;
319     ResultConstructionPtr aResulConstruction =
320       std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(myTmpContext);
321     if(aResulConstruction.get()) {
322       // it is just reference to construction.
323       return myTmpSubShape;
324     }
325     FeaturePtr aFeature =
326       std::dynamic_pointer_cast<ModelAPI_Feature>(myTmpContext);
327     if (aFeature.get()) {
328       // it is just reference to construction.
329       return myTmpSubShape;
330     }
331     return myTmpSubShape.get() ? myTmpSubShape :
332       std::dynamic_pointer_cast<ModelAPI_Result>(myTmpContext)->shape();
333   }
334
335   TDF_Label aSelLab = selectionLabel();
336   if (aSelLab.IsAttribute(kINVALID_SELECTION))
337     return aResult;
338
339   if (aSelLab.IsAttribute(kCIRCLE_CENTER))
340     theType = CIRCLE_CENTER;
341   else if (aSelLab.IsAttribute(kELLIPSE_CENTER1))
342     theType = ELLIPSE_FIRST_FOCUS;
343   else if (aSelLab.IsAttribute(kELLIPSE_CENTER2))
344     theType = ELLIPSE_SECOND_FOCUS;
345
346
347   if (myRef.isInitialized()) {
348     if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
349       ResultPtr aContext = context();
350       if (!aContext.get() || aContext->groupName() == ModelAPI_ResultConstruction::group())
351         return aResult; // empty result, for whole construction selection also
352       return aContext->shape();
353     }
354     if (aSelLab.IsAttribute(kPART_REF_ID)) {
355       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(context());
356       if (!aPart.get() || !aPart->isActivated())
357         return std::shared_ptr<GeomAPI_Shape>(); // postponed naming needed
358       Handle(TDataStd_Integer) anIndex;
359       if (aSelLab.FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
360         if (anIndex->Get()) { // special selection attribute was created, use it
361           return aPart->selectionValue(anIndex->Get());
362         } else { // face with name is already in the data model, so try to take it by name
363           Handle(TDataStd_Name) aName;
364           if (aSelLab.FindAttribute(TDataStd_Name::GetID(), aName)) {
365             std::string aSubShapeName(TCollection_AsciiString(aName->Get()).ToCString());
366             std::size_t aPartEnd = aSubShapeName.find('/');
367             if (aPartEnd != std::string::npos && aPartEnd != aSubShapeName.rfind('/')) {
368               std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
369               int anIndex;
370               std::string aType; // to reuse already existing selection the type is not needed
371               return aPart->shapeInPart(aNameInPart, aType, anIndex);
372             }
373           }
374         }
375       }
376     }
377
378     std::shared_ptr<Model_ResultConstruction> aConstr =
379       std::dynamic_pointer_cast<Model_ResultConstruction>(context());
380     if (aConstr) {
381       if (aConstr->isInfinite())
382         return aResult; // empty result
383     }
384     if (!aConstr.get()) { // for construction context, return empty result as usual even
385       // the whole feature is selected
386       FeaturePtr aFeature = contextFeature();
387       if (aFeature.get()) {
388         std::list<GeomShapePtr> allShapes;
389         std::list<ResultPtr>::const_iterator aRes = aFeature->results().cbegin();
390         for (; aRes != aFeature->results().cend(); aRes++) {
391           if (aRes->get() && !(*aRes)->isDisabled()) {
392             GeomShapePtr aShape = (*aRes)->shape();
393             if (aShape.get() && !aShape->isNull()) {
394               allShapes.push_back(aShape);
395             }
396           }
397         }
398         return GeomAlgoAPI_CompoundBuilder::compound(allShapes);
399       }
400     } else {
401       if (contextFeature().get()) {
402         return aResult; // for the whole sketch feature selected return null => all faces
403       }
404     }
405
406     Handle(TNaming_NamedShape) aSelection;
407     if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
408       TopoDS_Shape aSelShape = aSelection->Get();
409       aResult = std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape);
410       aResult->setImpl(new TopoDS_Shape(aSelShape));
411     } else if (aConstr) { // simple construction element: just shape of this construction element
412       aResult = aConstr->shape();
413     }
414   }
415   return aResult;
416 }
417
418 bool Model_AttributeSelection::isInvalid()
419 {
420   return selectionLabel().IsAttribute(kINVALID_SELECTION) == Standard_True;
421 }
422
423 bool Model_AttributeSelection::isInitialized()
424 {
425   if (myRef.isInitialized()) {
426     TDF_Label aSelLab = selectionLabel();
427     // it is just reference to shape, not sub-shape
428     if (aSelLab.IsAttribute(kSIMPLE_REF_ID) || aSelLab.IsAttribute(kPART_REF_ID)) {
429       ResultPtr aContext = context();
430       return aContext.get() != NULL;
431     }
432     Handle(TNaming_NamedShape) aSelection;
433     if (selectionLabel().FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
434       return !aSelection->Get().IsNull();
435     } else { // for simple construction element: just shape of this construction element
436       if (myRef.value().get())
437         return true;
438       // check that this is on open of document, so, results are not initialized yet
439       TDF_Label aRefLab = myRef.myRef->Get();
440       if (aRefLab.IsNull() || !owner().get())
441         return false;
442       std::shared_ptr<Model_Document> aMyDoc =
443         std::dynamic_pointer_cast<Model_Document>(owner()->document());
444       if (!aMyDoc.get())
445         return false;
446       // check at least the feature exists
447       return aMyDoc->featureByLab(aRefLab).get() != NULL;
448     }
449   }
450   return false;
451 }
452
453 Model_AttributeSelection::Model_AttributeSelection(TDF_Label& theLabel)
454 : myRef(theLabel),
455   myIsGeometricalSelection(false)
456 {
457   myIsInitialized = myRef.isInitialized();
458   myParent = NULL;
459 }
460
461 void Model_AttributeSelection::setID(const std::string theID)
462 {
463   myRef.setID(theID);
464   ModelAPI_AttributeSelection::setID(theID);
465   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
466   if (myParent) {
467     // to be able to select as geometrical selection and then - split
468     myIsGeometricalSelection = true; // myParent->isGeometricalSelection();
469   } else {
470     myIsGeometricalSelection =
471       ModelAPI_Session::get()->validators()->isGeometricalSelection(aFeature->getKind(), id());
472   }
473 }
474
475 ResultPtr Model_AttributeSelection::context()
476 {
477   if (!myRef.isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
478     return ResultPtr();
479
480   if (myTmpContext.get() || myTmpSubShape.get()) {
481     return std::dynamic_pointer_cast<ModelAPI_Result>(myTmpContext);
482   }
483
484   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
485   // for parts there could be same-data result, so take the last enabled
486   if (aResult.get()) {
487     if(aResult->groupName() == ModelAPI_ResultPart::group()) {
488       int aSize = aResult->document()->size(ModelAPI_ResultPart::group());
489       for(int a = aSize - 1; a >= 0; a--) {
490         ObjectPtr aPart = aResult->document()->object(ModelAPI_ResultPart::group(), a);
491         if(aPart.get() && aPart->data() == aResult->data()) {
492           ResultPtr aPartResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPart);
493           FeaturePtr anOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
494           // check that this result is not this-feature result (it is forbidden to select itself)
495           if(anOwnerFeature.get() && anOwnerFeature->firstResult() != aPartResult) {
496             return aPartResult;
497           }
498         }
499       }
500     }
501   } else { // if feature - construction is selected, it has only one result, return this result
502     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
503     if (aFeature.get() && aFeature->results().size() == 1 &&
504         aFeature->firstResult()->groupName() == ModelAPI_ResultConstruction::group())
505       return aFeature->firstResult();
506   }
507   return aResult;
508 }
509
510 FeaturePtr Model_AttributeSelection::contextFeature() {
511   if (myTmpContext.get()) {
512     return std::dynamic_pointer_cast<ModelAPI_Feature>(myTmpContext);
513   }
514   return std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
515 }
516 ObjectPtr Model_AttributeSelection::contextObject() {
517   FeaturePtr aRes = contextFeature();
518   if (aRes.get())
519     return aRes;
520   return context();
521 }
522
523
524 void Model_AttributeSelection::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
525 {
526   ModelAPI_AttributeSelection::setObject(theObject);
527   myRef.setObject(theObject);
528 }
529
530 /// Sets the invalid flag if flag is false, or removes it if "true"
531 /// Returns theFlag
532 static bool setInvalidIfFalse(TDF_Label& theLab, const bool theFlag) {
533   if (theFlag) {
534     theLab.ForgetAttribute(kINVALID_SELECTION);
535   } else {
536     TDataStd_UAttribute::Set(theLab, kINVALID_SELECTION);
537   }
538   return theFlag;
539 }
540
541 void Model_AttributeSelection::split(
542   ResultPtr theContext, TopoDS_Shape theNewShape, TopAbs_ShapeEnum theType)
543 {
544   TopTools_ListOfShape aSubs;
545   for(TopoDS_Iterator anExplorer(theNewShape); anExplorer.More(); anExplorer.Next()) {
546     if (!anExplorer.Value().IsNull() &&
547       anExplorer.Value().ShapeType() == theType) {
548         aSubs.Append(anExplorer.Value());
549     } else { // invalid case; bad result shape, so, impossible to split easily
550       aSubs.Clear();
551       break;
552     }
553   }
554   if (aSubs.Extent() > 1) { // ok to split
555     TopTools_ListIteratorOfListOfShape aSub(aSubs);
556     GeomShapePtr aSubSh(new GeomAPI_Shape);
557     aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
558     setValue(theContext, aSubSh);
559     for(aSub.Next(); aSub.More(); aSub.Next()) {
560       GeomShapePtr aSubSh(new GeomAPI_Shape);
561       aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
562       myParent->append(theContext, aSubSh);
563     }
564   }
565 }
566
567 bool Model_AttributeSelection::update()
568 {
569   FeaturePtr aContextFeature = contextFeature();
570   if (aContextFeature.get()) {
571     owner()->data()->sendAttributeUpdated(this);  // send updated if "update" called in any way
572     return true;
573   }
574   TDF_Label aSelLab = selectionLabel();
575   ResultPtr aContext = context();
576   if (!aContext.get())
577     return setInvalidIfFalse(aSelLab, false);
578   if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
579     return setInvalidIfFalse(aSelLab, aContext->shape() && !aContext->shape()->isNull());
580   }
581
582   if (aSelLab.IsAttribute(kPART_REF_ID)) { // it is reference to the part object
583     std::shared_ptr<GeomAPI_Shape> aNoSelection;
584     bool aResult = selectPart(aContext, aNoSelection, true);
585     aResult = setInvalidIfFalse(aSelLab, aResult);
586     if (aResult) {
587       owner()->data()->sendAttributeUpdated(this);
588     }
589     return aResult;
590   }
591
592   if (aContext->groupName() == ModelAPI_ResultBody::group()) {
593     // body: just a named shape, use topological selection mechanism
594     bool aResult = false;
595     TopoDS_Shape anOldShape;
596     Handle(TNaming_NamedShape) aNS;
597     if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
598       anOldShape = aNS->Get();
599
600     TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
601     Selector_Selector aSelector(aSelLab, baseDocumentLab());
602     aResult = aSelector.restore(aContextShape);
603     bool aWasInvalid = aSelLab.IsAttribute(kINVALID_SELECTION);
604     setInvalidIfFalse(aSelLab, aResult);
605
606     TopoDS_Shape aNewShape;
607     if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
608       aNewShape = aNS->Get();
609
610     if (anOldShape.IsNull() || aNewShape.IsNull() || !anOldShape.IsEqual(aNewShape) || aWasInvalid)
611     {
612       // shape type should not be changed: if shape becomes compound of such shapes, then split
613       if (myParent && !anOldShape.IsNull() && !aNewShape.IsNull() &&
614           anOldShape.ShapeType() != aNewShape.ShapeType() &&
615           aNewShape.ShapeType() == TopAbs_COMPOUND) {
616         split(aContext, aNewShape, anOldShape.ShapeType());
617       }
618       // for issue #3076 check that the new value belongs to the new context
619       if (!aNewShape.IsNull() && !aContextShape.IsNull() &&
620           (aNewShape.ShapeType() == TopAbs_VERTEX || aNewShape.ShapeType() == TopAbs_EDGE ||
621            aNewShape.ShapeType() == TopAbs_FACE)) {
622         TopExp_Explorer anExp(aContextShape, aNewShape.ShapeType());
623         for(; anExp.More(); anExp.Next()) {
624           if (anExp.Current().IsSame(aNewShape))
625             break;
626         }
627         aResult = setInvalidIfFalse(aSelLab, anExp.More());
628       }
629       owner()->data()->sendAttributeUpdated(this);  // send updated if shape is changed
630     }
631     return aResult;
632   }
633
634   if (aContext->groupName() == ModelAPI_ResultConstruction::group()) {
635     bool aResult = true;
636     std::shared_ptr<Model_ResultConstruction> aConstructionContext =
637       std::dynamic_pointer_cast<Model_ResultConstruction>(aContext);
638     if (!aConstructionContext->isInfinite()) {
639       TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
640       Selector_Selector aSelector(aSelLab, baseDocumentLab());
641       TopoDS_Shape anOldShape = aSelector.value();
642       aResult = aSelector.restore(aContextShape);
643       setInvalidIfFalse(aSelLab, aResult);
644       if (aResult && !anOldShape.IsEqual(aSelector.value()))
645         owner()->data()->sendAttributeUpdated(this);  // send updated if shape is changed
646     } else {
647       owner()->data()->sendAttributeUpdated(this);  // send updated if "update" called in any way
648     }
649     return aResult;
650   }
651   return setInvalidIfFalse(aSelLab, false); // unknown case
652 }
653
654 void Model_AttributeSelection::selectBody(
655   const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape)
656 {
657   // perform the selection
658   TopoDS_Shape aContext;
659
660   ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(theContext);
661   if (aBody) {
662     aContext = aBody->shape()->impl<TopoDS_Shape>();
663   } else {
664     ResultPtr aResult =
665       std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
666     if (aResult) {
667       aContext = aResult->shape()->impl<TopoDS_Shape>();
668     } else {
669       Events_InfoMessage("Model_AttributeSelection", "A result with shape is expected").send();
670       return;
671     }
672   }
673
674   if (!aContext.IsNull()) {
675     TDF_Label aSelLab = selectionLabel();
676     TopoDS_Shape aNewSub = theSubShape->impl<TopoDS_Shape>();
677
678     bool aSelectorOk = true;
679     Selector_Selector aSelector(aSelLab, baseDocumentLab());
680     try {
681       aSelectorOk = aSelector.select(aContext, aNewSub, myIsGeometricalSelection);
682       if (aSelectorOk) {
683         aSelectorOk = aSelector.store(aContext);
684       }
685     } catch(...) {
686       aSelectorOk = false;
687     }
688     if (aSelectorOk) {
689       TopoDS_Shape aShape = aSelector.value();
690       aSelectorOk = !aShape.IsNull() && aShape.ShapeType() == aNewSub.ShapeType();
691     }
692     setInvalidIfFalse(aSelLab, aSelectorOk);
693   }
694 }
695
696 bool Model_AttributeSelection::selectPart(
697   const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
698   const bool theUpdate)
699 {
700   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theContext);
701   if (!aPart.get() || !aPart->isActivated())
702     return true; // postponed naming
703   if (theUpdate) {
704     Handle(TDataStd_Integer) anIndex;
705     if (selectionLabel().FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
706       // by internal selection
707       if (anIndex->Get() > 0) {
708         // update the selection by index
709         return aPart->updateInPart(anIndex->Get());
710       } else {
711         return true; // nothing to do, referencing just by name
712       }
713     }
714     return true; // nothing to do, referencing just by name
715   }
716   // store the shape (in case part is not loaded it should be useful
717   TopoDS_Shape aShape;
718   std::string aName = theContext->data()->name();
719   if (!theSubShape.get() || theSubShape->isNull()) {// the whole part shape is selected
720     aShape = theContext->shape()->impl<TopoDS_Shape>();
721   } else {
722     aShape = theSubShape->impl<TopoDS_Shape>();
723     int anIndex;
724     aName += "/" + aPart->nameInPart(theSubShape, anIndex);
725     TDataStd_Integer::Set(selectionLabel(), anIndex);
726   }
727   TNaming_Builder aBuilder(selectionLabel());
728   aBuilder.Select(aShape, aShape);
729   // identify by name in the part
730   TDataStd_Name::Set(selectionLabel(), aName.c_str());
731   return !aName.empty();
732 }
733
734 TDF_Label Model_AttributeSelection::selectionLabel()
735 {
736   return myRef.myRef->Label().FindChild(1);
737 }
738
739 /// prefixes of the shape names with centers defined
740 static std::map<ModelAPI_AttributeSelection::CenterType, std::string> kCENTERS_PREFIX;
741
742 /// returns the map that contains all possible prefixes of the center-names
743 static std::map<ModelAPI_AttributeSelection::CenterType, std::string>& centersMap()
744 {
745   if (kCENTERS_PREFIX.empty()) { // fill map by initial values
746     kCENTERS_PREFIX[ModelAPI_AttributeSelection::CIRCLE_CENTER] = "__cc";
747     kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS] = "__eff";
748     kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_SECOND_FOCUS] = "__esf";
749   }
750   return kCENTERS_PREFIX;
751 }
752
753 std::string Model_AttributeSelection::namingName(const std::string& theDefaultName)
754 {
755   std::string aName("");
756   if(!this->isInitialized())
757     return !theDefaultName.empty() ? theDefaultName : aName;
758
759   // not argument has not parametric name (filters)
760   if (!this->isArgument() || (myParent && !myParent->isArgument())) {
761     GeomShapePtr aShape = value();
762     if (!aShape.get() && context().get())
763       aShape = context()->shape();
764     std::string aName;
765     if (aShape.get()) {
766       aName = aShape->shapeTypeStr();
767       if (myParent) {
768         aName += std::string("_") +
769           TCollection_AsciiString(selectionLabel().Father().Tag()).ToCString();
770       }
771     }
772     return aName;
773   }
774
775   CenterType aCenterType = NOT_CENTER;
776   std::shared_ptr<GeomAPI_Shape> aSubSh = internalValue(aCenterType);
777
778   FeaturePtr aContFeature = contextFeature();
779   if (aContFeature.get()) {
780     std::string aResName;
781     // checking part-owner
782     if (aContFeature->document() != owner()->document())
783         aResName += aContFeature->document()->kind() + "/";
784     // selection of a full feature
785     if (aContFeature.get()) {
786       return aResName + kWHOLE_FEATURE + aContFeature->name();
787     }
788     // in case of selection of removed result
789     return "";
790   }
791
792   ResultPtr aCont = context();
793   if (!aCont.get()) {
794     return ""; // invalid case
795   }
796   TDF_Label aSelLab = selectionLabel();
797   if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // whole context, no value
798     return contextName(aCont);
799   }
800
801   // if it is in result of another part
802   if (aCont->groupName() == ModelAPI_ResultPart::group()) {
803     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aCont);
804     int anIndex;
805     std::string aResult = aSubSh.get() ?
806       aPart->data()->name() + "/" + aPart->nameInPart(aSubSh, anIndex) : aPart->data()->name();
807     if (aCenterType != NOT_CENTER)
808       aResult += centersMap()[aCenterType];
809     return aResult;
810   }
811
812   // whole infinitive construction
813   if (aCont->groupName() == ModelAPI_ResultConstruction::group()) {
814     ResultConstructionPtr aConstr = std::dynamic_pointer_cast<Model_ResultConstruction>(aCont);
815     if (aConstr->isInfinite()) {
816       return contextName(aCont);
817     }
818   }
819
820   Selector_Selector aSelector(aSelLab, baseDocumentLab());
821   std::string aResult;
822   if (aCont->shape().get() && aSelector.restore(aCont->shape()->impl<TopoDS_Shape>()))
823     aResult = aSelector.name(this);
824   if (aCenterType != NOT_CENTER) {
825     aResult += centersMap()[aCenterType];
826   }
827   return aResult;
828 }
829
830 // returns the center type and modifies the shape name if this name is center-name
831 static ModelAPI_AttributeSelection::CenterType centerTypeByName(std::string& theShapeName)
832 {
833   std::map<ModelAPI_AttributeSelection::CenterType, std::string>::iterator aPrefixIter =
834     centersMap().begin();
835   for(; aPrefixIter != centersMap().end(); aPrefixIter++) {
836     std::size_t aFound = theShapeName.find(aPrefixIter->second);
837     if (aFound != std::string::npos &&
838         aFound == theShapeName.size() - aPrefixIter->second.size()) {
839       theShapeName = theShapeName.substr(0, aFound);
840       return aPrefixIter->first;
841     }
842   }
843   return ModelAPI_AttributeSelection::NOT_CENTER;
844 }
845
846 // type ::= COMP | COMS | SOLD | SHEL | FACE | WIRE | EDGE | VERT
847 void Model_AttributeSelection::selectSubShape(
848   const std::string& theType, const std::string& theSubShapeName)
849 {
850   if(theSubShapeName.empty() || theType.empty()) return;
851
852   std::string aSubShapeName = theSubShapeName;
853   CenterType aCenterType = theType[0] == 'v' || theType[0] == 'V' ? // only for vertex-type
854     centerTypeByName(aSubShapeName) : NOT_CENTER;
855   std::string aType = aCenterType == NOT_CENTER ? theType : "EDGE"; // search for edge now
856   static const GeomShapePtr anEmptyShape;
857
858   // first iteration is selection by name without center prefix, second - in case of problem,
859   // try with initial name
860   for(int aUseCenter = 1; aUseCenter >= 0; aUseCenter--)  {
861     if (aUseCenter == 0 && aCenterType != NOT_CENTER) {
862       aSubShapeName = theSubShapeName;
863       aCenterType = NOT_CENTER;
864       aType = theType;
865     } else if (aUseCenter != 1) continue;
866     TopAbs_ShapeEnum aShapeType =  TopAbs_ShapeEnum(GeomAPI_Shape::shapeTypeByStr(aType));
867
868     std::shared_ptr<Model_Document> aDoc =
869       std::dynamic_pointer_cast<Model_Document>(owner()->document());
870     // check this is Part-name: 2 delimiters in the name
871     std::size_t aPartEnd = aSubShapeName.find('/');
872     if (aPartEnd != std::string::npos) {
873       std::string aPartName = aSubShapeName.substr(0, aPartEnd);
874       DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
875       if (aPartName == aRootDoc->kind()) {
876         aDoc = std::dynamic_pointer_cast<Model_Document>(aRootDoc);
877         aSubShapeName = aSubShapeName.substr(aPartEnd + 1);
878       }
879       else {
880         ObjectPtr aFound =
881           owner()->document()->objectByName(ModelAPI_ResultPart::group(), aPartName);
882         if (aFound.get()) { // found such part, so asking it for the name
883           ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFound);
884           std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
885           if (aNameInPart.empty()) { // whole part
886             setValue(aPart, anEmptyShape);
887             return;
888           }
889           int anIndex;
890           std::shared_ptr<GeomAPI_Shape> aSelected =
891             aPart->shapeInPart(aNameInPart, aType, anIndex);
892           if (aSelected.get()) {
893             if (aCenterType != NOT_CENTER) {
894               if (!aSelected->isEdge())
895                 continue;
896               std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aSelected));
897               setValueCenter(aPart, aSelectedEdge, aCenterType);
898             }
899             else
900               setValue(aPart, aSelected);
901             TDataStd_Integer::Set(selectionLabel(), anIndex);
902             return;
903           }
904         } else { // for the ImportResult feature Objects widget this may be a result in other part
905        // result may be hidden (like, tranlsatiomn of part) in PartSet, so iterate Part-features
906           int aNum = aRootDoc->size(ModelAPI_Feature::group());
907           for (int a = 0; a < aNum; a++) {
908             FeaturePtr aFeat = std::dynamic_pointer_cast<ModelAPI_Feature>(
909               aRootDoc->object(ModelAPI_Feature::group(), a));
910             if (aFeat.get() && aFeat->data() && aFeat->data()->isValid() &&
911               aFeat->getKind() == "Part" && aFeat->results().size()) {
912               ResultPartPtr aPart =
913                 std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFeat->firstResult());
914               if (aPart.get() && aPart->partDoc().get() && aPart->data()->name() == aPartName) {
915                 aDoc = std::dynamic_pointer_cast<Model_Document>(aPart->partDoc());
916                 aSubShapeName = aSubShapeName.substr(aPartEnd + 1);
917               }
918             }
919           }
920         }
921       }
922     }
923
924     // check this is a whole feature context
925     if (aSubShapeName.size() > kWHOLE_FEATURE.size() &&
926       aSubShapeName.substr(0, kWHOLE_FEATURE.size()) == kWHOLE_FEATURE) {
927       std::string aFeatureName = aSubShapeName.substr(kWHOLE_FEATURE.size());
928       ObjectPtr anObj = aDoc->objectByName(ModelAPI_Feature::group(), aFeatureName);
929       if (anObj.get()) {
930         setValue(anObj, anEmptyShape);
931         return;
932       }
933     }
934
935     // the whole result selection check
936     if (aSubShapeName.find('/') == std::string::npos) {
937       ObjectPtr aRes = aDoc->objectByName(ModelAPI_ResultConstruction::group(), aSubShapeName);
938       if (!aRes.get()) {
939         aRes = aDoc->objectByName(ModelAPI_ResultBody::group(), aSubShapeName);
940         if (!aRes.get())
941           aRes = aDoc->objectByName(ModelAPI_ResultGroup::group(), aSubShapeName);
942       }
943       if (aRes.get()) {
944         setValue(aRes, anEmptyShape);
945         return;
946       }
947     }
948
949     Selector_Selector aSelector(selectionLabel(), baseDocumentLab());
950     myRestoreDocument = aDoc;
951     TDF_Label aContextLabel = aSelector.restoreByName(
952       aSubShapeName, aShapeType, this, myIsGeometricalSelection);
953     myRestoreDocument.reset();
954     if (!aContextLabel.IsNull()) {
955       ResultPtr aContext = aDoc->resultByLab(aContextLabel); // any label for document access
956       if (aContext.get() && aContext->shape().get()) {
957         TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
958         if (aSelector.solve(aContextShape)) {
959           TopoDS_Shape aSelectorShape = aSelector.value();
960           GeomShapePtr aShapeToBeSelected(new GeomAPI_Shape);
961           aShapeToBeSelected->setImpl<TopoDS_Shape>(new TopoDS_Shape(aSelectorShape));
962           // make the context result the latest existing
963           aContext = newestContext(aContext, aShapeToBeSelected);
964           if (myIsGeometricalSelection || aCenterType == NOT_CENTER) {
965             // store the currently generated name
966             selectionLabel().ForgetAllAttributes(true);
967             bool aToUnblock = false;
968             aToUnblock = !owner()->data()->blockSendAttributeUpdated(true);
969             myRef.setValue(aContext);
970             aSelector.store(aContextShape);
971             owner()->data()->sendAttributeUpdated(this);
972             if (aToUnblock)
973               owner()->data()->blockSendAttributeUpdated(false);
974             return;
975           } else { // re-select center of circle/arc by context and value
976             if (!aShapeToBeSelected->isEdge())
977               continue;
978             std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aShapeToBeSelected));
979             setValueCenter(aContext, aSelectedEdge, aCenterType);
980           }
981           return;
982         }
983       }
984     }
985   }
986   // invalid
987   TDF_Label aSelLab = selectionLabel();
988   setInvalidIfFalse(aSelLab, false);
989   reset();
990 }
991
992 void Model_AttributeSelection::selectSubShape(const std::string& theType,
993                                               const GeomPointPtr& thePoint)
994 {
995   if (theType.empty() || !thePoint)
996     return;
997
998   // list of parent features
999   FeaturePtr anOwner = ModelAPI_Feature::feature(owner());
1000   std::set<FeaturePtr> aParents = ModelAPI_Tools::getParents(anOwner);
1001
1002   int aSelectionIndex = 0;
1003   GeomAPI_Shape::ShapeType aType = GeomAPI_Shape::shapeTypeByStr(theType);
1004   if (aType == GeomAPI_Shape::SHAPE) {
1005     // possibly, the string consists of the type and the index,
1006     // thus, try to separate them
1007     size_t aUndersporePos = theType.find_first_of('_');
1008     if (aUndersporePos != std::string::npos)
1009       aType = GeomAPI_Shape::shapeTypeByStr(theType.substr(0, aUndersporePos));
1010
1011     if (aType != GeomAPI_Shape::SHAPE) {
1012       for (std::string::const_iterator aChar = theType.begin() + aUndersporePos + 1;
1013            aChar != theType.end(); ++aChar) {
1014         if (std::isdigit(*aChar))
1015           aSelectionIndex = aSelectionIndex * 10 + (*aChar - '0');
1016         else {
1017           aSelectionIndex = 1;
1018           break;
1019         }
1020       }
1021       aSelectionIndex -= 1;
1022     }
1023   }
1024
1025   std::list<ModelGeomAlgo_Shape::SubshapeOfResult> anAppropriate;
1026
1027   // collect features from PartSet and the current part
1028   SessionPtr aSession = ModelAPI_Session::get();
1029   std::list<FeaturePtr> aFeatures = aSession->moduleDocument()->allFeatures();
1030   if (aSession->moduleDocument() != owner()->document()) {
1031     std::list<FeaturePtr> aPartFeatures = owner()->document()->allFeatures();
1032     aFeatures.insert(aFeatures.end(), aPartFeatures.begin(), aPartFeatures.end());
1033   }
1034   // Process results of all features from the last to the first
1035   // to find appropriate sub-shape
1036   for (std::list<FeaturePtr>::const_reverse_iterator anIt = aFeatures.rbegin();
1037        anIt != aFeatures.rend(); ++anIt) {
1038     // selection cannot be linked to the parent features
1039     if (aParents.find(*anIt) != aParents.end())
1040       continue;
1041     // check the feature is a part of composite feature (like sketch elements),
1042     // then do not process it, it will be processed in scope of composite feature
1043     bool isSubOfComposite = false;
1044     const std::set<AttributePtr>& aRefs = (*anIt)->data()->refsToMe();
1045     for (std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
1046          aRefIt != aRefs.end() && !isSubOfComposite; ++aRefIt) {
1047       FeaturePtr aFeature = ModelAPI_Feature::feature((*aRefIt)->owner());
1048       CompositeFeaturePtr aCompFeature =
1049           std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
1050       isSubOfComposite = aCompFeature && aCompFeature->isSub(*anIt);
1051     }
1052     if (isSubOfComposite)
1053       continue;
1054
1055     // process results of the current feature to find appropriate sub-shape
1056     if (ModelGeomAlgo_Shape::findSubshapeByPoint(*anIt, thePoint, aType, anAppropriate)) {
1057       std::list<ModelGeomAlgo_Shape::SubshapeOfResult>::iterator anApIt = anAppropriate.begin();
1058       for (; aSelectionIndex > 0 && anApIt != anAppropriate.end(); --aSelectionIndex)
1059         ++anApIt; // skip this shape, because one of the previous is selected
1060
1061       if (anApIt != anAppropriate.end()) {
1062         if (anApIt->myCenterType == (int)ModelAPI_AttributeSelection::NOT_CENTER)
1063           setValue(anApIt->myResult, anApIt->mySubshape);
1064         else
1065           setValueCenter(anApIt->myResult, anApIt->mySubshape->edge(),
1066                          (ModelAPI_AttributeSelection::CenterType)anApIt->myCenterType);
1067         return;
1068       }
1069     }
1070   }
1071
1072   TDF_Label aSelLab = selectionLabel();
1073   setInvalidIfFalse(aSelLab, false);
1074   reset();
1075 }
1076
1077 void Model_AttributeSelection::selectSubShape(const std::string& theType,
1078   const std::string& theContextName, const int theIndex)
1079 {
1080   // selection of context by name
1081   selectSubShape(theType, theContextName);
1082   ResultPtr aContext = context();
1083   if (aContext.get()) {
1084     GeomShapePtr aContShape = aContext->shape();
1085     if (aContShape.get()) {
1086       GeomAlgoAPI_NExplode aNExp(aContShape, GeomAPI_Shape::shapeTypeByStr(theType));
1087       GeomShapePtr aValue = aNExp.shape(theIndex);
1088       if (aValue.get())
1089         setValue(aContext, aValue);
1090     }
1091   }
1092 }
1093
1094 void Model_AttributeSelection::setId(int theID)
1095 {
1096   std::shared_ptr<GeomAPI_Shape> aSelection;
1097
1098   ResultPtr aContextRes = context();
1099   // support for compsolids:
1100   while(ModelAPI_Tools::bodyOwner(aContextRes).get()) {
1101     aContextRes = ModelAPI_Tools::bodyOwner(aContextRes);
1102   }
1103   std::shared_ptr<GeomAPI_Shape> aContext = aContextRes->shape();
1104
1105   TopoDS_Shape aMainShape = aContext->impl<TopoDS_Shape>();
1106   // searching for the latest main shape
1107   if (theID > 0 && aContext && !aContext->isNull())
1108   {
1109     std::shared_ptr<Model_Document> aDoc =
1110       std::dynamic_pointer_cast<Model_Document>(aContextRes->document());
1111     if (aDoc.get()) {
1112       Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aMainShape, aDoc->generalLabel());
1113       if (!aNS.IsNull()) {
1114         aMainShape = TNaming_Tool::CurrentShape(aNS);
1115       }
1116     }
1117
1118     TopTools_IndexedMapOfShape aSubShapesMap;
1119     TopExp::MapShapes(aMainShape, aSubShapesMap);
1120     const TopoDS_Shape& aSelShape = aSubShapesMap.FindKey(theID);
1121
1122     std::shared_ptr<GeomAPI_Shape> aResult(new GeomAPI_Shape);
1123     aResult->setImpl(new TopoDS_Shape(aSelShape));
1124
1125     aSelection = aResult;
1126   }
1127
1128   setValue(aContextRes, aSelection);
1129 }
1130
1131 std::string Model_AttributeSelection::contextName(const ResultPtr& theContext) const
1132 {
1133   std::string aResult;
1134   if (owner()->document() != theContext->document()) {
1135     if (theContext->document() == ModelAPI_Session::get()->moduleDocument()) {
1136       aResult = theContext->document()->kind() + "/";
1137     } else {
1138       ResultPtr aDocRes = ModelAPI_Tools::findPartResult(
1139         ModelAPI_Session::get()->moduleDocument(), theContext->document());
1140       if (aDocRes.get()) {
1141         aResult = aDocRes->data()->name() + "/";
1142       }
1143     }
1144   }
1145   aResult += theContext->data()->name();
1146   return aResult;
1147 }
1148
1149 void Model_AttributeSelection::computeValues(
1150   ResultPtr theOldContext, ResultPtr theNewContext, TopoDS_Shape theValShape,
1151   TopTools_ListOfShape& theShapes)
1152 {
1153   bool aWasWholeContext = theValShape.IsNull();
1154   if (aWasWholeContext) {
1155     theValShape = theOldContext->shape()->impl<TopoDS_Shape>();
1156   }
1157   TopAbs_ShapeEnum aValType = theValShape.ShapeType();
1158   TopoDS_Shape aNewContShape = theNewContext->shape()->impl<TopoDS_Shape>();
1159   // if a new value is unchanged in the new context, do nothing: value is correct
1160   TopExp_Explorer aSubExp(aNewContShape, aValType);
1161   for(; aSubExp.More(); aSubExp.Next()) {
1162     if (aSubExp.Current().IsSame(theValShape)) {
1163       theShapes.Append(theValShape);
1164       return;
1165     }
1166   }
1167   // if new context becomes compsolid, the resulting sub may be in sub-solids
1168   std::list<ResultPtr> aNewToIterate;
1169   aNewToIterate.push_back(theNewContext);
1170   ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theNewContext);
1171   if (aComp.get()) {
1172     std::list<ResultPtr> allNewContextSubs;
1173     ModelAPI_Tools::allSubs(aComp, allNewContextSubs);
1174     std::list<ResultPtr>::iterator aSub = allNewContextSubs.begin();
1175     for(; aSub != allNewContextSubs.end(); aSub++) {
1176       ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aSub);
1177       if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
1178         aNewToIterate.push_back(aBody);
1179     }
1180   }
1181
1182   // first iteration: searching for the whole shape appearance (like face of the box)
1183   // second iteration: searching for sub-shapes that contain the sub (like vertex on faces)
1184   int aToFindPart = 0;
1185   TopTools_DataMapOfShapeShape aNewToOld; // map from new containers to old containers (with val)
1186   TopTools_MapOfShape anOlds; // to know how many olds produced new containers
1187   for(; aToFindPart != 2 && theShapes.IsEmpty(); aToFindPart++) {
1188     std::list<ResultPtr>::iterator aNewContIter = aNewToIterate.begin();
1189     for(; aNewContIter != aNewToIterate.end(); aNewContIter++) {
1190       std::shared_ptr<Model_Data> aNewData =
1191         std::dynamic_pointer_cast<Model_Data>((*aNewContIter)->data());
1192       TDF_Label aNewLab = aNewData->shapeLab();
1193       // searching for produced sub-shape fully on some label
1194       TDF_ChildIDIterator aNSIter(aNewLab, TNaming_NamedShape::GetID());
1195       for(; aNSIter.More(); aNSIter.Next()) {
1196         Handle(TNaming_NamedShape) aNS = Handle(TNaming_NamedShape)::DownCast(aNSIter.Value());
1197         for(TNaming_Iterator aPairIter(aNS); aPairIter.More(); aPairIter.Next()) {
1198           if (aToFindPart == 0) { // search shape is fully inside
1199             if (aPairIter.OldShape().IsSame(theValShape)) {
1200               if (aPairIter.NewShape().IsNull()) {// value was removed
1201                 theShapes.Clear();
1202                 return;
1203               }
1204               // don't add edges generated from faces
1205               if (aPairIter.NewShape().ShapeType() <= aValType)
1206                 theShapes.Append(aPairIter.NewShape());
1207             }
1208           } else if (!aPairIter.OldShape().IsNull()) { // search shape that contains this sub
1209             TopExp_Explorer anExp(aPairIter.OldShape(), aValType);
1210             for(; anExp.More(); anExp.Next()) {
1211               if (anExp.Current().IsSame(theValShape)) { // found a new container
1212                 if (aPairIter.NewShape().IsNull()) // skip removed high-level shape
1213                   continue;
1214                 aNewToOld.Bind(aPairIter.NewShape(), aPairIter.OldShape());
1215                 anOlds.Add(aPairIter.OldShape());
1216                 break;
1217               }
1218             }
1219           }
1220         }
1221       }
1222     }
1223   }
1224   if (aToFindPart == 2 && !aNewToOld.IsEmpty()) {
1225     // also iterate the whole old shape to find not-modified shapes that contain this old
1226     TopoDS_Shape anOldContShape = theOldContext->shape()->impl<TopoDS_Shape>();
1227     NCollection_Map<TopAbs_ShapeEnum> aNewTypes; // types of shapes to iterate
1228     TopTools_DataMapOfShapeShape::Iterator aNewTypeIter(aNewToOld);
1229     for(; aNewTypeIter.More(); aNewTypeIter.Next()) {
1230       if (aNewTypeIter.Key().ShapeType() != aValType)
1231         aNewTypes.Add(aNewTypeIter.Key().ShapeType());
1232     }
1233     NCollection_Map<TopAbs_ShapeEnum>::Iterator aTypeIter(aNewTypes);
1234     for(; aTypeIter.More(); aTypeIter.Next()) {
1235       for(TopExp_Explorer anExp(anOldContShape, aTypeIter.Value()); anExp.More(); anExp.Next()) {
1236         TopoDS_Shape anOld = anExp.Current();
1237         if (aNewToOld.IsBound(anOld) || anOlds.Contains(anOld)) // this was modified
1238           continue;
1239         TopExp_Explorer aValExp(anOld, aValType);
1240         for(; aValExp.More(); aValExp.Next()) {
1241           const TopoDS_Shape& anUnchanged = aValExp.Current();
1242           if (anUnchanged.IsSame(theValShape)) {
1243             aNewToOld.Bind(anOld, anOld);
1244             anOlds.Add(anOld);
1245             break;
1246           }
1247         }
1248       }
1249     }
1250
1251     // map of sub-shapes -> number of occurrences of these shapes in containers
1252     NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher> aSubs;
1253     TopTools_DataMapOfShapeShape::Iterator aContIter(aNewToOld);
1254     for(; aContIter.More(); aContIter.Next()) {
1255       TopExp_Explorer aSubExp(aContIter.Key(), aValType);
1256       for(; aSubExp.More(); aSubExp.Next()) {
1257         if (!aSubs.IsBound(aSubExp.Current())) {
1258           aSubs.Bind(aSubExp.Current(), TopTools_MapOfShape());
1259         }
1260         // store old to know how many olds produced this shape
1261         aSubs.ChangeFind(aSubExp.Current()).Add(aContIter.Value());
1262       }
1263     }
1264     // if sub is appeared same times in containers as the number of old shapes that contain it
1265     int aCountInOld = anOlds.Size();
1266     NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher>::Iterator
1267       aSubsIter(aSubs);
1268     for(; aSubsIter.More(); aSubsIter.Next()) {
1269       if (aSubsIter.Value().Size() == aCountInOld) {
1270         TopoDS_Shape anOld = aSubsIter.Key();
1271         // check this exists in the new shape
1272         TopExp_Explorer aNew(aNewContShape, anOld.ShapeType());
1273         for (; aNew.More(); aNew.Next()) {
1274           if (aNew.Current().IsSame(anOld))
1275             break;
1276         }
1277         if (aNew.More())
1278           theShapes.Append(anOld);
1279       }
1280     }
1281   }
1282   if (theShapes.IsEmpty()) { // nothing was changed
1283     if (aWasWholeContext)
1284       theShapes.Append(TopoDS_Shape());
1285     else { // if theValShape exists in new context, add it without changes, otherwise - nothing
1286       for (TopExp_Explorer aNew(aNewContShape, aValType); aNew.More(); aNew.Next()){
1287         if (aNew.Current().IsSame(theValShape)) {
1288           theShapes.Append(theValShape);
1289           break;
1290         }
1291       }
1292     }
1293   } else if (theShapes.Size() > 1) {
1294     // check it is possible to remove extra sub-shapes:
1295     // keep only shapes with the same number of containers if possible
1296     TopAbs_ShapeEnum anAncType = TopAbs_FACE;
1297     if (aValType == TopAbs_VERTEX)
1298       anAncType = TopAbs_EDGE;
1299     TopoDS_Shape anOldContext = theOldContext->shape()->impl<TopoDS_Shape>();
1300     TopTools_IndexedDataMapOfShapeListOfShape anOldMap;
1301     TopExp::MapShapesAndUniqueAncestors(anOldContext, aValType,  anAncType, anOldMap);
1302     if (anOldMap.Contains(theValShape)) {
1303       int aNumInOld = anOldMap.FindFromKey(theValShape).Extent();
1304       TopTools_IndexedDataMapOfShapeListOfShape aNewMap;
1305       TopExp::MapShapesAndUniqueAncestors(aNewContShape, aValType,  anAncType, aNewMap);
1306       TopTools_ListOfShape aNewResults;
1307       for(TopTools_ListOfShape::Iterator aNewSubs(theShapes); aNewSubs.More(); aNewSubs.Next()) {
1308         TopoDS_Shape aCand = aNewSubs.Value();
1309         if (aNewMap.Contains(aCand) && aNewMap.FindFromKey(aCand).Extent() == aNumInOld)
1310           aNewResults.Append(aCand);
1311       }
1312       if (!aNewResults.IsEmpty() && aNewResults.Size() < theShapes.Size())
1313         theShapes = aNewResults;
1314     }
1315   }
1316 }
1317
1318
1319 void Model_AttributeSelection::concealedFeature(
1320   const FeaturePtr theFeature, const FeaturePtr theStop, const bool theCheckCopy,
1321   std::list<FeaturePtr>& theConcealers, const ResultPtr theResultOfFeature)
1322 {
1323   std::set<FeaturePtr> alreadyProcessed;
1324   alreadyProcessed.insert(theFeature);
1325   if (theStop.get())
1326     alreadyProcessed.insert(theStop);
1327   /// iterate all results to find the concealment-attribute
1328   std::list<ResultPtr> aRootRes;
1329   if (theResultOfFeature.get()) {
1330     ResultPtr aRoot = ModelAPI_Tools::bodyOwner(theResultOfFeature, true);
1331     aRootRes.push_back(aRoot ? aRoot : theResultOfFeature);
1332   } else { // all results of a feature
1333    aRootRes = theFeature->results();
1334   }
1335   std::list<ResultPtr>::const_iterator aRootIter = aRootRes.cbegin();
1336   for(; aRootIter != aRootRes.cend(); aRootIter++) {
1337     std::list<ResultPtr> allRes;
1338     allRes.push_back(*aRootIter);
1339     ResultBodyPtr aRootBody = ModelAPI_Tools::bodyOwner(*aRootIter, true);
1340     if (!aRootBody.get())
1341       aRootBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRootIter);
1342     if (aRootBody.get()) {
1343       ModelAPI_Tools::allSubs(aRootBody, allRes);
1344     }
1345     for(std::list<ResultPtr>::iterator aRIter = allRes.begin(); aRIter != allRes.end(); aRIter++) {
1346       const std::set<AttributePtr>& aRefs = (*aRIter)->data()->refsToMe();
1347       std::set<AttributePtr>::const_iterator aRef = aRefs.cbegin();
1348       for (; aRef != aRefs.cend(); aRef++) {
1349         if (!aRef->get() || !(*aRef)->owner().get())
1350           continue;
1351         // concealed attribute only
1352         FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1353         if (alreadyProcessed.find(aRefFeat) != alreadyProcessed.end()) // optimization
1354           continue;
1355         alreadyProcessed.insert(aRefFeat);
1356         if (ModelAPI_Session::get()->validators()->isConcealed(aRefFeat->getKind(), (*aRef)->id())
1357           || (theCheckCopy &&
1358               std::dynamic_pointer_cast<ModelAPI_FeatureCopyInterface>(aRefFeat).get()))
1359         {
1360           // for extrusion cut in python script the nested sketch reference may be concealed before
1361           // it is nested, so, check this composite feature is valid
1362           static ModelAPI_ValidatorsFactory* aFactory = ModelAPI_Session::get()->validators();
1363           // need to be validated to update the "Apply" state if not previewed
1364           if (aFactory->validate(aRefFeat)) {
1365             if (theStop.get()) {
1366               std::shared_ptr<Model_Document> aDoc =
1367                 std::dynamic_pointer_cast<Model_Document>(theStop->document());
1368               if (!aDoc->isLaterByDep(theStop, aRefFeat)) // skip feature later than stop
1369                 continue;
1370             }
1371             theConcealers.push_back(aRefFeat);
1372           }
1373         }
1374       }
1375     }
1376   }
1377 }
1378
1379 bool Model_AttributeSelection::searchNewContext(std::shared_ptr<Model_Document> theDoc,
1380   const TopoDS_Shape theContShape, ResultPtr theContext, TopoDS_Shape theValShape,
1381   TDF_Label theAccessLabel,
1382   std::list<ResultPtr>& theResults, TopTools_ListOfShape& theValShapes)
1383 {
1384   std::list<ResultPtr> aResults; // keep order, new context, null if deleted
1385   std::set<ResultPtr> aResultsSet; // to avoid duplicates
1386   // iterate context and shape, but also if it is sub-shape of main shape, check also it
1387   TopTools_ListOfShape aContextList;
1388   aContextList.Append(theContShape);
1389   if (theContext.get()) {
1390     ResultPtr aComposite = ModelAPI_Tools::bodyOwner(theContext);
1391     if (aComposite.get() && aComposite->shape().get() && !aComposite->shape()->isNull())
1392       aContextList.Append(aComposite->shape()->impl<TopoDS_Shape>());
1393   }
1394   for(TopTools_ListOfShape::Iterator aContIter(aContextList); aContIter.More(); aContIter.Next()) {
1395     TNaming_SameShapeIterator aModifIter(aContIter.ChangeValue(), theAccessLabel);
1396     for(; aModifIter.More(); aModifIter.Next()) {
1397       TDF_Label anObjLab = aModifIter.Label().Father();
1398       ResultPtr aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1399         (theDoc->objects()->object(anObjLab));
1400       if (!aModifierObj.get()) {
1401         // #2241: shape may be sub-element of new object, not main (shell created from faces)
1402         if (!anObjLab.IsRoot())
1403           aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1404           (theDoc->objects()->object(anObjLab.Father()));
1405         if (!aModifierObj.get())
1406           continue;
1407       }
1408       FeaturePtr aModifierFeat = theDoc->feature(aModifierObj);
1409       if (!aModifierFeat.get())
1410         continue;
1411       FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1412       if (aModifierFeat == aThisFeature || !theDoc->isLaterByDep(aThisFeature, aModifierFeat))
1413         continue; // the modifier feature is later than this, so, should not be used
1414       FeaturePtr aCurrentModifierFeat = theDoc->feature(theContext);
1415       if (aCurrentModifierFeat == aModifierFeat ||
1416         !theDoc->isLaterByDep(aModifierFeat, aCurrentModifierFeat))
1417         continue; // the current modifier is later than the found, so, useless
1418       Handle(TNaming_NamedShape) aNewNS;
1419       aModifIter.Label().FindAttribute(TNaming_NamedShape::GetID(), aNewNS);
1420       if (aNewNS->Evolution() == TNaming_MODIFY || aNewNS->Evolution() == TNaming_GENERATED) {
1421         if (aResultsSet.find(aModifierObj) == aResultsSet.end()) {
1422           aResultsSet.insert(aModifierObj);
1423           aResults.push_back(aModifierObj);
1424         }
1425       } else if (aNewNS->Evolution() == TNaming_DELETE) { // a shape was deleted => result is empty
1426         aResults.push_back(ResultPtr());
1427       } else { // not-processed modification => don't support it
1428         continue;
1429       }
1430     }
1431   }
1432   // if there exist context composite and sub-result(s), leave only sub(s)
1433   for(std::list<ResultPtr>::iterator aResIter = aResults.begin(); aResIter != aResults.end();) {
1434     ResultPtr aParent = ModelAPI_Tools::bodyOwner(*aResIter);
1435     for(; aParent.get(); aParent = ModelAPI_Tools::bodyOwner(aParent))
1436       if (aResultsSet.count(aParent))
1437         break;
1438     if (aParent.get()) {
1439       aResultsSet.erase(aParent);
1440       for(std::list<ResultPtr>::iterator anIt = aResults.begin(); anIt != aResults.end(); anIt++) {
1441         if (*anIt == aParent) {
1442           aResults.erase(anIt);
1443           aResIter = aResults.begin(); // erase from set, so, restart iteration
1444           break;
1445         }
1446       }
1447     } else aResIter++;
1448   }
1449
1450   bool aStaySame = false;
1451   if (aResults.empty()) {
1452     // check the context become concealed by operation which is earlier than this selection
1453     FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1454     FeaturePtr aContextOwner = theDoc->feature(theContext);
1455     std::list<FeaturePtr> aConcealers;
1456     concealedFeature(aContextOwner, aThisFeature, false, aConcealers, theContext);
1457     std::list<FeaturePtr>::iterator aConcealer = aConcealers.begin();
1458     for(; aConcealer != aConcealers.end(); aConcealer++) {
1459       std::list<ResultPtr> aRefResults;
1460       ModelAPI_Tools::allResults(*aConcealer, aRefResults);
1461       std::list<ResultPtr>::iterator aRefIter = aRefResults.begin();
1462       for(; aRefIter != aRefResults.end(); aRefIter++) {
1463         ResultBodyPtr aRefBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRefIter);
1464         if (!aRefBody.get() || aRefBody->numberOfSubs() != 0) // iterate only leafs
1465           continue;
1466         GeomShapePtr aRefShape = aRefBody->shape();
1467         if (!aRefShape.get() || aRefShape->isNull())
1468           continue;
1469         if (aRefShape->impl<TopoDS_Shape>().IsSame(theContShape)) {
1470           // add the new context result with the same shape
1471           aResults.push_back(aRefBody);
1472         }
1473       }
1474       if (aResults.empty())
1475         return true; // feature conceals result, return true, so the context will be removed
1476     }
1477     aStaySame = aResults.empty();
1478   }
1479   if (myParent && myParent->isMakeCopy()) {
1480     // check there are copies before the new results, so, make a copy
1481     std::list<ObjectPtr> aCopyContext;
1482     std::list<GeomShapePtr> aCopyVals;
1483     // features between the new and the old: check the "Move" interface to get a copy
1484     FeaturePtr aRootOwner = theDoc->feature(theContext);
1485     FeaturePtr anOwner = ModelAPI_Tools::compositeOwner(aRootOwner);
1486     for(; anOwner.get(); anOwner = ModelAPI_Tools::compositeOwner(anOwner))
1487       aRootOwner = anOwner;
1488     FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1489     // iterate all results to find a "Copy" features between the new and one and to add the
1490     // copy-results also to results if this attribute refers to the copied shape
1491     int anIndex = kUNDEFINED_FEATURE_INDEX;
1492     for(FeaturePtr aFeat = theDoc->objects()->nextFeature(aRootOwner, anIndex); aFeat.get() &&
1493         aFeat != aThisFeature; aFeat = theDoc->objects()->nextFeature(aFeat, anIndex)) {
1494       std::shared_ptr<ModelAPI_FeatureCopyInterface> aCopier =
1495         std::dynamic_pointer_cast<ModelAPI_FeatureCopyInterface>(aFeat);
1496       if (aCopier.get()) {
1497         GeomShapePtr aValShape(new GeomAPI_Shape);
1498         aValShape->setImpl<TopoDS_Shape>(new TopoDS_Shape(
1499           theValShape.IsNull() ? theContShape : theValShape));
1500         aCopier->getCopies(theContext, aValShape, aCopyContext, aCopyVals);
1501       }
1502     }
1503     // check for the further modifications of the copy contexts and values
1504     std::list<ObjectPtr>::iterator aCopyContIter = aCopyContext.begin();
1505     std::list<GeomShapePtr>::iterator aCopyValIter = aCopyVals.begin();
1506     for(; aCopyContIter != aCopyContext.end(); aCopyContIter++, aCopyValIter++) {
1507       ResultPtr aNewCont = std::dynamic_pointer_cast<ModelAPI_Result>(*aCopyContIter);
1508       TopoDS_Shape aNewContShape = aNewCont->shape()->impl<TopoDS_Shape>();
1509       GeomShapePtr aNewVal = *aCopyValIter;
1510       TopoDS_Shape aNewValShape;
1511       if (aNewVal.get() && !aNewVal->isNull())
1512         aNewValShape = aNewVal->impl<TopoDS_Shape>();
1513       std::list<ResultPtr> aNewRes;
1514       TopTools_ListOfShape aNewUpdatedVal;
1515       if (searchNewContext(theDoc, aNewContShape, aNewCont, aNewValShape,
1516           theAccessLabel, aNewRes, aNewUpdatedVal)) {
1517         // append new results instead of the current ones
1518         std::list<ResultPtr>::iterator aNewIter = aNewRes.begin();
1519         TopTools_ListIteratorOfListOfShape aNewUpdVal(aNewUpdatedVal);
1520         for(; aNewIter != aNewRes.end(); aNewIter++, aNewUpdVal.Next()) {
1521           theResults.push_back(*aNewIter);
1522           theValShapes.Append(aNewUpdVal.Value());
1523         }
1524       } else { // the current result is good
1525         theResults.push_back(aNewCont);
1526         theValShapes.Append(aNewValShape);
1527       }
1528     }
1529     if (aStaySame && !theResults.empty()) { // no changes except copy, so, keep the origin as first
1530       theResults.push_front(theContext);
1531       theValShapes.Prepend(theValShape);
1532       return true;
1533     }
1534   }
1535   if (aStaySame)
1536     return false;
1537
1538   // iterate all results to find further modifications
1539   std::list<ResultPtr>::iterator aResIter = aResults.begin();
1540   for(aResIter = aResults.begin(); aResIter != aResults.end(); aResIter++) {
1541     if (aResIter->get() != NULL) {
1542       ResultPtr aNewResObj = *aResIter;
1543       // compute new values by two contexts: the old and the new
1544       TopTools_ListOfShape aValShapes;
1545       computeValues(theContext, aNewResObj, theValShape, aValShapes);
1546
1547       TopTools_ListIteratorOfListOfShape aNewVal(aValShapes);
1548       for(; aNewVal.More(); aNewVal.Next()) {
1549         std::list<ResultPtr> aNewRes;
1550         TopTools_ListOfShape aNewUpdatedVal;
1551         TopoDS_Shape aNewValSh = aNewVal.Value();
1552         TopoDS_Shape aNewContShape = aNewResObj->shape()->impl<TopoDS_Shape>();
1553
1554         if (theValShape.IsNull() && aNewContShape.IsSame(aNewValSh))
1555           aNewValSh.Nullify();
1556         if (searchNewContext(theDoc, aNewContShape, aNewResObj, aNewValSh,
1557                              theAccessLabel, aNewRes, aNewUpdatedVal))
1558         {
1559           // append new results instead of the current ones
1560           std::list<ResultPtr>::iterator aNewIter = aNewRes.begin();
1561           TopTools_ListIteratorOfListOfShape aNewUpdVal(aNewUpdatedVal);
1562           for(; aNewIter != aNewRes.end(); aNewIter++, aNewUpdVal.Next()) {
1563             theResults.push_back(*aNewIter);
1564             theValShapes.Append(aNewUpdVal.Value());
1565           }
1566         } else { // the current result is good
1567           theResults.push_back(aNewResObj);
1568           theValShapes.Append(aNewValSh);
1569         }
1570       }
1571     }
1572   }
1573   return true; // theResults must be empty: everything is deleted
1574 }
1575
1576 void Model_AttributeSelection::updateInHistory(bool& theRemove)
1577 {
1578   static std::shared_ptr<GeomAPI_Shape> anEmptyShape;
1579
1580   ResultPtr aContext = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
1581   if (!aContext.get() || (aContext->groupName() != ModelAPI_ResultBody::group() &&
1582       aContext->groupName() != ModelAPI_ResultPart::group())) {
1583     // but check the case the whole results are allowed: whole features may be selected
1584     if (myParent && myParent->isWholeResultAllowed()) {
1585       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
1586       if (aFeature.get()) {
1587         FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1588         std::list<FeaturePtr> aConcealers;
1589         bool aCopyPossible = myParent && myParent->isMakeCopy();
1590         concealedFeature(aFeature, aThisFeature, aCopyPossible, aConcealers, ResultPtr());
1591         if (aConcealers.empty())
1592           return;
1593         // if there are copies, but no direct modification, keep the original
1594         bool aKeepOrigin = false;
1595         if (aCopyPossible) {
1596           std::list<FeaturePtr>::iterator aConcealer = aConcealers.begin();
1597           for(aKeepOrigin = true; aConcealer != aConcealers.end(); aConcealer++)
1598             if (!std::dynamic_pointer_cast<ModelAPI_FeatureCopyInterface>(*aConcealer).get()) {
1599               aKeepOrigin = false;
1600               break;
1601             }
1602           if (aKeepOrigin) {
1603             aConcealers.push_front(aFeature);
1604           }
1605         }
1606         bool aChanged = false;
1607         std::list<FeaturePtr>::iterator aConcealer = aConcealers.begin();
1608         for(; aConcealer != aConcealers.end(); aConcealer++)
1609           if (aChanged) {
1610             if (aKeepOrigin || !myParent->isInList(*aConcealer, anEmptyShape))
1611               myParent->append(*aConcealer, anEmptyShape);
1612           } else {
1613             if (!myParent->isInList(*aConcealer, anEmptyShape)) {// avoid addition of duplicates
1614               setValue(*aConcealer, anEmptyShape);
1615               aChanged = true;
1616             } else if (aCopyPossible && *aConcealer == aFeature) {// keep origin in case of copy
1617               aChanged = true;
1618             }
1619           }
1620         if (!aChanged) // remove this
1621           theRemove = true;
1622         else if (!aKeepOrigin) // searching further modifications only if current changed
1623           updateInHistory(theRemove);
1624       }
1625     }
1626     return;// only bodies and parts may be modified later in the history, skip otherwise
1627   }
1628
1629   std::shared_ptr<Model_Document> aDoc =
1630     std::dynamic_pointer_cast<Model_Document>(aContext->document());
1631   std::shared_ptr<Model_Data> aContData = std::dynamic_pointer_cast<Model_Data>(aContext->data());
1632   if (!aContData.get() || !aContData->isValid())
1633     return;
1634   TDF_Label aContLab = aContData->shapeLab(); // named shape where the selected context is located
1635
1636   // checking this may be just a reference to another context (same shape), so use that label
1637   Handle(TNaming_NamedShape) aContNS;
1638   Handle(TDF_Reference) aRefAttr;
1639   while(!aContLab.FindAttribute(TNaming_NamedShape::GetID(), aContNS) &&
1640         aContLab.FindAttribute(TDF_Reference::GetID(), aRefAttr))
1641     aContLab = aRefAttr->Get();
1642
1643   if (!aContLab.FindAttribute(TNaming_NamedShape::GetID(), aContNS)) {
1644     bool aFoundNewContext = true;
1645     ResultPtr aNewContext = aContext;
1646     while(aFoundNewContext) {
1647       aFoundNewContext = false;
1648       // parts have no shape in result, so, trace references using the Part info
1649       if (aNewContext->groupName() == ModelAPI_ResultPart::group()) {
1650         ResultPartPtr aPartContext = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aNewContext);
1651         if (aPartContext.get()) { // searching for the up to date references to the referenced cont
1652           const std::set<AttributePtr>& aRefs = aPartContext->data()->refsToMe();
1653           std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
1654           for(; aRef != aRefs.end(); aRef++) {
1655             // to avoid detection of part changes by local selection only
1656             AttributeSelectionPtr aSel =
1657               std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(*aRef);
1658             if (aSel.get() && aSel->value().get() &&
1659                 !aSel->value()->isSame(aSel->context()->shape()))
1660               continue;
1661
1662             FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1663
1664             if (aRefFeat.get() && aRefFeat != owner() && aRefFeat->firstResult().get()) {
1665               // check the reference is concealed: #2900
1666               ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
1667               if (!aValidators->isConcealed(aRefFeat->getKind(), (*aRef)->id()))
1668                 continue;
1669               FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1670               if (!aDoc->isLaterByDep(aRefFeat, aThisFeature)) { // found better feature
1671                 aFoundNewContext = true;
1672                 aNewContext = aRefFeat->firstResult();
1673               }
1674             }
1675           }
1676         }
1677       }
1678     }
1679     if (aNewContext != aContext) {
1680       setValue(aNewContext, value());
1681     }
1682     return;
1683   }
1684   FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1685   FeaturePtr aCurrentModifierFeat = aDoc->feature(aContext);
1686   // iterate the context shape modifications in order to find a feature that is upper in history
1687   // that this one and is really modifies the referenced result to refer to it
1688   ResultPtr aModifierResFound;
1689   TNaming_Iterator aPairIter(aContNS);
1690   if (!aPairIter.More())
1691     return;
1692   TopoDS_Shape aNewCShape = aPairIter.NewShape();
1693   bool anIterate = true;
1694   // trying to update also the sub-shape selected
1695   GeomShapePtr aSubShape = value();
1696   if (aSubShape.get() && aSubShape->isEqual(aContext->shape()))
1697     aSubShape.reset();
1698   TopoDS_Shape aValShape;
1699   if (aSubShape.get()) {
1700     aValShape = aSubShape->impl<TopoDS_Shape>();
1701   }
1702
1703   std::list<ResultPtr> aNewContexts;
1704   TopTools_ListOfShape aValShapes;
1705   if (searchNewContext(aDoc, aNewCShape, aContext, aValShape, aContLab, aNewContexts, aValShapes))
1706   {
1707     std::set<ResultPtr> allContexts, aSkippedContext;
1708     std::list<ResultPtr>::iterator aNewContext = aNewContexts.begin();
1709     for(; aNewContext != aNewContexts.end(); aNewContext++)
1710       allContexts.insert(*aNewContext);
1711
1712     // if there exist context composite and sub-result(s), leave only sub(s)
1713     std::set<ResultPtr>::iterator aResIter = allContexts.begin();
1714     for(; aResIter != allContexts.end(); aResIter++) {
1715       ResultPtr aParent = ModelAPI_Tools::bodyOwner(*aResIter);
1716       for(; aParent.get(); aParent = ModelAPI_Tools::bodyOwner(aParent))
1717         if (allContexts.count(aParent))
1718           aSkippedContext.insert(aParent);
1719     }
1720
1721     GeomAPI_Shape::ShapeType aListShapeType = GeomAPI_Shape::SHAPE;
1722     if (myParent) {
1723       if (myParent->selectionType() == "VERTEX" || myParent->selectionType() == "Vertices")
1724         aListShapeType = GeomAPI_Shape::VERTEX;
1725       else if (myParent->selectionType() == "EDGE" || myParent->selectionType() == "Edges")
1726         aListShapeType = GeomAPI_Shape::EDGE;
1727       else if (myParent->selectionType() == "FACE" || myParent->selectionType() == "Faces")
1728         aListShapeType = GeomAPI_Shape::FACE;
1729     }
1730
1731     // issue #3031: skip topology if there is more convenient shape type presents in the
1732     // same context as a result of this
1733     bool isWholeResult = myParent && myParent->isWholeResultAllowed() && !aSubShape.get();
1734     GeomAPI_Shape::ShapeType allowedType = GeomAPI_Shape::SHAPE;
1735     if (isWholeResult) {
1736       std::list<ResultPtr>::iterator aNewCont = aNewContexts.begin();
1737       TopTools_ListIteratorOfListOfShape aNewValues(aValShapes);
1738       for(; aNewCont != aNewContexts.end(); aNewCont++, aNewValues.Next()) {
1739         if (aNewValues.Value().IsNull()) { // only for the whole context
1740           GeomAPI_Shape::ShapeType aShapeType = (*aNewCont)->shape()->shapeType();
1741           if (allowedType == GeomAPI_Shape::SHAPE) { // just set this one
1742             allowedType = aShapeType;
1743           } else {
1744             GeomAPI_Shape::ShapeType anAllowed = allowedType;
1745             if (anAllowed != aShapeType) { // select the best, nearest to the origin
1746               GeomAPI_Shape::ShapeType anOldShapeType = aContext->shape()->shapeType();
1747               GeomAPI_Shape::ShapeType aDeltaAllowed =
1748                 (GeomAPI_Shape::ShapeType)(anOldShapeType - anAllowed);
1749               if (aDeltaAllowed < 0)
1750                 aDeltaAllowed = (GeomAPI_Shape::ShapeType)(-aDeltaAllowed);
1751               GeomAPI_Shape::ShapeType aDeltaThis =
1752                 (GeomAPI_Shape::ShapeType)(anOldShapeType - aShapeType);
1753               if (aDeltaThis < 0)
1754                 aDeltaThis = (GeomAPI_Shape::ShapeType)(-aDeltaThis);
1755               if (aDeltaThis == aDeltaAllowed) { // equal distance to context, select complicated
1756                 if (anOldShapeType < anAllowed)
1757                   allowedType = aShapeType;
1758               } else if (aDeltaAllowed > aDeltaThis) { // this wins
1759                 allowedType = aShapeType;
1760               }
1761             }
1762           }
1763         }
1764       }
1765     }
1766
1767     std::list<ResultPtr>::iterator aNewCont = aNewContexts.begin();
1768     TopTools_ListIteratorOfListOfShape aNewValues(aValShapes);
1769     bool aFirst = true; // first is set to this, next are appended to parent
1770     for(; aNewCont != aNewContexts.end(); aNewCont++, aNewValues.Next()) {
1771       if (aSkippedContext.count(*aNewCont))
1772         continue;
1773
1774       if (isWholeResult && aNewValues.Value().IsNull())
1775         if (allowedType != GeomAPI_Shape::SHAPE &&
1776             (*aNewCont)->shape()->shapeType() != allowedType)
1777           continue; // there is better result exists with the better shape type (issue #3031)
1778
1779       GeomShapePtr aValueShape;
1780       if (!aNewValues.Value().IsNull()) {
1781         aValueShape = std::make_shared<GeomAPI_Shape>();
1782         aValueShape->setImpl<TopoDS_Shape>(new TopoDS_Shape(aNewValues.Value()));
1783       }
1784       // Check that list has the same type of shape selection before adding.
1785       GeomAPI_Shape::ShapeType aShapeShapeType = GeomAPI_Shape::SHAPE;
1786       if (aValueShape.get()) {
1787         aShapeShapeType = aValueShape->shapeType();
1788       } else {
1789         aShapeShapeType = (*aNewCont)->shape()->shapeType();
1790       }
1791       if (aListShapeType != GeomAPI_Shape::SHAPE && aListShapeType != aShapeShapeType) {
1792         // exception is for whole results selected
1793         if (!isWholeResult) {
1794           continue;
1795         }
1796       }
1797
1798       ResultPtr aNewContext = *aNewCont;
1799       if (aValueShape.get()) { // #2892 if context is higher level result, search this sub in lower
1800         ResultBodyPtr aBodyContext = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aNewContext);
1801         if (aBodyContext.get() && aBodyContext->numberOfSubs() != 0) {
1802           std::list<ResultPtr> aLower;
1803           ModelAPI_Tools::allSubs(aBodyContext, aLower, true);
1804           for(std::list<ResultPtr>::iterator aL = aLower.begin(); aL != aLower.end(); aL++) {
1805             GeomShapePtr aLShape = (*aL)->shape();
1806             if (aLShape.get() && !aLShape->isNull()) {
1807               if (aLShape->isSubShape(aValueShape, false)) {
1808                 aNewContext = *aL;
1809                 break;
1810               }
1811             }
1812           }
1813         }
1814       }
1815
1816       if (aFirst) {
1817         if (!myParent || !myParent->isInList(aNewContext, aValueShape)) { // avoid duplicates
1818           setValue(aNewContext, aValueShape);
1819           aFirst = false;
1820         } else if (aNewContext == aContext && myParent && myParent->isMakeCopy()) {
1821           // this may be exactly the old one, not modified in case of copy
1822           aFirst = false;
1823         }
1824       } else if (myParent) {
1825         if (!myParent->isInList(aNewContext, aValueShape)) // avoid addition of duplicates
1826           myParent->append(aNewContext, aValueShape);
1827       }
1828     }
1829     if (aFirst) { // nothing was added, all results were deleted
1830       if (myParent) {
1831         theRemove = true;
1832       } else {
1833         static ResultPtr anEmptyContext;
1834         setValue(anEmptyContext, anEmptyShape); // nullify the selection
1835         return;
1836       }
1837     }
1838   }
1839 }
1840
1841 void Model_AttributeSelection::setParent(Model_AttributeSelectionList* theParent)
1842 {
1843   myParent = theParent;
1844 }
1845
1846 std::string Model_AttributeSelection::contextName(const TDF_Label theSelectionLab)
1847 {
1848   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1849     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1850   FeaturePtr aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1851   bool aBaseDocumnetUsed = false;
1852   if (!aFeatureOwner.get()) { // use module document
1853     aDoc = std::dynamic_pointer_cast<Model_Document>(ModelAPI_Session::get()->moduleDocument());
1854     aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1855     aBaseDocumnetUsed = true;
1856   }
1857   if (aFeatureOwner.get()) {
1858     // if it is sub-element of the sketch, the context name is the name of the sketch
1859     // searching also for result - real context
1860     ResultPtr aResult;
1861     FeaturePtr aComposite = ModelAPI_Tools::compositeOwner(aFeatureOwner);
1862     if (aComposite.get() && aComposite->results().size() == 1 &&
1863         aComposite->firstResult()->groupName() == ModelAPI_ResultConstruction::group()) {
1864       aFeatureOwner = aComposite;
1865       aResult = aFeatureOwner->firstResult();
1866     } else {
1867       aResult = aDoc->resultByLab(theSelectionLab);
1868     }
1869     if (aResult.get()) {
1870       // this is to avoid duplicated names of results problem
1871       std::string aContextName = aResult->data()->name();
1872       // myLab corresponds to the current time
1873       TDF_Label aCurrentLab = selectionLabel();
1874       while(aCurrentLab.Depth() > 3)
1875         aCurrentLab = aCurrentLab.Father();
1876
1877       int aNumInHistoryNames =
1878         aDoc->numberOfNameInHistory(aResult, aCurrentLab);
1879       while(aNumInHistoryNames > 1) { // add "_" before name the needed number of times
1880         aContextName = "_" + aContextName;
1881         aNumInHistoryNames--;
1882       }
1883       if (aBaseDocumnetUsed)
1884         aContextName = aDoc->kind() + "/" + aContextName;
1885       return aContextName;
1886     }
1887   }
1888   return ""; // invalid case
1889 }
1890
1891 /// This method restores by the context and value name the context label and
1892 /// sub-label where the value is. Returns true if it is valid.
1893 bool Model_AttributeSelection::restoreContext(std::string theName,
1894   TDF_Label& theContext, TDF_Label& theValue)
1895 {
1896   static const GeomShapePtr anEmptyShape; // to store context only
1897   std::string aName = theName;
1898   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1899     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1900
1901   // remove the sub-value part if exists
1902   std::string aSubShapeName = aName;
1903   std::string::size_type n = aName.find('/');
1904   if (n != std::string::npos) {
1905     aName = aName.substr(0, n);
1906   }
1907
1908   if (aName.empty()) return false;
1909   bool anUniqueContext = false;
1910   ResultPtr aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1911   if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull()) {
1912     // name in PartSet?
1913     aDoc = std::dynamic_pointer_cast<Model_Document>(
1914       ModelAPI_Session::get()->moduleDocument());
1915     if (theName.find(aDoc->kind()) == 0) { // remove the document identifier from name if exists
1916       aSubShapeName = theName.substr(aDoc->kind().size() + 1);
1917       aName = aSubShapeName;
1918       std::string::size_type n = aName.find('/');
1919       if (n != std::string::npos) {
1920         aName = aName.substr(0, n);
1921       }
1922     }
1923     aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1924     if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull())
1925       return false;
1926   }
1927
1928   // searching the sub-shape
1929   static const ResultPtr anEmpty;
1930   theValue = aDoc->findNamingName(aSubShapeName, anUniqueContext ? aCont : anEmpty);
1931
1932   // sketch sub-component shape and name is located in separated feature label, try the sub-name
1933   if (theValue.IsNull() && aCont->groupName() == ModelAPI_ResultConstruction::group()) {
1934     std::string::size_type aSlash = aSubShapeName.rfind('/');
1935     if (aSlash != std::string::npos) {
1936       std::string aCompName = aSubShapeName.substr(aSlash + 1);
1937       CompositeFeaturePtr aComposite =
1938         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aDoc->feature(aCont));
1939       if (aComposite.get() && aComposite->numberOfSubs()) {
1940         const int aSubNum = aComposite->numberOfSubs();
1941         for (int a = 0; a < aSubNum && theValue.IsNull(); a++) {
1942           FeaturePtr aSub = aComposite->subFeature(a);
1943           const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aSub->results();
1944           std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRes = aResults.cbegin();
1945           for (; aRes != aResults.cend() && theValue.IsNull(); aRes++) {
1946             if ((*aRes)->data()->name() == aCompName) {
1947               theValue = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1948               break;
1949             } else { // any sub-label because the sketch line may be renamed, but not sub-vertices
1950               TDF_Label aLab = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1951               TDF_ChildIDIterator aSubNames(aLab, TDataStd_Name::GetID());
1952               for(; aSubNames.More(); aSubNames.Next()) {
1953                 if (Handle(TDataStd_Name)::DownCast(aSubNames.Value())->Get().
1954                   IsEqual(aCompName.c_str())) {
1955                   theValue = aSubNames.Value()->Label();
1956                   break;
1957                 }
1958               }
1959             }
1960           }
1961         }
1962       }
1963     }
1964   }
1965
1966   if (aCont.get()) {
1967     theContext = std::dynamic_pointer_cast<Model_Data>(aCont->data())->label();
1968   }
1969   return true;
1970 }
1971
1972 bool Model_AttributeSelection::isLater(
1973   const TDF_Label theResult1, const TDF_Label theResult2) const
1974 {
1975   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1976     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1977   FeaturePtr aFeat1 = aDoc->featureByLab(theResult1);
1978   if (!aFeat1.get())
1979     return false;
1980   FeaturePtr aFeat2 = aDoc->featureByLab(theResult2);
1981   if (!aFeat2.get())
1982     return false;
1983   return aDoc->isLaterByDep(aFeat1, aFeat2);
1984 }
1985
1986 ResultPtr Model_AttributeSelection::newestContext(
1987   const ResultPtr theCurrent, const GeomShapePtr theValue)
1988 {
1989   ResultPtr aResult = theCurrent;
1990   GeomShapePtr aSelectedShape = theValue.get() ? theValue : theCurrent->shape();
1991   std::shared_ptr<Model_Document> aDoc =
1992     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1993   bool aFindNewContext = true;
1994   while (aFindNewContext && aResult.get()) {
1995     aFindNewContext = false;
1996     // try to find the last context to find the up to date shape
1997     TopoDS_Shape aConShape = aResult->shape()->impl<TopoDS_Shape>();
1998     if (TNaming_Tool::HasLabel(selectionLabel(), aConShape)) {
1999       Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aConShape, selectionLabel());
2000       if (!aNS.IsNull()) {
2001         aNS = TNaming_Tool::CurrentNamedShape(aNS);
2002         if (!aNS.IsNull()
2003             && isLater(selectionLabel(), aNS->Label())
2004             && isLater(aNS->Label(),
2005                        std::dynamic_pointer_cast<Model_Data>(aResult->data())->label()))
2006         {
2007           TDF_Label aLab = aNS->Label();
2008           ResultPtr aRes = aDoc->resultByLab(aLab);
2009           if (aRes.get()) {
2010             if (aRes->shape()->isSubShape(aSelectedShape)) {
2011               aResult = aRes;
2012               aFindNewContext = true;
2013               continue;
2014             }
2015           }
2016         }
2017       }
2018     }
2019
2020     // TestFillWireVertex.py - sketch constructions for wire may participate too
2021     //if (aResult->groupName() == ModelAPI_ResultBody::group()) {
2022       // try to search newer context by the concealment references
2023       // take references to all results: root one, any sub
2024     std::list<ResultPtr> allRes;
2025     ResultPtr aCompContext;
2026     ResultBodyPtr aCompBody = ModelAPI_Tools::bodyOwner(aResult, true);
2027     if (aCompBody.get()) {
2028       ModelAPI_Tools::allSubs(aCompBody, allRes);
2029       allRes.push_back(aCompBody);
2030       aCompContext = aCompBody;
2031     }
2032     if (allRes.empty())
2033       allRes.push_back(aResult);
2034
2035     bool aFoundReferernce = false;
2036     for (std::list<ResultPtr>::iterator aSub = allRes.begin(); aSub != allRes.end(); aSub++) {
2037       ResultPtr aResCont = *aSub;
2038       ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResCont);
2039       if (aResBody.get() && aResBody->numberOfSubs() > 0 && aResBody != aCompContext)
2040         continue; // only lower and higher level subs are counted
2041       const std::set<AttributePtr>& aRefs = aResCont->data()->refsToMe();
2042       std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
2043       for (; !aFindNewContext && aRef != aRefs.end(); aRef++) {
2044         if (!aRef->get() || !(*aRef)->owner().get())
2045           continue;
2046         // concealed attribute only
2047         FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
2048         if (!ModelAPI_Session::get()->validators()->isConcealed(
2049           aRefFeat->getKind(), (*aRef)->id()))
2050           continue;
2051         // search the feature result that contains sub-shape selected
2052         std::list<std::shared_ptr<ModelAPI_Result> > aResults;
2053
2054         // take all sub-results or one result
2055         std::list<ResultPtr> aRefFeatResults;
2056         ModelAPI_Tools::allResults(aRefFeat, aRefFeatResults);
2057         std::list<ResultPtr>::iterator aRefResIter = aRefFeatResults.begin();
2058         for (; aRefResIter != aRefFeatResults.end(); aRefResIter++) {
2059           ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRefResIter);
2060           if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
2061             aResults.push_back(aBody);
2062         }
2063         std::list<std::shared_ptr<ModelAPI_Result> >::iterator aResIter = aResults.begin();
2064
2065         // searching by sub-shape
2066         for (; aResIter != aResults.end(); aResIter++) {
2067           if (!aResIter->get() || !(*aResIter)->data()->isValid() || (*aResIter)->isDisabled())
2068             continue;
2069           aFoundReferernce = true;
2070           GeomShapePtr aShape = (*aResIter)->shape();
2071           if (aShape.get() && aShape->isSubShape(aSelectedShape, false)) {
2072             aResult = *aResIter; // found new context (produced from this) with same subshape
2073             aFindNewContext = true; // continue searching further
2074             break;
2075           }
2076         }
2077       }
2078     }
2079     if (aFoundReferernce && !aFindNewContext &&
2080         aResult->groupName() != ModelAPI_ResultConstruction::group()) {
2081       // #19019 : result is concealed by object that contains no such sub-shape
2082       return theCurrent;
2083     }
2084   }
2085   // if compsolid is context, try to take sub-solid as context: like in GUI and scripts
2086   ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2087   if (aComp && aComp->numberOfSubs()) {
2088     std::list<ResultPtr> allSubs;
2089     ModelAPI_Tools::allSubs(aComp, allSubs);
2090     std::list<ResultPtr>::iterator aS = allSubs.begin();
2091     for (; aS != allSubs.end(); aS++) {
2092       ResultBodyPtr aSub = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aS);
2093       if (aSub && aSub->numberOfSubs() == 0 && aSub->shape().get() &&
2094           aSub->shape()->isSubShape(aSelectedShape)) {
2095         aResult = aSub;
2096         break;
2097       }
2098     }
2099   }
2100   // in case sketch line was selected for wire, but wire was concealed and not such line anymore,
2101   // so, actually, the sketch element was selected (which is never concealed)
2102   if (aResult != theCurrent && aResult->isConcealed())
2103     aResult = theCurrent;
2104   return aResult;
2105 }
2106
2107 void Model_AttributeSelection::combineGeometrical()
2108 {
2109   if (myTmpContext.get() || myTmpSubShape.get())
2110     return;
2111   TDF_Label aSelLab = selectionLabel();
2112   if (aSelLab.IsAttribute(kINVALID_SELECTION) || !myRef.isInitialized())
2113     return;
2114
2115   if (aSelLab.IsAttribute(kCIRCLE_CENTER) || aSelLab.IsAttribute(kELLIPSE_CENTER1) ||
2116       aSelLab.IsAttribute(kELLIPSE_CENTER2) || aSelLab.IsAttribute(kSIMPLE_REF_ID))
2117     return;
2118
2119   if (aSelLab.IsAttribute(kPART_REF_ID)) {
2120     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(context());
2121     if (!aPart.get() || !aPart->isActivated())
2122       return; // postponed naming needed
2123     Handle(TDataStd_Integer) anIndex;
2124     if (aSelLab.FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
2125       if (anIndex->Get()) { // special selection attribute was created, use it
2126         std::string aNewName;
2127         aPart->combineGeometrical(anIndex->Get(), aNewName);
2128         TDataStd_Name::Set(aSelLab, aNewName.c_str());
2129       }
2130     }
2131     return;
2132   }
2133
2134   std::shared_ptr<Model_ResultConstruction> aConstr =
2135     std::dynamic_pointer_cast<Model_ResultConstruction>(context());
2136   if (aConstr.get())
2137     return;
2138   FeaturePtr aFeature = contextFeature();
2139   if (aFeature.get())
2140     return;
2141
2142   Selector_Selector aSelector(aSelLab, baseDocumentLab());
2143   TopoDS_Shape aContextShape = context()->shape()->impl<TopoDS_Shape>();
2144   if (aSelector.restore(aContextShape)) {
2145     aSelector.combineGeometrical(aContextShape);
2146   }
2147 }
2148
2149 TDF_Label Model_AttributeSelection::baseDocumentLab()
2150 {
2151   if (ModelAPI_Session::get()->moduleDocument() != owner()->document())
2152     return std::dynamic_pointer_cast<Model_Document>
2153       (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel();
2154   static TDF_Label anEmpty;
2155   return anEmpty;
2156 }
2157
2158 void Model_AttributeSelection::reset()
2159 {
2160   ModelAPI_AttributeSelection::reset();
2161   myRef.reset();
2162 }