]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_AttributeSelection.cpp
Salome HOME
Fix for the unit-test TestGroup1799.py
[modules/shaper.git] / src / Model / Model_AttributeSelection.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "Model_AttributeSelection.h"
22 #include "Model_Application.h"
23 #include "Model_Events.h"
24 #include "Model_Data.h"
25 #include "Model_Document.h"
26 #include <Model_Objects.h>
27 #include <Model_AttributeSelectionList.h>
28 #include <Model_ResultConstruction.h>
29 #include <ModelAPI_Feature.h>
30 #include <ModelAPI_ResultBody.h>
31 #include <ModelAPI_ResultBody.h>
32 #include <ModelAPI_ResultConstruction.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 <BRep_Builder.hxx>
73
74 //#define DEB_NAMING 1
75 #ifdef DEB_NAMING
76 #include <BRepTools.hxx>
77 #endif
78 /// added to the index in the packed map to signalize that the vertex of edge is selected
79 /// (multiplied by the index of the edge)
80 static const int kSTART_VERTEX_DELTA = 1000000;
81 // identifier that there is simple reference: selection equals to context
82 Standard_GUID kSIMPLE_REF_ID("635eacb2-a1d6-4dec-8348-471fae17cb29");
83 // reference to Part sub-object
84 Standard_GUID kPART_REF_ID("635eacb2-a1d6-4dec-8348-471fae17cb27");
85 // selection is invalid after recomputation
86 Standard_GUID kINVALID_SELECTION("bce47fd7-80fa-4462-9d63-2f58acddd49d");
87
88 // identifier of the selection of the center of circle on edge
89 Standard_GUID kCIRCLE_CENTER("d0d0e0f1-217a-4b95-8fbb-0c4132f23718");
90 // identifier of the selection of the first focus point of ellipse on edge
91 Standard_GUID kELLIPSE_CENTER1("f70df04c-3168-4dc9-87a4-f1f840c1275d");
92 // identifier of the selection of the second focus point of ellipse on edge
93 Standard_GUID kELLIPSE_CENTER2("1395ae73-8e02-4cf8-b204-06ff35873a32");
94
95 // prefix for the whole feature context identification
96 const static std::string kWHOLE_FEATURE = "all-in-";
97
98 // on this label is stored:
99 // TNaming_NamedShape - selected shape
100 // TNaming_Naming - topological selection information (for the body)
101 // TDataStd_IntPackedMap - indexes of edges in composite element (for construction)
102 // TDataStd_Integer - type of the selected shape (for construction)
103 // TDF_Reference - from ReferenceAttribute, the context
104 bool Model_AttributeSelection::setValue(const ObjectPtr& theContext,
105   const std::shared_ptr<GeomAPI_Shape>& theSubShape, const bool theTemporarily)
106 {
107   if (theTemporarily &&
108       (!theContext.get() || theContext->groupName() != ModelAPI_Feature::group())) {
109     // just keep the stored without DF update
110     myTmpContext = std::dynamic_pointer_cast<ModelAPI_Result>(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     if (aConstruction->isInfinite()) {
182       // For correct naming selection, put the shape into the naming structure.
183       // It seems sub-shapes are not needed: only this shape is (and can be) selected.
184       /*
185       TNaming_Builder aBuilder(aSelLab);
186       aBuilder.Generated(aConstruction->shape()->impl<TopoDS_Shape>());
187       std::string anInfinitiveName = contextName(aConstruction);
188       TDataStd_Name::Set(aSelLab, anInfinitiveName.c_str());
189       std::dynamic_pointer_cast<Model_Document>(owner()->document())
190         ->addNamingName(aSelLab, anInfinitiveName.c_str());
191         */
192     }
193   } else if (theContext->groupName() == ModelAPI_ResultPart::group()) {
194     aSelLab.ForgetAllAttributes(true);
195     TDataStd_UAttribute::Set(aSelLab, kPART_REF_ID);
196     selectPart(std::dynamic_pointer_cast<ModelAPI_Result>(theContext), theSubShape);
197   } else { // check the feature context: parent-Part of this feature should not be used
198     FeaturePtr aFeatureContext = std::dynamic_pointer_cast<ModelAPI_Feature>(theContext);
199     if (aFeatureContext.get()) {
200       if (owner()->document() != aFeatureContext->document()) {
201         aSelLab.ForgetAllAttributes(true);
202         myRef.setValue(ObjectPtr());
203         if (aToUnblock)
204           owner()->data()->blockSendAttributeUpdated(false);
205         return false;
206       }
207     }
208   }
209
210   owner()->data()->sendAttributeUpdated(this);
211
212   if (aToUnblock)
213     owner()->data()->blockSendAttributeUpdated(false);
214
215   return true;
216 }
217
218 void Model_AttributeSelection::setValueCenter(
219     const ObjectPtr& theContext, const std::shared_ptr<GeomAPI_Edge>& theEdge,
220     const CenterType theCenterType, const bool theTemporarily)
221 {
222   bool anUpdated = setValue(theContext, theEdge, theTemporarily);
223   if (theTemporarily) {
224     myTmpCenterType = theCenterType;
225   } else { // store in the data structure
226     TDF_Label aSelLab = selectionLabel();
227     switch(theCenterType) {
228     case CIRCLE_CENTER:
229       if (!anUpdated)
230         anUpdated = !aSelLab.IsAttribute(kCIRCLE_CENTER);
231       TDataStd_UAttribute::Set(aSelLab, kCIRCLE_CENTER);
232       break;
233     case ELLIPSE_FIRST_FOCUS:
234       if (!anUpdated)
235         anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER1);
236       TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER1);
237       break;
238     case ELLIPSE_SECOND_FOCUS:
239       if (!anUpdated)
240         anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER2);
241       TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER2);
242       break;
243     }
244     if (anUpdated)
245       owner()->data()->sendAttributeUpdated(this);
246   }
247 }
248
249 void Model_AttributeSelection::selectValue(
250     const std::shared_ptr<ModelAPI_AttributeSelection>& theSource)
251 {
252   CenterType aType;
253   std::shared_ptr<GeomAPI_Shape> aValue =
254     std::dynamic_pointer_cast<Model_AttributeSelection>(theSource)->internalValue(aType);
255   if (!aValue.get() || aType == NOT_CENTER) {
256     setValue(theSource->context(), aValue);
257   } else {
258     std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge);
259     anEdge->setImpl(new TopoDS_Shape(aValue->impl<TopoDS_Shape>()));
260     setValueCenter(theSource->context(), anEdge, aType);
261   }
262 }
263
264 void Model_AttributeSelection::removeTemporaryValues()
265 {
266   if (myTmpContext.get() || myTmpSubShape.get()) {
267     myTmpContext.reset();
268     myTmpSubShape.reset();
269   }
270 }
271
272 // returns the center of the edge: circular or elliptical
273 GeomShapePtr centerByEdge(GeomShapePtr theEdge, ModelAPI_AttributeSelection::CenterType theType)
274 {
275   if (theType != ModelAPI_AttributeSelection::NOT_CENTER && theEdge.get() != NULL) {
276     TopoDS_Shape aShape = theEdge->impl<TopoDS_Shape>();
277     if (!aShape.IsNull() && aShape.ShapeType() == TopAbs_EDGE) {
278       TopoDS_Edge anEdge = TopoDS::Edge(aShape);
279       double aFirst, aLast;
280       Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, aFirst, aLast);
281       if (!aCurve.IsNull()) {
282         TopoDS_Vertex aVertex;
283         BRep_Builder aBuilder;
284         if (theType == ModelAPI_AttributeSelection::CIRCLE_CENTER) {
285           Handle(Geom_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve);
286           if (!aCirc.IsNull()) {
287             aBuilder.MakeVertex(aVertex, aCirc->Location(), Precision::Confusion());
288           }
289         } else { // ellipse
290           Handle(Geom_Ellipse) anEll = Handle(Geom_Ellipse)::DownCast(aCurve);
291           if (!anEll.IsNull()) {
292             aBuilder.MakeVertex(aVertex,
293               theType == ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS ?
294               anEll->Focus1() : anEll->Focus2(), Precision::Confusion());
295           }
296         }
297         if (!aVertex.IsNull()) {
298           std::shared_ptr<GeomAPI_Vertex> aResult(new GeomAPI_Vertex);
299           aResult->setImpl(new TopoDS_Vertex(aVertex));
300           return aResult;
301         }
302       }
303     }
304   }
305   return theEdge; // no vertex, so, return the initial edge
306 }
307
308 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::value()
309 {
310   if (!ModelAPI_AttributeSelection::isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
311     return std::shared_ptr<GeomAPI_Shape>();
312   CenterType aType = NOT_CENTER;
313   std::shared_ptr<GeomAPI_Shape> aResult = internalValue(aType);
314   return centerByEdge(aResult, aType);
315 }
316
317 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::internalValue(CenterType& theType)
318 {
319   theType = NOT_CENTER;
320   GeomShapePtr aResult;
321   if (myTmpContext.get() || myTmpSubShape.get()) {
322     theType = myTmpCenterType;
323     ResultConstructionPtr aResulConstruction =
324       std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(myTmpContext);
325     if(aResulConstruction.get()) {
326       // it is just reference to construction.
327       return myTmpSubShape;
328     }
329     return myTmpSubShape.get() ? myTmpSubShape : myTmpContext->shape();
330   }
331
332   TDF_Label aSelLab = selectionLabel();
333   if (aSelLab.IsAttribute(kINVALID_SELECTION))
334     return aResult;
335
336   if (aSelLab.IsAttribute(kCIRCLE_CENTER))
337     theType = CIRCLE_CENTER;
338   else if (aSelLab.IsAttribute(kELLIPSE_CENTER1))
339     theType = ELLIPSE_FIRST_FOCUS;
340   else if (aSelLab.IsAttribute(kELLIPSE_CENTER2))
341     theType = ELLIPSE_SECOND_FOCUS;
342
343
344   if (myRef.isInitialized()) {
345     if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
346       ResultPtr aContext = context();
347       if (!aContext.get() || aContext->groupName() == ModelAPI_ResultConstruction::group())
348         return aResult; // empty result, for whole construction selection also
349       return aContext->shape();
350     }
351     if (aSelLab.IsAttribute(kPART_REF_ID)) {
352       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(context());
353       if (!aPart.get() || !aPart->isActivated())
354         return std::shared_ptr<GeomAPI_Shape>(); // postponed naming needed
355       Handle(TDataStd_Integer) anIndex;
356       if (aSelLab.FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
357         if (anIndex->Get()) { // special selection attribute was created, use it
358           return aPart->selectionValue(anIndex->Get());
359         } else { // face with name is already in the data model, so try to take it by name
360           Handle(TDataStd_Name) aName;
361           if (aSelLab.FindAttribute(TDataStd_Name::GetID(), aName)) {
362             std::string aSubShapeName(TCollection_AsciiString(aName->Get()).ToCString());
363             std::size_t aPartEnd = aSubShapeName.find('/');
364             if (aPartEnd != std::string::npos && aPartEnd != aSubShapeName.rfind('/')) {
365               std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
366               int anIndex;
367               std::string aType; // to reuse already existing selection the type is not needed
368               return aPart->shapeInPart(aNameInPart, aType, anIndex);
369             }
370           }
371         }
372       }
373     }
374
375     std::shared_ptr<Model_ResultConstruction> aConstr =
376       std::dynamic_pointer_cast<Model_ResultConstruction>(context());
377     if (aConstr) {
378       if (aConstr->isInfinite())
379         return aResult; // empty result
380     }
381     if (!aConstr.get()) { // for construction context, return empty result as usual even
382       // the whole feature is selected
383       FeaturePtr aFeature = contextFeature();
384       if (aFeature.get()) {
385         std::list<GeomShapePtr> allShapes;
386         std::list<ResultPtr>::const_iterator aRes = aFeature->results().cbegin();
387         for (; aRes != aFeature->results().cend(); aRes++) {
388           if (aRes->get() && !(*aRes)->isDisabled()) {
389             GeomShapePtr aShape = (*aRes)->shape();
390             if (aShape.get() && !aShape->isNull()) {
391               allShapes.push_back(aShape);
392             }
393           }
394         }
395         return GeomAlgoAPI_CompoundBuilder::compound(allShapes);
396       }
397     } else {
398       if (contextFeature().get()) {
399         return aResult; // for the whole sketch feature selected return null => all faces
400       }
401     }
402
403     Handle(TNaming_NamedShape) aSelection;
404     if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
405       TopoDS_Shape aSelShape = aSelection->Get();
406       aResult = std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape);
407       aResult->setImpl(new TopoDS_Shape(aSelShape));
408     } else if (aConstr) { // simple construction element: just shape of this construction element
409       aResult = aConstr->shape();
410     }
411   }
412   return aResult;
413 }
414
415 bool Model_AttributeSelection::isInvalid()
416 {
417   return selectionLabel().IsAttribute(kINVALID_SELECTION) == Standard_True;
418 }
419
420 bool Model_AttributeSelection::isInitialized()
421 {
422   if (ModelAPI_AttributeSelection::isInitialized()) { // additional checks if it is initialized
423     std::shared_ptr<GeomAPI_Shape> aResult;
424     if (myRef.isInitialized()) {
425       TDF_Label aSelLab = selectionLabel();
426       if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
427         ResultPtr aContext = context();
428         return aContext.get() != NULL;
429       }
430       Handle(TNaming_NamedShape) aSelection;
431       if (selectionLabel().FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
432         return !aSelection->Get().IsNull();
433       } else { // for simple construction element: just shape of this construction element
434         std::shared_ptr<Model_ResultConstruction> aConstr =
435           std::dynamic_pointer_cast<Model_ResultConstruction>(context());
436         if (aConstr.get()) {
437             return true;
438         }
439         // for the whole feature, a feature object
440         FeaturePtr aFeat = contextFeature();
441         if (aFeat.get())
442           return true;
443       }
444     }
445   }
446   return false;
447 }
448
449 Model_AttributeSelection::Model_AttributeSelection(TDF_Label& theLabel)
450 : myRef(theLabel),
451   myIsGeometricalSelection(false)
452 {
453   myIsInitialized = myRef.isInitialized();
454   myParent = NULL;
455 }
456
457 void Model_AttributeSelection::setID(const std::string theID)
458 {
459   myRef.setID(theID);
460   ModelAPI_AttributeSelection::setID(theID);
461   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
462   if (myParent) {
463     myIsGeometricalSelection = myParent->isGeometricalSelection();
464   } else {
465     myIsGeometricalSelection =
466       ModelAPI_Session::get()->validators()->isGeometricalSelection(aFeature->getKind(), id());
467   }
468 }
469
470 ResultPtr Model_AttributeSelection::context()
471 {
472   if (!ModelAPI_AttributeSelection::isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
473     return ResultPtr();
474
475   if (myTmpContext.get() || myTmpSubShape.get()) {
476     return myTmpContext;
477   }
478
479   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
480   // for parts there could be same-data result, so take the last enabled
481   if (aResult.get()) {
482     if(aResult->groupName() == ModelAPI_ResultPart::group()) {
483       int aSize = aResult->document()->size(ModelAPI_ResultPart::group());
484       for(int a = aSize - 1; a >= 0; a--) {
485         ObjectPtr aPart = aResult->document()->object(ModelAPI_ResultPart::group(), a);
486         if(aPart.get() && aPart->data() == aResult->data()) {
487           ResultPtr aPartResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPart);
488           FeaturePtr anOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
489           // check that this result is not this-feature result (it is forbidden to select itself)
490           if(anOwnerFeature.get() && anOwnerFeature->firstResult() != aPartResult) {
491             return aPartResult;
492           }
493         }
494       }
495     }
496   } else { // if feature - construction is selected, it has only one result, return this result
497     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
498     if (aFeature.get() && aFeature->results().size() == 1 &&
499         aFeature->firstResult()->groupName() == ModelAPI_ResultConstruction::group())
500       return aFeature->firstResult();
501   }
502   return aResult;
503 }
504
505 FeaturePtr Model_AttributeSelection::contextFeature() {
506   if (myTmpContext.get() || myTmpSubShape.get()) {
507     return FeaturePtr(); // feature can not be selected temporarily
508   }
509   return std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
510 }
511 ObjectPtr Model_AttributeSelection::contextObject() {
512   FeaturePtr aRes = contextFeature();
513   if (aRes.get())
514     return aRes;
515   return context();
516 }
517
518
519 void Model_AttributeSelection::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
520 {
521   ModelAPI_AttributeSelection::setObject(theObject);
522   myRef.setObject(theObject);
523 }
524
525 /// Sets the invalid flag if flag is false, or removes it if "true"
526 /// Returns theFlag
527 static bool setInvalidIfFalse(TDF_Label& theLab, const bool theFlag) {
528   if (theFlag) {
529     theLab.ForgetAttribute(kINVALID_SELECTION);
530   } else {
531     TDataStd_UAttribute::Set(theLab, kINVALID_SELECTION);
532   }
533   return theFlag;
534 }
535
536 void Model_AttributeSelection::split(
537   ResultPtr theContext, TopoDS_Shape theNewShape, TopAbs_ShapeEnum theType)
538 {
539   TopTools_ListOfShape aSubs;
540   for(TopoDS_Iterator anExplorer(theNewShape); anExplorer.More(); anExplorer.Next()) {
541     if (!anExplorer.Value().IsNull() &&
542       anExplorer.Value().ShapeType() == theType) {
543         aSubs.Append(anExplorer.Value());
544     } else { // invalid case; bad result shape, so, impossible to split easily
545       aSubs.Clear();
546       break;
547     }
548   }
549   if (aSubs.Extent() > 1) { // ok to split
550     TopTools_ListIteratorOfListOfShape aSub(aSubs);
551     GeomShapePtr aSubSh(new GeomAPI_Shape);
552     aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
553     setValue(theContext, aSubSh);
554     for(aSub.Next(); aSub.More(); aSub.Next()) {
555       GeomShapePtr aSubSh(new GeomAPI_Shape);
556       aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
557       myParent->append(theContext, aSubSh);
558     }
559   }
560 }
561
562 bool Model_AttributeSelection::update()
563 {
564   FeaturePtr aContextFeature = contextFeature();
565   if (aContextFeature.get()) {
566     owner()->data()->sendAttributeUpdated(this);  // send updated if "update" called in any way
567     return true;
568   }
569   TDF_Label aSelLab = selectionLabel();
570   ResultPtr aContext = context();
571   if (!aContext.get())
572     return setInvalidIfFalse(aSelLab, false);
573   if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
574     return setInvalidIfFalse(aSelLab, aContext->shape() && !aContext->shape()->isNull());
575   }
576
577   if (aSelLab.IsAttribute(kPART_REF_ID)) { // it is reference to the part object
578     std::shared_ptr<GeomAPI_Shape> aNoSelection;
579     bool aResult = selectPart(aContext, aNoSelection, true);
580     aResult = setInvalidIfFalse(aSelLab, aResult);
581     if (aResult) {
582       owner()->data()->sendAttributeUpdated(this);
583     }
584     return aResult;
585   }
586
587   if (aContext->groupName() == ModelAPI_ResultBody::group()) {
588     // body: just a named shape, use topological selection mechanism
589     bool aResult = false;
590     TopoDS_Shape anOldShape;
591     Handle(TNaming_NamedShape) aNS;
592     if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
593       anOldShape = aNS->Get();
594
595     Selector_Selector aSelector(aSelLab);
596     if (ModelAPI_Session::get()->moduleDocument() != owner()->document()) {
597       aSelector.setBaseDocument(std::dynamic_pointer_cast<Model_Document>
598         (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel());
599     }
600     if (aSelector.restore()) { // it is stored in old OCCT format, use TNaming_Selector
601       TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
602       aResult = aSelector.solve(aContextShape);
603     }
604     aResult = 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)) {
611       // shape type should not be changed: if shape becomes compound of such shapes, then split
612       if (myParent && !anOldShape.IsNull() && !aNewShape.IsNull() &&
613           anOldShape.ShapeType() != aNewShape.ShapeType() &&
614           (aNewShape.ShapeType() == TopAbs_COMPOUND || aNewShape.ShapeType() == TopAbs_COMPSOLID))
615       {
616         split(aContext, aNewShape, anOldShape.ShapeType());
617       }
618       owner()->data()->sendAttributeUpdated(this);  // send updated if shape is changed
619     }
620     return aResult;
621   }
622
623   if (aContext->groupName() == ModelAPI_ResultConstruction::group()) {
624     bool aResult = true;
625     std::shared_ptr<Model_ResultConstruction> aConstructionContext =
626       std::dynamic_pointer_cast<Model_ResultConstruction>(aContext);
627     if (!aConstructionContext->isInfinite()) {
628       Selector_Selector aSelector(aSelLab);
629       if (ModelAPI_Session::get()->moduleDocument() != owner()->document()) {
630         aSelector.setBaseDocument(std::dynamic_pointer_cast<Model_Document>
631           (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel());
632       }
633
634       aResult = aSelector.restore();
635       TopoDS_Shape anOldShape = aSelector.value();
636       if (aResult) {
637         TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
638         aResult = aSelector.solve(aContextShape);
639       }
640       aResult = setInvalidIfFalse(aSelLab, aResult);
641       if (aResult && !anOldShape.IsEqual(aSelector.value()))
642         owner()->data()->sendAttributeUpdated(this);  // send updated if shape is changed
643     } else {
644       owner()->data()->sendAttributeUpdated(this);  // send updated if "update" called in any way
645     }
646     return aResult;
647   }
648   return setInvalidIfFalse(aSelLab, false); // unknown case
649 }
650
651 void Model_AttributeSelection::selectBody(
652   const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape)
653 {
654   // perform the selection
655   TopoDS_Shape aContext;
656
657   ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(theContext);
658   if (aBody) {
659     aContext = aBody->shape()->impl<TopoDS_Shape>();
660   } else {
661     ResultPtr aResult =
662       std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
663     if (aResult) {
664       aContext = aResult->shape()->impl<TopoDS_Shape>();
665     } else {
666       Events_InfoMessage("Model_AttributeSelection", "A result with shape is expected").send();
667       return;
668     }
669   }
670
671   if (!aContext.IsNull()) {
672     TDF_Label aSelLab = selectionLabel();
673     TopoDS_Shape aNewSub = theSubShape->impl<TopoDS_Shape>();
674
675     bool aSelectorOk = true;
676     Selector_Selector aSel(aSelLab);
677     if (ModelAPI_Session::get()->moduleDocument() != owner()->document()) {
678       aSel.setBaseDocument(std::dynamic_pointer_cast<Model_Document>
679         (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel());
680     }
681     try {
682       aSelectorOk = aSel.select(aContext, aNewSub, myIsGeometricalSelection);
683       if (aSelectorOk) {
684         aSel.store();
685         aSelectorOk = aSel.solve(aContext);
686       }
687     } catch(...) {
688       aSelectorOk = false;
689     }
690     Handle(TNaming_NamedShape) aSelectorShape;
691     if (aSelectorOk && aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aSelectorShape))
692     {
693       TopoDS_Shape aShape = aSelectorShape->Get();
694       if (aShape.IsNull() || aShape.ShapeType() != aNewSub.ShapeType())
695         aSelectorOk = false;
696     }
697     if (!aSelectorOk) {
698       setInvalidIfFalse(aSelLab, false);
699     }
700   }
701 }
702
703 bool Model_AttributeSelection::selectPart(
704   const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
705   const bool theUpdate)
706 {
707   ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theContext);
708   if (!aPart.get() || !aPart->isActivated())
709     return true; // postponed naming
710   if (theUpdate) {
711     Handle(TDataStd_Integer) anIndex;
712     if (selectionLabel().FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
713       // by internal selection
714       if (anIndex->Get() > 0) {
715         // update the selection by index
716         return aPart->updateInPart(anIndex->Get());
717       } else {
718         return true; // nothing to do, referencing just by name
719       }
720     }
721     return true; // nothing to do, referencing just by name
722   }
723   // store the shape (in case part is not loaded it should be useful
724   TopoDS_Shape aShape;
725   std::string aName = theContext->data()->name();
726   if (!theSubShape.get() || theSubShape->isNull()) {// the whole part shape is selected
727     aShape = theContext->shape()->impl<TopoDS_Shape>();
728   } else {
729     aShape = theSubShape->impl<TopoDS_Shape>();
730     int anIndex;
731     aName += "/" + aPart->nameInPart(theSubShape, anIndex);
732     TDataStd_Integer::Set(selectionLabel(), anIndex);
733   }
734   TNaming_Builder aBuilder(selectionLabel());
735   aBuilder.Select(aShape, aShape);
736   // identify by name in the part
737   TDataStd_Name::Set(selectionLabel(), aName.c_str());
738   return !aName.empty();
739 }
740
741 TDF_Label Model_AttributeSelection::selectionLabel()
742 {
743   return myRef.myRef->Label().FindChild(1);
744 }
745
746 /// prefixes of the shape names with centers defined
747 static std::map<ModelAPI_AttributeSelection::CenterType, std::string> kCENTERS_PREFIX;
748
749 /// returns the map that contains all possible prefixes of the center-names
750 static std::map<ModelAPI_AttributeSelection::CenterType, std::string>& centersMap()
751 {
752   if (kCENTERS_PREFIX.empty()) { // fill map by initial values
753     kCENTERS_PREFIX[ModelAPI_AttributeSelection::CIRCLE_CENTER] = "__cc";
754     kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS] = "__eff";
755     kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_SECOND_FOCUS] = "__esf";
756   }
757   return kCENTERS_PREFIX;
758 }
759
760 std::string Model_AttributeSelection::namingName(const std::string& theDefaultName)
761 {
762   std::string aName("");
763   if(!this->isInitialized())
764     return !theDefaultName.empty() ? theDefaultName : aName;
765
766   CenterType aCenterType = NOT_CENTER;
767   std::shared_ptr<GeomAPI_Shape> aSubSh = internalValue(aCenterType);
768   ResultPtr aCont = context();
769
770   if (!aCont.get() ||
771       (aCont->groupName() == ModelAPI_ResultConstruction::group() && contextFeature().get())) {
772     // selection of a full feature
773     FeaturePtr aFeatureCont = contextFeature();
774     if (aFeatureCont.get()) {
775       return kWHOLE_FEATURE + aFeatureCont->name();
776     }
777     // in case of selection of removed result
778     return "";
779   }
780
781   TDF_Label aSelLab = selectionLabel();
782   if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // whole context, no value
783     return contextName(aCont);
784   }
785
786   // if it is in result of another part
787   if (aCont->groupName() == ModelAPI_ResultPart::group()) {
788     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aCont);
789     int anIndex;
790     GeomShapePtr aValue = value();
791     if (aValue.get())
792       return aPart->data()->name() + "/" + aPart->nameInPart(aValue, anIndex);
793     else
794       return aPart->data()->name();
795   }
796
797
798   // whole infinitive construction
799   if (aCont->groupName() == ModelAPI_ResultConstruction::group()) {
800     ResultConstructionPtr aConstr = std::dynamic_pointer_cast<Model_ResultConstruction>(aCont);
801     if (aConstr->isInfinite()) {
802       return contextName(aCont);
803     }
804   }
805
806   Selector_Selector aSelector(aSelLab);
807   if (ModelAPI_Session::get()->moduleDocument() != owner()->document()) {
808     aSelector.setBaseDocument(std::dynamic_pointer_cast<Model_Document>
809       (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel());
810   }
811   std::string aResult;
812   if (aSelector.restore())
813     aResult = aSelector.name(this);
814   if (aCenterType != NOT_CENTER) {
815     aResult += centersMap()[aCenterType];
816   }
817   return aResult;
818 }
819
820 // returns the center type and modifies the shape name if this name is center-name
821 static ModelAPI_AttributeSelection::CenterType centerTypeByName(std::string& theShapeName)
822 {
823   std::map<ModelAPI_AttributeSelection::CenterType, std::string>::iterator aPrefixIter =
824     centersMap().begin();
825   for(; aPrefixIter != centersMap().end(); aPrefixIter++) {
826     std::size_t aFound = theShapeName.find(aPrefixIter->second);
827     if (aFound != std::string::npos &&
828         aFound == theShapeName.size() - aPrefixIter->second.size()) {
829       theShapeName = theShapeName.substr(0, aFound);
830       return aPrefixIter->first;
831     }
832   }
833   return ModelAPI_AttributeSelection::NOT_CENTER;
834 }
835
836 // type ::= COMP | COMS | SOLD | SHEL | FACE | WIRE | EDGE | VERT
837 void Model_AttributeSelection::selectSubShape(
838   const std::string& theType, const std::string& theSubShapeName)
839 {
840   if(theSubShapeName.empty() || theType.empty()) return;
841
842   std::string aSubShapeName = theSubShapeName;
843   CenterType aCenterType = theType[0] == 'v' || theType[0] == 'V' ? // only for vertex-type
844     centerTypeByName(aSubShapeName) : NOT_CENTER;
845   std::string aType = aCenterType == NOT_CENTER ? theType : "EDGE"; // search for edge now
846   static const GeomShapePtr anEmptyShape;
847
848   // first iteration is selection by name without center prefix, second - in case of problem,
849   // try with initial name
850   for(int aUseCenter = 1; aUseCenter >= 0; aUseCenter--)  {
851     if (aUseCenter == 0 && aCenterType != NOT_CENTER) {
852       aSubShapeName = theSubShapeName;
853       aCenterType = NOT_CENTER;
854       aType = theType;
855     } else if (aUseCenter != 1) continue;
856     TopAbs_ShapeEnum aShapeType =  TopAbs_ShapeEnum(GeomAPI_Shape::shapeTypeByStr(aType));
857
858     std::shared_ptr<Model_Document> aDoc =
859       std::dynamic_pointer_cast<Model_Document>(owner()->document());
860     // check this is Part-name: 2 delimiters in the name
861     std::size_t aPartEnd = aSubShapeName.find('/');
862     if (aPartEnd != std::string::npos) {
863       std::string aPartName = aSubShapeName.substr(0, aPartEnd);
864       DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
865       if (aPartName == aRootDoc->kind()) {
866         aDoc = std::dynamic_pointer_cast<Model_Document>(aRootDoc);
867         aSubShapeName = aSubShapeName.substr(aPartEnd + 1);
868       } else {
869         ObjectPtr aFound =
870           owner()->document()->objectByName(ModelAPI_ResultPart::group(), aPartName);
871         if (aFound.get()) { // found such part, so asking it for the name
872           ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFound);
873           std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
874           if (aNameInPart.empty()) { // whole part
875             setValue(aPart, anEmptyShape);
876             return;
877           }
878           int anIndex;
879           std::shared_ptr<GeomAPI_Shape> aSelected =
880             aPart->shapeInPart(aNameInPart, aType, anIndex);
881           if (aSelected.get()) {
882             if (aCenterType != NOT_CENTER) {
883               if (!aSelected->isEdge())
884                 continue;
885               std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aSelected));
886               setValueCenter(aPart, aSelectedEdge, aCenterType);
887             } else
888               setValue(aPart, aSelected);
889             TDataStd_Integer::Set(selectionLabel(), anIndex);
890             return;
891           }
892         }
893       }
894     }
895
896     // check this is a whole feature context
897     if (aSubShapeName.size() > kWHOLE_FEATURE.size() &&
898       aSubShapeName.substr(0, kWHOLE_FEATURE.size()) == kWHOLE_FEATURE) {
899       std::string aFeatureName = aSubShapeName.substr(kWHOLE_FEATURE.size());
900       ObjectPtr anObj = aDoc->objectByName(ModelAPI_Feature::group(), aFeatureName);
901       if (anObj.get()) {
902         setValue(anObj, anEmptyShape);
903         return;
904       }
905     }
906
907     // the whole result selection check
908     if (aSubShapeName.find('/') == std::string::npos) {
909       ObjectPtr aRes = aDoc->objectByName(ModelAPI_ResultConstruction::group(), aSubShapeName);
910       if (!aRes.get())
911         aRes = aDoc->objectByName(ModelAPI_ResultBody::group(), aSubShapeName);
912       if (aRes.get()) {
913         setValue(aRes, anEmptyShape);
914         return;
915       }
916     }
917
918     Selector_Selector aSelector(selectionLabel());
919     if (ModelAPI_Session::get()->moduleDocument() != owner()->document()) {
920       aSelector.setBaseDocument(std::dynamic_pointer_cast<Model_Document>
921         (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel());
922     }
923     myRestoreDocument = aDoc;
924     TDF_Label aContextLabel = aSelector.restoreByName(
925       aSubShapeName, aShapeType, this, myIsGeometricalSelection);
926     myRestoreDocument.reset();
927     if (!aContextLabel.IsNull()) {
928       ResultPtr aContext = aDoc->resultByLab(aContextLabel); // any label for document access
929       if (aContext.get() && aContext->shape().get()) {
930         TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
931         if (aSelector.solve(aContextShape)) {
932           TopoDS_Shape aSelectorShape = aSelector.value();
933           GeomShapePtr aShapeToBeSelected(new GeomAPI_Shape);
934           aShapeToBeSelected->setImpl<TopoDS_Shape>(new TopoDS_Shape(aSelectorShape));
935           // make the context result the latest existing
936           aContext = newestContext(aContext, aShapeToBeSelected);
937           if (myIsGeometricalSelection) { // store the currently generated name
938             selectionLabel().ForgetAllAttributes(true);
939             bool aToUnblock = false;
940             aToUnblock = !owner()->data()->blockSendAttributeUpdated(true);
941             myRef.setValue(aContext);
942             aSelector.store();
943             owner()->data()->sendAttributeUpdated(this);
944             if (aToUnblock)
945               owner()->data()->blockSendAttributeUpdated(false);
946             return;
947           } else { // re-select by context and value
948             if (aCenterType != NOT_CENTER) {
949               if (!aShapeToBeSelected->isEdge())
950                 continue;
951               std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aShapeToBeSelected));
952               setValueCenter(aContext, aSelectedEdge, aCenterType);
953             }
954             else
955               setValue(aContext, aShapeToBeSelected);
956           }
957           return;
958         }
959       }
960     }
961   }
962   // invalid
963   TDF_Label aSelLab = selectionLabel();
964   setInvalidIfFalse(aSelLab, false);
965   reset();
966 }
967
968 void Model_AttributeSelection::selectSubShape(const std::string& theType,
969                                               const GeomPointPtr& thePoint)
970 {
971   if (theType.empty() || !thePoint)
972     return;
973
974   // list of parent features
975   FeaturePtr anOwner = ModelAPI_Feature::feature(owner());
976   std::set<FeaturePtr> aParents = ModelAPI_Tools::getParents(anOwner);
977
978   int aSelectionIndex = 0;
979   GeomAPI_Shape::ShapeType aType = GeomAPI_Shape::shapeTypeByStr(theType);
980   if (aType == GeomAPI_Shape::SHAPE) {
981     // possibly, the string consists of the type and the index,
982     // thus, try to separate them
983     size_t aUndersporePos = theType.find_first_of('_');
984     if (aUndersporePos != std::string::npos)
985       aType = GeomAPI_Shape::shapeTypeByStr(theType.substr(0, aUndersporePos));
986
987     if (aType != GeomAPI_Shape::SHAPE) {
988       for (std::string::const_iterator aChar = theType.begin() + aUndersporePos + 1;
989            aChar != theType.end(); ++aChar) {
990         if (std::isdigit(*aChar))
991           aSelectionIndex = aSelectionIndex * 10 + (*aChar - '0');
992         else {
993           aSelectionIndex = 1;
994           break;
995         }
996       }
997       aSelectionIndex -= 1;
998     }
999   }
1000
1001   std::list<ModelGeomAlgo_Shape::SubshapeOfResult> anAppropriate;
1002
1003   // collect features from PartSet and the current part
1004   SessionPtr aSession = ModelAPI_Session::get();
1005   std::list<FeaturePtr> aFeatures = aSession->moduleDocument()->allFeatures();
1006   if (aSession->moduleDocument() != owner()->document()) {
1007     std::list<FeaturePtr> aPartFeatures = owner()->document()->allFeatures();
1008     aFeatures.insert(aFeatures.end(), aPartFeatures.begin(), aPartFeatures.end());
1009   }
1010   // Process results of all features from the last to the first
1011   // to find appropriate sub-shape
1012   for (std::list<FeaturePtr>::const_reverse_iterator anIt = aFeatures.rbegin();
1013        anIt != aFeatures.rend(); ++anIt) {
1014     // selection cannot be linked to the parent features
1015     if (aParents.find(*anIt) != aParents.end())
1016       continue;
1017     // check the feature is a part of composite feature (like sketch elements),
1018     // then do not process it, it will be processed in scope of composite feature
1019     bool isSubOfComposite = false;
1020     const std::set<AttributePtr>& aRefs = (*anIt)->data()->refsToMe();
1021     for (std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
1022          aRefIt != aRefs.end() && !isSubOfComposite; ++aRefIt) {
1023       FeaturePtr aFeature = ModelAPI_Feature::feature((*aRefIt)->owner());
1024       CompositeFeaturePtr aCompFeature =
1025           std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
1026       isSubOfComposite = aCompFeature && aCompFeature->isSub(*anIt);
1027     }
1028     if (isSubOfComposite)
1029       continue;
1030
1031     // process results of the current feature to find appropriate sub-shape
1032     if (ModelGeomAlgo_Shape::findSubshapeByPoint(*anIt, thePoint, aType, anAppropriate)) {
1033       std::list<ModelGeomAlgo_Shape::SubshapeOfResult>::iterator anApIt = anAppropriate.begin();
1034       for (; aSelectionIndex > 0 && anApIt != anAppropriate.end(); --aSelectionIndex)
1035         ++anApIt; // skip this shape, because one of the previous is selected
1036
1037       if (anApIt != anAppropriate.end()) {
1038         if (anApIt->myCenterType == (int)ModelAPI_AttributeSelection::NOT_CENTER)
1039           setValue(anApIt->myResult, anApIt->mySubshape);
1040         else
1041           setValueCenter(anApIt->myResult, anApIt->mySubshape->edge(),
1042                          (ModelAPI_AttributeSelection::CenterType)anApIt->myCenterType);
1043         return;
1044       }
1045     }
1046   }
1047
1048   TDF_Label aSelLab = selectionLabel();
1049   setInvalidIfFalse(aSelLab, false);
1050   reset();
1051 }
1052
1053 void Model_AttributeSelection::selectSubShape(const std::string& theType,
1054   const std::string& theContextName, const int theIndex)
1055 {
1056   // selection of context by name
1057   selectSubShape(theType, theContextName);
1058   ResultPtr aContext = context();
1059   if (aContext.get()) {
1060     GeomShapePtr aContShape = aContext->shape();
1061     if (aContShape.get()) {
1062       GeomAlgoAPI_NExplode aNExp(aContShape, GeomAPI_Shape::shapeTypeByStr(theType));
1063       GeomShapePtr aValue = aNExp.shape(theIndex);
1064       if (aValue.get())
1065         setValue(aContext, aValue);
1066     }
1067   }
1068 }
1069
1070 int Model_AttributeSelection::Id()
1071 {
1072   int anID = 0;
1073   std::shared_ptr<GeomAPI_Shape> aSelection = value();
1074   ResultPtr aContextRes = context();
1075   // support for compsolids:
1076   while(ModelAPI_Tools::bodyOwner(aContextRes).get()) {
1077     aContextRes = ModelAPI_Tools::bodyOwner(aContextRes);
1078   }
1079   std::shared_ptr<GeomAPI_Shape> aContext = aContextRes->shape();
1080
1081
1082   TopoDS_Shape aMainShape = aContext->impl<TopoDS_Shape>();
1083   const TopoDS_Shape& aSubShape = aSelection->impl<TopoDS_Shape>();
1084   // searching for the latest main shape
1085   if (aSelection && !aSelection->isNull() && aContext && !aContext->isNull())
1086   {
1087     std::shared_ptr<Model_Document> aDoc =
1088       std::dynamic_pointer_cast<Model_Document>(context()->document());
1089     if (aDoc.get()) {
1090       Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aMainShape, aDoc->generalLabel());
1091       if (!aNS.IsNull()) {
1092         aMainShape = TNaming_Tool::CurrentShape(aNS);
1093       }
1094     }
1095
1096     TopTools_IndexedMapOfShape aSubShapesMap;
1097     TopExp::MapShapes(aMainShape, aSubShapesMap);
1098     anID = aSubShapesMap.FindIndex(aSubShape);
1099   }
1100   return anID;
1101 }
1102
1103 void Model_AttributeSelection::setId(int theID)
1104 {
1105   std::shared_ptr<GeomAPI_Shape> aSelection;
1106
1107   ResultPtr aContextRes = context();
1108   // support for compsolids:
1109   while(ModelAPI_Tools::bodyOwner(aContextRes).get()) {
1110     aContextRes = ModelAPI_Tools::bodyOwner(aContextRes);
1111   }
1112   std::shared_ptr<GeomAPI_Shape> aContext = aContextRes->shape();
1113
1114   TopoDS_Shape aMainShape = aContext->impl<TopoDS_Shape>();
1115   // searching for the latest main shape
1116   if (theID > 0 && aContext && !aContext->isNull())
1117   {
1118     std::shared_ptr<Model_Document> aDoc =
1119       std::dynamic_pointer_cast<Model_Document>(aContextRes->document());
1120     if (aDoc.get()) {
1121       Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aMainShape, aDoc->generalLabel());
1122       if (!aNS.IsNull()) {
1123         aMainShape = TNaming_Tool::CurrentShape(aNS);
1124       }
1125     }
1126
1127     TopTools_IndexedMapOfShape aSubShapesMap;
1128     TopExp::MapShapes(aMainShape, aSubShapesMap);
1129     const TopoDS_Shape& aSelShape = aSubShapesMap.FindKey(theID);
1130
1131     std::shared_ptr<GeomAPI_Shape> aResult(new GeomAPI_Shape);
1132     aResult->setImpl(new TopoDS_Shape(aSelShape));
1133
1134     aSelection = aResult;
1135   }
1136
1137   setValue(aContextRes, aSelection);
1138 }
1139
1140 std::string Model_AttributeSelection::contextName(const ResultPtr& theContext) const
1141 {
1142   std::string aResult;
1143   if (owner()->document() != theContext->document()) {
1144     if (theContext->document() == ModelAPI_Session::get()->moduleDocument()) {
1145       aResult = theContext->document()->kind() + "/";
1146     } else {
1147       ResultPtr aDocRes = ModelAPI_Tools::findPartResult(
1148         ModelAPI_Session::get()->moduleDocument(), theContext->document());
1149       if (aDocRes.get()) {
1150         aResult = aDocRes->data()->name() + "/";
1151       }
1152     }
1153   }
1154   aResult += theContext->data()->name();
1155   return aResult;
1156 }
1157
1158 void Model_AttributeSelection::computeValues(
1159   ResultPtr theOldContext, ResultPtr theNewContext, TopoDS_Shape theValShape,
1160   TopTools_ListOfShape& theShapes)
1161 {
1162   bool aWasWholeContext = theValShape.IsNull();
1163   if (aWasWholeContext) {
1164     theValShape = theOldContext->shape()->impl<TopoDS_Shape>();
1165   }
1166   TopoDS_Shape aNewContShape = theNewContext->shape()->impl<TopoDS_Shape>();
1167   // if a new value is unchanged in the new context, do nothing: value is correct
1168   TopExp_Explorer aSubExp(aNewContShape, theValShape.ShapeType());
1169   for(; aSubExp.More(); aSubExp.Next()) {
1170     if (aSubExp.Current().IsSame(theValShape)) {
1171       theShapes.Append(theValShape);
1172       return;
1173     }
1174   }
1175   // if new context becomes compsolid, the resulting sub may be in sub-solids
1176   std::list<ResultPtr> aNewToIterate;
1177   aNewToIterate.push_back(theNewContext);
1178   ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theNewContext);
1179   if (aComp.get()) {
1180     std::list<ResultPtr> allNewContextSubs;
1181     ModelAPI_Tools::allSubs(aComp, allNewContextSubs);
1182     std::list<ResultPtr>::iterator aSub = allNewContextSubs.begin();
1183     for(; aSub != allNewContextSubs.end(); aSub++) {
1184       ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aSub);
1185       if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
1186         aNewToIterate.push_back(aBody);
1187     }
1188   }
1189
1190   // first iteration: searching for the whole shape appearance (like face of the box)
1191   // second iteration: searching for sub-shapes that contain the sub (like vertex on faces)
1192   int aToFindPart = 0;
1193   TopTools_DataMapOfShapeShape aNewToOld; // map from new containers to old containers (with val)
1194   TopTools_MapOfShape anOlds; // to know how many olds produced new containers
1195   for(; aToFindPart != 2 && theShapes.IsEmpty(); aToFindPart++) {
1196     std::list<ResultPtr>::iterator aNewContIter = aNewToIterate.begin();
1197     for(; aNewContIter != aNewToIterate.end(); aNewContIter++) {
1198       std::shared_ptr<Model_Data> aNewData =
1199         std::dynamic_pointer_cast<Model_Data>((*aNewContIter)->data());
1200       TDF_Label aNewLab = aNewData->shapeLab();
1201       // searching for produced sub-shape fully on some label
1202       TDF_ChildIDIterator aNSIter(aNewLab, TNaming_NamedShape::GetID());
1203       for(; aNSIter.More(); aNSIter.Next()) {
1204         Handle(TNaming_NamedShape) aNS = Handle(TNaming_NamedShape)::DownCast(aNSIter.Value());
1205         for(TNaming_Iterator aPairIter(aNS); aPairIter.More(); aPairIter.Next()) {
1206           if (aToFindPart == 0) { // search shape is fully inside
1207             if (aPairIter.OldShape().IsSame(theValShape)) {
1208               if (aPairIter.NewShape().IsNull()) {// value was removed
1209                 theShapes.Clear();
1210                 return;
1211               }
1212               theShapes.Append(aPairIter.NewShape());
1213             }
1214           } else if (!aPairIter.OldShape().IsNull()) { // search shape that contains this sub
1215             TopExp_Explorer anExp(aPairIter.OldShape(), theValShape.ShapeType());
1216             for(; anExp.More(); anExp.Next()) {
1217               if (anExp.Current().IsSame(theValShape)) { // found a new container
1218                 if (aPairIter.NewShape().IsNull()) {// value was removed
1219                   theShapes.Clear();
1220                   return;
1221                 }
1222                 aNewToOld.Bind(aPairIter.NewShape(), aPairIter.OldShape());
1223                 anOlds.Add(aPairIter.OldShape());
1224                 break;
1225               }
1226             }
1227           }
1228         }
1229       }
1230     }
1231   }
1232   if (aToFindPart == 2 && !aNewToOld.IsEmpty()) {
1233     // map of sub-shapes -> number of occurrences of these shapes in containers
1234     NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher> aSubs;
1235     TopTools_DataMapOfShapeShape::Iterator aContIter(aNewToOld);
1236     for(; aContIter.More(); aContIter.Next()) {
1237       TopExp_Explorer aSubExp(aContIter.Key(), theValShape.ShapeType());
1238       for(; aSubExp.More(); aSubExp.Next()) {
1239         if (!aSubs.IsBound(aSubExp.Current())) {
1240           aSubs.Bind(aSubExp.Current(), TopTools_MapOfShape());
1241         }
1242         // store old to know how many olds produced this shape
1243         aSubs.ChangeFind(aSubExp.Current()).Add(aContIter.Value());
1244       }
1245     }
1246     // if sub is appeared same times in containers as the number of old shapes that contain it
1247     int aCountInOld = anOlds.Size();
1248     NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher>::Iterator
1249       aSubsIter(aSubs);
1250     for(; aSubsIter.More(); aSubsIter.Next()) {
1251       if (aSubsIter.Value().Size() == aCountInOld) {
1252         theShapes.Append(aSubsIter.Key());
1253       }
1254     }
1255   }
1256   if (theShapes.IsEmpty()) { // nothing was changed
1257     theShapes.Append(aWasWholeContext ? TopoDS_Shape() : theValShape);
1258   }
1259 }
1260
1261 bool Model_AttributeSelection::searchNewContext(std::shared_ptr<Model_Document> theDoc,
1262   const TopoDS_Shape theContShape, ResultPtr theContext, TopoDS_Shape theValShape,
1263   TDF_Label theAccessLabel,
1264   std::list<ResultPtr>& theResults, TopTools_ListOfShape& theValShapes)
1265 {
1266   std::set<ResultPtr> aResults; // to avoid duplicates, new context, null if deleted
1267   TopTools_ListOfShape aResContShapes;
1268   // iterate context and shape, but also if it is sub-shape of main shape, check also it
1269   TopTools_ListOfShape aContextList;
1270   aContextList.Append(theContShape);
1271   if (theContext.get()) {
1272     ResultPtr aComposite = ModelAPI_Tools::bodyOwner(theContext);
1273     if (aComposite.get() && aComposite->shape().get() && !aComposite->shape()->isNull())
1274       aContextList.Append(aComposite->shape()->impl<TopoDS_Shape>());
1275   }
1276   for(TopTools_ListOfShape::Iterator aContIter(aContextList); aContIter.More(); aContIter.Next()) {
1277     TNaming_SameShapeIterator aModifIter(aContIter.ChangeValue(), theAccessLabel);
1278     for(; aModifIter.More(); aModifIter.Next()) {
1279       TDF_Label anObjLab = aModifIter.Label().Father();
1280       ResultPtr aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1281         (theDoc->objects()->object(anObjLab));
1282       if (!aModifierObj.get()) {
1283         // #2241: shape may be sub-element of new object, not main (shell created from faces)
1284         if (!anObjLab.IsRoot())
1285           aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1286           (theDoc->objects()->object(anObjLab.Father()));
1287         if (!aModifierObj.get())
1288           continue;
1289       }
1290       FeaturePtr aModifierFeat = theDoc->feature(aModifierObj);
1291       if (!aModifierFeat.get())
1292         continue;
1293       FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1294       if (aModifierFeat == aThisFeature || !theDoc->isLaterByDep(aThisFeature, aModifierFeat))
1295         continue; // the modifier feature is later than this, so, should not be used
1296       FeaturePtr aCurrentModifierFeat = theDoc->feature(theContext);
1297       if (aCurrentModifierFeat == aModifierFeat ||
1298         !theDoc->isLaterByDep(aModifierFeat, aCurrentModifierFeat))
1299         continue; // the current modifier is later than the found, so, useless
1300       Handle(TNaming_NamedShape) aNewNS;
1301       aModifIter.Label().FindAttribute(TNaming_NamedShape::GetID(), aNewNS);
1302       if (aNewNS->Evolution() == TNaming_MODIFY || aNewNS->Evolution() == TNaming_GENERATED) {
1303         aResults.insert(aModifierObj);
1304         aResContShapes.Append(aModifierObj->shape()->impl<TopoDS_Shape>());
1305       } else if (aNewNS->Evolution() == TNaming_DELETE) { // a shape was deleted => result is empty
1306         aResults.insert(ResultPtr());
1307       } else { // not-processed modification => don't support it
1308         continue;
1309       }
1310     }
1311   }
1312   if (aResults.empty())
1313     return false; // no modifications found, must stay the same
1314   // iterate all results to find further modifications
1315   std::set<ResultPtr>::iterator aResIter = aResults.begin();
1316   for(; aResIter != aResults.end(); aResIter++) {
1317     if (aResIter->get() != NULL) {
1318       // compute new values by two contexts: the old and the new
1319       TopTools_ListOfShape aValShapes;
1320       computeValues(theContext, *aResIter, theValShape, aValShapes);
1321
1322       TopTools_ListIteratorOfListOfShape aNewVal(aValShapes);
1323       for(; aNewVal.More(); aNewVal.Next()) {
1324         std::list<ResultPtr> aNewRes;
1325         TopTools_ListOfShape aNewUpdatedVal;
1326         TopoDS_Shape aNewValSh = aNewVal.Value();
1327         TopoDS_Shape aNewContShape = (*aResIter)->shape()->impl<TopoDS_Shape>();
1328         if (theValShape.IsNull() && aNewContShape.IsSame(aNewValSh))
1329           aNewValSh.Nullify();
1330         if (searchNewContext(theDoc, aNewContShape, *aResIter, aNewValSh,
1331                              theAccessLabel, aNewRes, aNewUpdatedVal))
1332         {
1333           // append new results instead of the current ones
1334           std::list<ResultPtr>::iterator aNewIter = aNewRes.begin();
1335           TopTools_ListIteratorOfListOfShape aNewUpdVal(aNewUpdatedVal);
1336           for(; aNewIter != aNewRes.end(); aNewIter++, aNewUpdVal.Next()) {
1337             theResults.push_back(*aNewIter);
1338             theValShapes.Append(aNewUpdVal.Value());
1339           }
1340         } else { // the current result is good
1341           theResults.push_back(*aResIter);
1342           theValShapes.Append(aNewValSh);
1343         }
1344       }
1345     }
1346   }
1347   return true; // theResults must be empty: everything is deleted
1348 }
1349
1350 void Model_AttributeSelection::updateInHistory()
1351 {
1352   ResultPtr aContext = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
1353   // only bodies and parts may be modified later in the history, don't do anything otherwise
1354   if (!aContext.get() || (aContext->groupName() != ModelAPI_ResultBody::group() &&
1355       aContext->groupName() != ModelAPI_ResultPart::group()))
1356     return;
1357   std::shared_ptr<Model_Document> aDoc =
1358     std::dynamic_pointer_cast<Model_Document>(aContext->document());
1359   std::shared_ptr<Model_Data> aContData = std::dynamic_pointer_cast<Model_Data>(aContext->data());
1360   if (!aContData.get() || !aContData->isValid())
1361     return;
1362   TDF_Label aContLab = aContData->shapeLab(); // named shape where the selected context is located
1363   Handle(TNaming_NamedShape) aContNS;
1364   if (!aContLab.FindAttribute(TNaming_NamedShape::GetID(), aContNS)) {
1365     bool aFoundNewContext = true;
1366     ResultPtr aNewContext = aContext;
1367     while(aFoundNewContext) {
1368       aFoundNewContext = false;
1369       // parts have no shape in result, so, trace references using the Part info
1370       if (aNewContext->groupName() == ModelAPI_ResultPart::group()) {
1371         ResultPartPtr aPartContext = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aNewContext);
1372         if (aPartContext.get()) { // searching for the up to date references to the referenced cont
1373           const std::set<AttributePtr>& aRefs = aPartContext->data()->refsToMe();
1374           std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
1375           for(; aRef != aRefs.end(); aRef++) {
1376             // to avoid detection of part changes by local selection only
1377             AttributeSelectionPtr aSel =
1378               std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(*aRef);
1379             if (aSel.get() && aSel->value().get() &&
1380                 !aSel->value()->isSame(aSel->context()->shape()))
1381               continue;
1382
1383             FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1384             if (aRefFeat.get() && aRefFeat != owner()) {
1385               FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1386               if (!aDoc->isLaterByDep(aRefFeat, aThisFeature)) { // found better feature
1387                 aFoundNewContext = true;
1388                 aNewContext = aRefFeat->firstResult();
1389               }
1390             }
1391           }
1392         }
1393       }
1394     }
1395     if (aNewContext != aContext) {
1396       setValue(aNewContext, value());
1397     }
1398     return;
1399   }
1400   FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1401   FeaturePtr aCurrentModifierFeat = aDoc->feature(aContext);
1402   // iterate the context shape modifications in order to find a feature that is upper in history
1403   // that this one and is really modifies the referenced result to refer to it
1404   ResultPtr aModifierResFound;
1405   TNaming_Iterator aPairIter(aContNS);
1406   if (!aPairIter.More())
1407     return;
1408   TopoDS_Shape aNewCShape = aPairIter.NewShape();
1409   bool anIterate = true;
1410   // trying to update also the sub-shape selected
1411   GeomShapePtr aSubShape = value();
1412   if (aSubShape.get() && aSubShape->isEqual(aContext->shape()))
1413     aSubShape.reset();
1414   TopoDS_Shape aValShape;
1415   if (aSubShape.get()) {
1416     aValShape = aSubShape->impl<TopoDS_Shape>();
1417   }
1418
1419   std::list<ResultPtr> aNewContexts;
1420   TopTools_ListOfShape aValShapes;
1421   if (searchNewContext(aDoc, aNewCShape, aContext, aValShape, aContLab, aNewContexts, aValShapes))
1422   {
1423     GeomAPI_Shape::ShapeType aListShapeType = GeomAPI_Shape::SHAPE;
1424     if (myParent->selectionType() == "VERTEX") aListShapeType = GeomAPI_Shape::VERTEX;
1425     else if (myParent->selectionType() == "EDGE") aListShapeType = GeomAPI_Shape::EDGE;
1426     else if (myParent->selectionType() == "FACE") aListShapeType = GeomAPI_Shape::FACE;
1427
1428     std::list<ResultPtr>::iterator aNewCont = aNewContexts.begin();
1429     TopTools_ListIteratorOfListOfShape aNewValues(aValShapes);
1430     bool aFirst = true; // first is set to this, next are appended to parent
1431     for(; aNewCont != aNewContexts.end(); aNewCont++, aNewValues.Next()) {
1432
1433       GeomShapePtr aValueShape;
1434       if (!aNewValues.Value().IsNull()) {
1435         aValueShape = std::make_shared<GeomAPI_Shape>();
1436         aValueShape->setImpl<TopoDS_Shape>(new TopoDS_Shape(aNewValues.Value()));
1437       }
1438       // Check that list has the same type of shape selection before adding.
1439       GeomAPI_Shape::ShapeType aShapeShapeType = GeomAPI_Shape::SHAPE;
1440       if (aValueShape.get()) {
1441         aShapeShapeType = aValueShape->shapeType();
1442       } else {
1443         (*aNewCont)->shape()->shapeType();
1444       }
1445       if (aListShapeType != GeomAPI_Shape::SHAPE && aListShapeType != aShapeShapeType) {
1446         continue;
1447       }
1448       if (aFirst) {
1449         setValue(*aNewCont, aValueShape);
1450         aFirst = false;
1451       } else if (myParent) {
1452         myParent->append(*aNewCont, aValueShape);
1453       }
1454     }
1455     if (aFirst) { // nothing was added, all results were deleted
1456       ResultPtr anEmptyContext;
1457       std::shared_ptr<GeomAPI_Shape> anEmptyShape;
1458       setValue(anEmptyContext, anEmptyShape); // nullify the selection
1459       return;
1460     }
1461   }
1462 }
1463
1464 void Model_AttributeSelection::setParent(Model_AttributeSelectionList* theParent)
1465 {
1466   myParent = theParent;
1467 }
1468
1469 std::string Model_AttributeSelection::contextName(const TDF_Label theSelectionLab)
1470 {
1471   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1472     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1473   FeaturePtr aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1474   bool aBaseDocumnetUsed = false;
1475   if (!aFeatureOwner.get()) { // use module document
1476     aDoc = std::dynamic_pointer_cast<Model_Document>(ModelAPI_Session::get()->moduleDocument());
1477     aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1478     aBaseDocumnetUsed = true;
1479   }
1480   if (aFeatureOwner.get()) {
1481     // if it is sub-element of the sketch, the context name is the name of the sketch
1482     // searching also for result - real context
1483     ResultPtr aResult;
1484     FeaturePtr aComposite = ModelAPI_Tools::compositeOwner(aFeatureOwner);
1485     if (aComposite.get() && aComposite->results().size() == 1 &&
1486         aComposite->firstResult()->groupName() == ModelAPI_ResultConstruction::group()) {
1487       aFeatureOwner = aComposite;
1488       aResult = aFeatureOwner->firstResult();
1489     } else {
1490       aResult = aDoc->resultByLab(theSelectionLab);
1491     }
1492     if (aResult.get()) {
1493       // this is to avoid duplicated names of results problem
1494       std::string aContextName = aResult->data()->name();
1495       // myLab corresponds to the current time
1496       TDF_Label aCurrentLab = selectionLabel();
1497       while(aCurrentLab.Depth() > 3)
1498         aCurrentLab = aCurrentLab.Father();
1499
1500       int aNumInHistoryNames =
1501         aDoc->numberOfNameInHistory(aResult, aCurrentLab);
1502       while(aNumInHistoryNames > 1) { // add "_" before name the needed number of times
1503         aContextName = "_" + aContextName;
1504         aNumInHistoryNames--;
1505       }
1506       if (aBaseDocumnetUsed)
1507         aContextName = aDoc->kind() + "/" + aContextName;
1508       return aContextName;
1509     }
1510   }
1511   return ""; // invalid case
1512 }
1513
1514 /// This method restores by the context and value name the context label and
1515 /// sub-label where the value is. Returns true if it is valid.
1516 bool Model_AttributeSelection::restoreContext(std::string theName,
1517   TDF_Label& theContext, TDF_Label& theValue)
1518 {
1519   static const GeomShapePtr anEmptyShape; // to store context only
1520   std::string aName = theName;
1521   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1522     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1523
1524   // remove the sub-value part if exists
1525   std::string aSubShapeName = aName;
1526   std::string::size_type n = aName.find('/');
1527   if (n != std::string::npos) {
1528     aName = aName.substr(0, n);
1529   }
1530
1531   if (aName.empty()) return false;
1532   bool anUniqueContext = false;
1533   ResultPtr aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1534   if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull()) {
1535     // name in PartSet?
1536     aDoc = std::dynamic_pointer_cast<Model_Document>(
1537       ModelAPI_Session::get()->moduleDocument());
1538     if (theName.find(aDoc->kind()) == 0) { // remove the document identifier from name if exists
1539       aSubShapeName = theName.substr(aDoc->kind().size() + 1);
1540       aName = aSubShapeName;
1541       std::string::size_type n = aName.find('/');
1542       if (n != std::string::npos) {
1543         aName = aName.substr(0, n);
1544       }
1545     }
1546     aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1547     if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull())
1548       return false;
1549   }
1550
1551   // searching the sub-shape
1552   static const ResultPtr anEmpty;
1553   theValue = aDoc->findNamingName(aSubShapeName, anUniqueContext ? aCont : anEmpty);
1554
1555   // sketch sub-component shape and name is located in separated feature label, try the sub-name
1556   if (theValue.IsNull() && aCont->groupName() == ModelAPI_ResultConstruction::group()) {
1557     std::string::size_type aSlash = aSubShapeName.rfind('/');
1558     if (aSlash != std::string::npos) {
1559       std::string aCompName = aSubShapeName.substr(aSlash + 1);
1560       CompositeFeaturePtr aComposite =
1561         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aDoc->feature(aCont));
1562       if (aComposite.get() && aComposite->numberOfSubs()) {
1563         const int aSubNum = aComposite->numberOfSubs();
1564         for (int a = 0; a < aSubNum && theValue.IsNull(); a++) {
1565           FeaturePtr aSub = aComposite->subFeature(a);
1566           const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aSub->results();
1567           std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRes = aResults.cbegin();
1568           for (; aRes != aResults.cend() && theValue.IsNull(); aRes++) {
1569             if ((*aRes)->data()->name() == aCompName) {
1570               theValue = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1571               break;
1572             } else { // any sub-label because the sketch line may be renamed, but not sub-vertices
1573               TDF_Label aLab = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1574               TDF_ChildIDIterator aSubNames(aLab, TDataStd_Name::GetID());
1575               for(; aSubNames.More(); aSubNames.Next()) {
1576                 if (Handle(TDataStd_Name)::DownCast(aSubNames.Value())->Get().
1577                   IsEqual(aCompName.c_str())) {
1578                   theValue = aSubNames.Value()->Label();
1579                   break;
1580                 }
1581               }
1582             }
1583           }
1584         }
1585       }
1586     }
1587   }
1588
1589   if (aCont.get()) {
1590     theContext = std::dynamic_pointer_cast<Model_Data>(aCont->data())->label();
1591   }
1592   return true;
1593 }
1594
1595 TDF_Label Model_AttributeSelection::newestContext(const TDF_Label theCurrentContext) {
1596   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1597     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1598   ResultPtr aContext = aDoc->resultByLab(theCurrentContext);
1599   if (aContext.get()) {
1600     aContext = newestContext(aContext, GeomShapePtr(), true);
1601     if (aContext.get())
1602       return std::dynamic_pointer_cast<Model_Data>(aContext->data())->label();
1603   }
1604   return theCurrentContext; // nothing is changed
1605 }
1606
1607 bool Model_AttributeSelection::isLater(
1608   const TDF_Label theResult1, const TDF_Label theResult2) const
1609 {
1610   std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1611     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1612   FeaturePtr aFeat1 = aDoc->featureByLab(theResult1);
1613   if (!aFeat1.get())
1614     return false;
1615   FeaturePtr aFeat2 = aDoc->featureByLab(theResult2);
1616   if (!aFeat2.get())
1617     return false;
1618   return aDoc->isLaterByDep(aFeat1, aFeat2);
1619 }
1620
1621 ResultPtr Model_AttributeSelection::newestContext(
1622   const ResultPtr theCurrent, const GeomShapePtr theValue, const bool theAnyValue)
1623 {
1624   ResultPtr aResult = theCurrent;
1625   GeomShapePtr aSelectedShape = theValue.get() ? theValue : theCurrent->shape();
1626   std::shared_ptr<Model_Document> aDoc =
1627     std::dynamic_pointer_cast<Model_Document>(owner()->document());
1628   bool aFindNewContext = true;
1629   while (aFindNewContext && aResult.get()) {
1630     aFindNewContext = false;
1631     // try to find the last context to find the up to date shape
1632     TopoDS_Shape aConShape = aResult->shape()->impl<TopoDS_Shape>();
1633     if (TNaming_Tool::HasLabel(selectionLabel(), aConShape)) {
1634       Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aConShape, selectionLabel());
1635       if (!aNS.IsNull()) {
1636         aNS = TNaming_Tool::CurrentNamedShape(aNS);
1637         if (!aNS.IsNull()
1638             && isLater(selectionLabel(), aNS->Label())
1639             && isLater(aNS->Label(),
1640                        std::dynamic_pointer_cast<Model_Data>(aResult->data())->label()))
1641         {
1642           TDF_Label aLab = aNS->Label();
1643           ResultPtr aRes = aDoc->resultByLab(aLab);
1644           if (aRes.get()) {
1645             if (theAnyValue || aRes->shape()->isSubShape(aSelectedShape)) {
1646               aResult = aRes;
1647               aFindNewContext = true;
1648               continue;
1649             }
1650           }
1651         }
1652       }
1653     }
1654     if (theAnyValue) { // only for neighbors for now
1655       // try to find modification of sub-shapes: the best number of matches
1656       std::map<ResultPtr, int> aMatches; // result -> number of matches of shapes to find the best
1657       TDF_Label aResLab = std::dynamic_pointer_cast<Model_Data>(aResult->data())->shapeLab();
1658       TDF_ChildIDIterator aModifIter(aResLab, TNaming_NamedShape::GetID());
1659       for(; aModifIter.More(); aModifIter.Next()) {
1660         Handle(TNaming_NamedShape) aNS = Handle(TNaming_NamedShape)::DownCast(aModifIter.Value());
1661         if (aNS->Evolution() == TNaming_MODIFY || aNS->Evolution() == TNaming_GENERATED) {
1662           for(TNaming_Iterator aNSIter(aNS); aNSIter.More(); aNSIter.Next()) {
1663             TNaming_NewShapeIterator aNewIter(aNSIter.NewShape(), aNS->Label());
1664             for(; aNewIter.More(); aNewIter.Next()) {
1665               TDF_Label aLab = aNewIter.Label();
1666               if (isLater(aLab, aNS->Label()) && isLater(selectionLabel(), aLab)) {
1667                 ResultPtr aRes = aDoc->resultByLab(aLab);
1668                 if (aRes.get()) {
1669                   if (aMatches.find(aRes) == aMatches.end())
1670                     aMatches[aRes] = 0;
1671                   aMatches[aRes]++; // found result, add matches
1672                 }
1673               }
1674             }
1675           }
1676         }
1677       }
1678       // searching for the best result-candidate
1679       int aBest = 0;
1680       ResultPtr aBestResult;
1681       std::map<ResultPtr, int>::iterator aMatchIter = aMatches.begin();
1682       for(; aMatchIter != aMatches.end(); aMatchIter++) {
1683         if (aMatchIter->second > aBest) {
1684           aBest = aMatchIter->second;
1685           aBestResult = aMatchIter->first;
1686         }
1687       }
1688       if (aBestResult.get()) {
1689         aResult = aBestResult;
1690         aFindNewContext = true;
1691         continue;
1692       }
1693     }
1694
1695
1696     // TestFillWireVertex.py - sketch constructions for wire may participate too
1697     //if (aResult->groupName() == ModelAPI_ResultBody::group()) {
1698       // try to search newer context by the concealment references
1699       // take references to all results: root one, any sub
1700     std::list<ResultPtr> allRes;
1701     ResultPtr aCompContext;
1702     ResultBodyPtr aCompBody = ModelAPI_Tools::bodyOwner(aResult, true);
1703     if (aCompBody.get()) {
1704       ModelAPI_Tools::allSubs(aCompBody, allRes);
1705       allRes.push_back(aCompBody);
1706       aCompContext = aCompBody;
1707     }
1708     if (allRes.empty())
1709       allRes.push_back(aResult);
1710
1711     for (std::list<ResultPtr>::iterator aSub = allRes.begin(); aSub != allRes.end(); aSub++) {
1712       ResultPtr aResCont = *aSub;
1713       ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResCont);
1714       if (aResBody.get() && aResBody->numberOfSubs() > 0 && aResBody != aCompContext)
1715         continue; // only lower and higher level subs are counted
1716       const std::set<AttributePtr>& aRefs = aResCont->data()->refsToMe();
1717       std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
1718       for (; !aFindNewContext && aRef != aRefs.end(); aRef++) {
1719         if (!aRef->get() || !(*aRef)->owner().get())
1720           continue;
1721         // concealed attribute only
1722         FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1723         if (!ModelAPI_Session::get()->validators()->isConcealed(
1724           aRefFeat->getKind(), (*aRef)->id()))
1725           continue;
1726         // search the feature result that contains sub-shape selected
1727         std::list<std::shared_ptr<ModelAPI_Result> > aResults;
1728
1729         // take all sub-results or one result
1730         std::list<ResultPtr> aRefFeatResults;
1731         ModelAPI_Tools::allResults(aRefFeat, aRefFeatResults);
1732         std::list<ResultPtr>::iterator aRefResIter = aRefFeatResults.begin();
1733         for (; aRefResIter != aRefFeatResults.end(); aRefResIter++) {
1734           ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRefResIter);
1735           if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
1736             aResults.push_back(aBody);
1737         }
1738         std::list<std::shared_ptr<ModelAPI_Result> >::iterator aResIter = aResults.begin();
1739         for (; aResIter != aResults.end(); aResIter++) {
1740           if (!aResIter->get() || !(*aResIter)->data()->isValid() || (*aResIter)->isDisabled())
1741             continue;
1742           GeomShapePtr aShape = (*aResIter)->shape();
1743           if (aShape.get() && (theAnyValue || aShape->isSubShape(aSelectedShape, false))) {
1744             aResult = *aResIter; // found new context (produced from this) with same subshape
1745             aFindNewContext = true; // continue searching further
1746             break;
1747           }
1748         }
1749       }
1750     }
1751   }
1752   // if compsolid is context, try to take sub-solid as context: like in GUI and scripts
1753   ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
1754   if (aComp && aComp->numberOfSubs()) {
1755     std::list<ResultPtr> allSubs;
1756     ModelAPI_Tools::allSubs(aComp, allSubs);
1757     std::list<ResultPtr>::iterator aS = allSubs.begin();
1758     for (; aS != allSubs.end(); aS++) {
1759       ResultBodyPtr aSub = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aS);
1760       if (aSub && aSub->numberOfSubs() == 0 && aSub->shape().get() &&
1761         (theAnyValue || aSub->shape()->isSubShape(aSelectedShape))) {
1762         aResult = aSub;
1763         break;
1764       }
1765     }
1766   }
1767   // in case sketch line was selected for wire, but wire was concealed and not such line anymore,
1768   // so, actually, the sketch element was selected (which is never concealed)
1769   if (aResult != theCurrent && aResult->isConcealed())
1770     aResult = theCurrent;
1771   return aResult;
1772 }