1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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>
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>
64 #include <TopoDS_Edge.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>
75 //#define DEB_NAMING 1
77 #include <BRepTools.hxx>
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");
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");
96 // prefix for the whole feature context identification
97 const static std::string kWHOLE_FEATURE = "all-in-";
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)
108 if (theTemporarily) {
109 // just keep the stored without DF update
110 myTmpContext = theContext;
111 myTmpSubShape = theSubShape;
112 owner()->data()->sendAttributeUpdated(this);
115 myTmpContext.reset();
116 myTmpSubShape.reset();
117 myTmpCenterType = NOT_CENTER;
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
129 aToUnblock = !owner()->data()->blockSendAttributeUpdated(true);
130 myRef.setValue(theContext);
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);
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;
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());
154 owner()->data()->blockSendAttributeUpdated(false);
157 bool isSelectBody = theContext->groupName() == ModelAPI_ResultBody::group();
159 ResultConstructionPtr aContextConstruction =
160 std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(theContext);
161 isSelectBody = aContextConstruction.get() && !aContextConstruction->isInfinite();
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);
172 selectBody(aContextResult, theSubShape);
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: parent-Part of this feature should not be used
189 FeaturePtr aFeatureContext = std::dynamic_pointer_cast<ModelAPI_Feature>(theContext);
190 if (aFeatureContext.get()) {
191 if (owner()->document() != aFeatureContext->document()) {
192 aSelLab.ForgetAllAttributes(true);
193 myRef.setValue(ObjectPtr());
195 owner()->data()->blockSendAttributeUpdated(false);
201 owner()->data()->sendAttributeUpdated(this);
204 owner()->data()->blockSendAttributeUpdated(false);
209 void Model_AttributeSelection::setValueCenter(
210 const ObjectPtr& theContext, const std::shared_ptr<GeomAPI_Edge>& theEdge,
211 const CenterType theCenterType, const bool theTemporarily)
213 bool anUpdated = setValue(theContext, theEdge, theTemporarily);
214 if (theTemporarily) {
215 myTmpCenterType = theCenterType;
216 } else { // store in the data structure
217 TDF_Label aSelLab = selectionLabel();
218 switch(theCenterType) {
221 anUpdated = !aSelLab.IsAttribute(kCIRCLE_CENTER);
222 TDataStd_UAttribute::Set(aSelLab, kCIRCLE_CENTER);
224 case ELLIPSE_FIRST_FOCUS:
226 anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER1);
227 TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER1);
229 case ELLIPSE_SECOND_FOCUS:
231 anUpdated = !aSelLab.IsAttribute(kELLIPSE_CENTER2);
232 TDataStd_UAttribute::Set(aSelLab, kELLIPSE_CENTER2);
236 owner()->data()->sendAttributeUpdated(this);
240 void Model_AttributeSelection::selectValue(
241 const std::shared_ptr<ModelAPI_AttributeSelection>& theSource)
244 std::shared_ptr<GeomAPI_Shape> aValue =
245 std::dynamic_pointer_cast<Model_AttributeSelection>(theSource)->internalValue(aType);
246 if (!aValue.get() || aType == NOT_CENTER) {
247 setValue(theSource->context(), aValue);
249 std::shared_ptr<GeomAPI_Edge> anEdge(new GeomAPI_Edge);
250 anEdge->setImpl(new TopoDS_Shape(aValue->impl<TopoDS_Shape>()));
251 setValueCenter(theSource->context(), anEdge, aType);
255 void Model_AttributeSelection::removeTemporaryValues()
257 if (myTmpContext.get() || myTmpSubShape.get()) {
258 myTmpContext.reset();
259 myTmpSubShape.reset();
263 // returns the center of the edge: circular or elliptic
264 GeomShapePtr centerByEdge(GeomShapePtr theEdge, ModelAPI_AttributeSelection::CenterType theType)
266 if (theType != ModelAPI_AttributeSelection::NOT_CENTER && theEdge.get() != NULL) {
267 TopoDS_Shape aShape = theEdge->impl<TopoDS_Shape>();
268 if (!aShape.IsNull() && aShape.ShapeType() == TopAbs_EDGE) {
269 TopoDS_Edge anEdge = TopoDS::Edge(aShape);
270 double aFirst, aLast;
271 Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, aFirst, aLast);
272 if (!aCurve.IsNull()) {
273 TopoDS_Vertex aVertex;
274 BRep_Builder aBuilder;
275 if (theType == ModelAPI_AttributeSelection::CIRCLE_CENTER) {
276 while(!aCurve.IsNull() && aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
277 aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve();
278 Handle(Geom_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve);
279 if (!aCirc.IsNull()) {
280 aBuilder.MakeVertex(aVertex, aCirc->Location(), Precision::Confusion());
283 while(!aCurve.IsNull() && aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
284 aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve();
285 Handle(Geom_Ellipse) anEll = Handle(Geom_Ellipse)::DownCast(aCurve);
286 if (!anEll.IsNull()) {
287 aBuilder.MakeVertex(aVertex,
288 theType == ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS ?
289 anEll->Focus1() : anEll->Focus2(), Precision::Confusion());
292 if (!aVertex.IsNull()) {
293 std::shared_ptr<GeomAPI_Vertex> aResult(new GeomAPI_Vertex);
294 aResult->setImpl(new TopoDS_Vertex(aVertex));
300 return theEdge; // no vertex, so, return the initial edge
303 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::value()
305 if (!ModelAPI_AttributeSelection::isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
306 return std::shared_ptr<GeomAPI_Shape>();
307 CenterType aType = NOT_CENTER;
308 std::shared_ptr<GeomAPI_Shape> aResult = internalValue(aType);
309 return centerByEdge(aResult, aType);
312 std::shared_ptr<GeomAPI_Shape> Model_AttributeSelection::internalValue(CenterType& theType)
314 theType = NOT_CENTER;
315 GeomShapePtr aResult;
316 if (myTmpContext.get() || myTmpSubShape.get()) {
317 theType = myTmpCenterType;
318 ResultConstructionPtr aResulConstruction =
319 std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(myTmpContext);
320 if(aResulConstruction.get()) {
321 // it is just reference to construction.
322 return myTmpSubShape;
324 FeaturePtr aFeature =
325 std::dynamic_pointer_cast<ModelAPI_Feature>(myTmpContext);
326 if (aFeature.get()) {
327 // it is just reference to construction.
328 return myTmpSubShape;
330 return myTmpSubShape.get() ? myTmpSubShape :
331 std::dynamic_pointer_cast<ModelAPI_Result>(myTmpContext)->shape();
334 TDF_Label aSelLab = selectionLabel();
335 if (aSelLab.IsAttribute(kINVALID_SELECTION))
338 if (aSelLab.IsAttribute(kCIRCLE_CENTER))
339 theType = CIRCLE_CENTER;
340 else if (aSelLab.IsAttribute(kELLIPSE_CENTER1))
341 theType = ELLIPSE_FIRST_FOCUS;
342 else if (aSelLab.IsAttribute(kELLIPSE_CENTER2))
343 theType = ELLIPSE_SECOND_FOCUS;
346 if (myRef.isInitialized()) {
347 if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
348 ResultPtr aContext = context();
349 if (!aContext.get() || aContext->groupName() == ModelAPI_ResultConstruction::group())
350 return aResult; // empty result, for whole construction selection also
351 return aContext->shape();
353 if (aSelLab.IsAttribute(kPART_REF_ID)) {
354 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(context());
355 if (!aPart.get() || !aPart->isActivated())
356 return std::shared_ptr<GeomAPI_Shape>(); // postponed naming needed
357 Handle(TDataStd_Integer) anIndex;
358 if (aSelLab.FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
359 if (anIndex->Get()) { // special selection attribute was created, use it
360 return aPart->selectionValue(anIndex->Get());
361 } else { // face with name is already in the data model, so try to take it by name
362 Handle(TDataStd_Name) aName;
363 if (aSelLab.FindAttribute(TDataStd_Name::GetID(), aName)) {
364 std::string aSubShapeName(TCollection_AsciiString(aName->Get()).ToCString());
365 std::size_t aPartEnd = aSubShapeName.find('/');
366 if (aPartEnd != std::string::npos && aPartEnd != aSubShapeName.rfind('/')) {
367 std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
369 std::string aType; // to reuse already existing selection the type is not needed
370 return aPart->shapeInPart(aNameInPart, aType, anIndex);
377 std::shared_ptr<Model_ResultConstruction> aConstr =
378 std::dynamic_pointer_cast<Model_ResultConstruction>(context());
380 if (aConstr->isInfinite())
381 return aResult; // empty result
383 if (!aConstr.get()) { // for construction context, return empty result as usual even
384 // the whole feature is selected
385 FeaturePtr aFeature = contextFeature();
386 if (aFeature.get()) {
387 std::list<GeomShapePtr> allShapes;
388 std::list<ResultPtr>::const_iterator aRes = aFeature->results().cbegin();
389 for (; aRes != aFeature->results().cend(); aRes++) {
390 if (aRes->get() && !(*aRes)->isDisabled()) {
391 GeomShapePtr aShape = (*aRes)->shape();
392 if (aShape.get() && !aShape->isNull()) {
393 allShapes.push_back(aShape);
397 return GeomAlgoAPI_CompoundBuilder::compound(allShapes);
400 if (contextFeature().get()) {
401 return aResult; // for the whole sketch feature selected return null => all faces
405 Handle(TNaming_NamedShape) aSelection;
406 if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
407 TopoDS_Shape aSelShape = aSelection->Get();
408 aResult = std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape);
409 aResult->setImpl(new TopoDS_Shape(aSelShape));
410 } else if (aConstr) { // simple construction element: just shape of this construction element
411 aResult = aConstr->shape();
417 bool Model_AttributeSelection::isInvalid()
419 return selectionLabel().IsAttribute(kINVALID_SELECTION) == Standard_True;
422 bool Model_AttributeSelection::isInitialized()
424 if (ModelAPI_AttributeSelection::isInitialized()) { // additional checks if it is initialized
425 std::shared_ptr<GeomAPI_Shape> aResult;
426 if (myRef.isInitialized()) {
427 TDF_Label aSelLab = selectionLabel();
428 // it is just reference to shape, not sub-shape
429 if (aSelLab.IsAttribute(kSIMPLE_REF_ID) || aSelLab.IsAttribute(kPART_REF_ID)) {
430 ResultPtr aContext = context();
431 return aContext.get() != NULL;
433 Handle(TNaming_NamedShape) aSelection;
434 if (selectionLabel().FindAttribute(TNaming_NamedShape::GetID(), aSelection)) {
435 return !aSelection->Get().IsNull();
436 } else { // for simple construction element: just shape of this construction element
437 if (myRef.value().get())
439 // check that this is on open of document, so, results are not initialized yet
440 TDF_Label aRefLab = myRef.myRef->Get();
441 if (aRefLab.IsNull() || !owner().get())
443 std::shared_ptr<Model_Document> aMyDoc =
444 std::dynamic_pointer_cast<Model_Document>(owner()->document());
447 // check at least the feature exists
448 return aMyDoc->featureByLab(aRefLab).get() != NULL;
455 Model_AttributeSelection::Model_AttributeSelection(TDF_Label& theLabel)
457 myIsGeometricalSelection(false)
459 myIsInitialized = myRef.isInitialized();
463 void Model_AttributeSelection::setID(const std::string theID)
466 ModelAPI_AttributeSelection::setID(theID);
467 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
469 // to be able to select as geometrical selection and then - split
470 myIsGeometricalSelection = true; // myParent->isGeometricalSelection();
472 myIsGeometricalSelection =
473 ModelAPI_Session::get()->validators()->isGeometricalSelection(aFeature->getKind(), id());
477 ResultPtr Model_AttributeSelection::context()
479 if (!ModelAPI_AttributeSelection::isInitialized() && !myTmpContext.get() && !myTmpSubShape.get())
482 if (myTmpContext.get() || myTmpSubShape.get()) {
483 return std::dynamic_pointer_cast<ModelAPI_Result>(myTmpContext);
486 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
487 // for parts there could be same-data result, so take the last enabled
489 if(aResult->groupName() == ModelAPI_ResultPart::group()) {
490 int aSize = aResult->document()->size(ModelAPI_ResultPart::group());
491 for(int a = aSize - 1; a >= 0; a--) {
492 ObjectPtr aPart = aResult->document()->object(ModelAPI_ResultPart::group(), a);
493 if(aPart.get() && aPart->data() == aResult->data()) {
494 ResultPtr aPartResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPart);
495 FeaturePtr anOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
496 // check that this result is not this-feature result (it is forbidden to select itself)
497 if(anOwnerFeature.get() && anOwnerFeature->firstResult() != aPartResult) {
503 } else { // if feature - construction is selected, it has only one result, return this result
504 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
505 if (aFeature.get() && aFeature->results().size() == 1 &&
506 aFeature->firstResult()->groupName() == ModelAPI_ResultConstruction::group())
507 return aFeature->firstResult();
512 FeaturePtr Model_AttributeSelection::contextFeature() {
513 if (myTmpContext.get()) {
514 return std::dynamic_pointer_cast<ModelAPI_Feature>(myTmpContext);
516 return std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
518 ObjectPtr Model_AttributeSelection::contextObject() {
519 FeaturePtr aRes = contextFeature();
526 void Model_AttributeSelection::setObject(const std::shared_ptr<ModelAPI_Object>& theObject)
528 ModelAPI_AttributeSelection::setObject(theObject);
529 myRef.setObject(theObject);
532 /// Sets the invalid flag if flag is false, or removes it if "true"
534 static bool setInvalidIfFalse(TDF_Label& theLab, const bool theFlag) {
536 theLab.ForgetAttribute(kINVALID_SELECTION);
538 TDataStd_UAttribute::Set(theLab, kINVALID_SELECTION);
543 void Model_AttributeSelection::split(
544 ResultPtr theContext, TopoDS_Shape theNewShape, TopAbs_ShapeEnum theType)
546 TopTools_ListOfShape aSubs;
547 for(TopoDS_Iterator anExplorer(theNewShape); anExplorer.More(); anExplorer.Next()) {
548 if (!anExplorer.Value().IsNull() &&
549 anExplorer.Value().ShapeType() == theType) {
550 aSubs.Append(anExplorer.Value());
551 } else { // invalid case; bad result shape, so, impossible to split easily
556 if (aSubs.Extent() > 1) { // ok to split
557 TopTools_ListIteratorOfListOfShape aSub(aSubs);
558 GeomShapePtr aSubSh(new GeomAPI_Shape);
559 aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
560 setValue(theContext, aSubSh);
561 for(aSub.Next(); aSub.More(); aSub.Next()) {
562 GeomShapePtr aSubSh(new GeomAPI_Shape);
563 aSubSh->setImpl(new TopoDS_Shape(aSub.Value()));
564 myParent->append(theContext, aSubSh);
569 bool Model_AttributeSelection::update()
571 FeaturePtr aContextFeature = contextFeature();
572 if (aContextFeature.get()) {
573 owner()->data()->sendAttributeUpdated(this); // send updated if "update" called in any way
576 TDF_Label aSelLab = selectionLabel();
577 ResultPtr aContext = context();
579 return setInvalidIfFalse(aSelLab, false);
580 if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // it is just reference to shape, not sub-shape
581 return setInvalidIfFalse(aSelLab, aContext->shape() && !aContext->shape()->isNull());
584 if (aSelLab.IsAttribute(kPART_REF_ID)) { // it is reference to the part object
585 std::shared_ptr<GeomAPI_Shape> aNoSelection;
586 bool aResult = selectPart(aContext, aNoSelection, true);
587 aResult = setInvalidIfFalse(aSelLab, aResult);
589 owner()->data()->sendAttributeUpdated(this);
594 if (aContext->groupName() == ModelAPI_ResultBody::group()) {
595 // body: just a named shape, use topological selection mechanism
596 bool aResult = false;
597 TopoDS_Shape anOldShape;
598 Handle(TNaming_NamedShape) aNS;
599 if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
600 anOldShape = aNS->Get();
602 TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
603 Selector_Selector aSelector(aSelLab, baseDocumentLab());
604 aResult = aSelector.restore(aContextShape);
605 setInvalidIfFalse(aSelLab, aResult);
607 TopoDS_Shape aNewShape;
608 if (aSelLab.FindAttribute(TNaming_NamedShape::GetID(), aNS))
609 aNewShape = aNS->Get();
611 if (anOldShape.IsNull() || aNewShape.IsNull() || !anOldShape.IsEqual(aNewShape)) {
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());
618 owner()->data()->sendAttributeUpdated(this); // send updated if shape is changed
623 if (aContext->groupName() == ModelAPI_ResultConstruction::group()) {
625 std::shared_ptr<Model_ResultConstruction> aConstructionContext =
626 std::dynamic_pointer_cast<Model_ResultConstruction>(aContext);
627 if (!aConstructionContext->isInfinite()) {
628 TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
629 Selector_Selector aSelector(aSelLab, baseDocumentLab());
630 TopoDS_Shape anOldShape = aSelector.value();
631 aResult = aSelector.restore(aContextShape);
632 setInvalidIfFalse(aSelLab, aResult);
633 if (aResult && !anOldShape.IsEqual(aSelector.value()))
634 owner()->data()->sendAttributeUpdated(this); // send updated if shape is changed
636 owner()->data()->sendAttributeUpdated(this); // send updated if "update" called in any way
640 return setInvalidIfFalse(aSelLab, false); // unknown case
643 void Model_AttributeSelection::selectBody(
644 const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape)
646 // perform the selection
647 TopoDS_Shape aContext;
649 ResultPtr aBody = std::dynamic_pointer_cast<ModelAPI_Result>(theContext);
651 aContext = aBody->shape()->impl<TopoDS_Shape>();
654 std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
656 aContext = aResult->shape()->impl<TopoDS_Shape>();
658 Events_InfoMessage("Model_AttributeSelection", "A result with shape is expected").send();
663 if (!aContext.IsNull()) {
664 TDF_Label aSelLab = selectionLabel();
665 TopoDS_Shape aNewSub = theSubShape->impl<TopoDS_Shape>();
667 bool aSelectorOk = true;
668 Selector_Selector aSelector(aSelLab, baseDocumentLab());
670 aSelectorOk = aSelector.select(aContext, aNewSub, myIsGeometricalSelection);
672 aSelectorOk = aSelector.store(aContext);
678 TopoDS_Shape aShape = aSelector.value();
679 aSelectorOk = !aShape.IsNull() && aShape.ShapeType() == aNewSub.ShapeType();
681 setInvalidIfFalse(aSelLab, aSelectorOk);
685 bool Model_AttributeSelection::selectPart(
686 const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
687 const bool theUpdate)
689 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(theContext);
690 if (!aPart.get() || !aPart->isActivated())
691 return true; // postponed naming
693 Handle(TDataStd_Integer) anIndex;
694 if (selectionLabel().FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
695 // by internal selection
696 if (anIndex->Get() > 0) {
697 // update the selection by index
698 return aPart->updateInPart(anIndex->Get());
700 return true; // nothing to do, referencing just by name
703 return true; // nothing to do, referencing just by name
705 // store the shape (in case part is not loaded it should be useful
707 std::string aName = theContext->data()->name();
708 if (!theSubShape.get() || theSubShape->isNull()) {// the whole part shape is selected
709 aShape = theContext->shape()->impl<TopoDS_Shape>();
711 aShape = theSubShape->impl<TopoDS_Shape>();
713 aName += "/" + aPart->nameInPart(theSubShape, anIndex);
714 TDataStd_Integer::Set(selectionLabel(), anIndex);
716 TNaming_Builder aBuilder(selectionLabel());
717 aBuilder.Select(aShape, aShape);
718 // identify by name in the part
719 TDataStd_Name::Set(selectionLabel(), aName.c_str());
720 return !aName.empty();
723 TDF_Label Model_AttributeSelection::selectionLabel()
725 return myRef.myRef->Label().FindChild(1);
728 /// prefixes of the shape names with centers defined
729 static std::map<ModelAPI_AttributeSelection::CenterType, std::string> kCENTERS_PREFIX;
731 /// returns the map that contains all possible prefixes of the center-names
732 static std::map<ModelAPI_AttributeSelection::CenterType, std::string>& centersMap()
734 if (kCENTERS_PREFIX.empty()) { // fill map by initial values
735 kCENTERS_PREFIX[ModelAPI_AttributeSelection::CIRCLE_CENTER] = "__cc";
736 kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_FIRST_FOCUS] = "__eff";
737 kCENTERS_PREFIX[ModelAPI_AttributeSelection::ELLIPSE_SECOND_FOCUS] = "__esf";
739 return kCENTERS_PREFIX;
742 std::string Model_AttributeSelection::namingName(const std::string& theDefaultName)
744 std::string aName("");
745 if(!this->isInitialized())
746 return !theDefaultName.empty() ? theDefaultName : aName;
748 // not argument has not parametric name (filters)
749 if (!this->isArgument() || (myParent && !myParent->isArgument())) {
750 GeomShapePtr aShape = value();
751 if (!aShape.get() && context().get())
752 aShape = context()->shape();
755 aName = aShape->shapeTypeStr();
757 aName += std::string("_") +
758 TCollection_AsciiString(selectionLabel().Father().Tag()).ToCString();
764 CenterType aCenterType = NOT_CENTER;
765 std::shared_ptr<GeomAPI_Shape> aSubSh = internalValue(aCenterType);
766 ResultPtr aCont = context();
769 (aCont->groupName() == ModelAPI_ResultConstruction::group() && contextFeature().get())) {
770 // selection of a full feature
771 FeaturePtr aFeatureCont = contextFeature();
772 if (aFeatureCont.get()) {
773 return kWHOLE_FEATURE + aFeatureCont->name();
775 // in case of selection of removed result
779 TDF_Label aSelLab = selectionLabel();
780 if (aSelLab.IsAttribute(kSIMPLE_REF_ID)) { // whole context, no value
781 return contextName(aCont);
784 // if it is in result of another part
785 if (aCont->groupName() == ModelAPI_ResultPart::group()) {
786 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aCont);
788 std::string aResult = aSubSh.get() ?
789 aPart->data()->name() + "/" + aPart->nameInPart(aSubSh, anIndex) : aPart->data()->name();
790 if (aCenterType != NOT_CENTER)
791 aResult += centersMap()[aCenterType];
795 // whole infinitive construction
796 if (aCont->groupName() == ModelAPI_ResultConstruction::group()) {
797 ResultConstructionPtr aConstr = std::dynamic_pointer_cast<Model_ResultConstruction>(aCont);
798 if (aConstr->isInfinite()) {
799 return contextName(aCont);
803 Selector_Selector aSelector(aSelLab, baseDocumentLab());
805 if (aCont->shape().get() && aSelector.restore(aCont->shape()->impl<TopoDS_Shape>()))
806 aResult = aSelector.name(this);
807 if (aCenterType != NOT_CENTER) {
808 aResult += centersMap()[aCenterType];
813 // returns the center type and modifies the shape name if this name is center-name
814 static ModelAPI_AttributeSelection::CenterType centerTypeByName(std::string& theShapeName)
816 std::map<ModelAPI_AttributeSelection::CenterType, std::string>::iterator aPrefixIter =
817 centersMap().begin();
818 for(; aPrefixIter != centersMap().end(); aPrefixIter++) {
819 std::size_t aFound = theShapeName.find(aPrefixIter->second);
820 if (aFound != std::string::npos &&
821 aFound == theShapeName.size() - aPrefixIter->second.size()) {
822 theShapeName = theShapeName.substr(0, aFound);
823 return aPrefixIter->first;
826 return ModelAPI_AttributeSelection::NOT_CENTER;
829 // type ::= COMP | COMS | SOLD | SHEL | FACE | WIRE | EDGE | VERT
830 void Model_AttributeSelection::selectSubShape(
831 const std::string& theType, const std::string& theSubShapeName)
833 if(theSubShapeName.empty() || theType.empty()) return;
835 std::string aSubShapeName = theSubShapeName;
836 CenterType aCenterType = theType[0] == 'v' || theType[0] == 'V' ? // only for vertex-type
837 centerTypeByName(aSubShapeName) : NOT_CENTER;
838 std::string aType = aCenterType == NOT_CENTER ? theType : "EDGE"; // search for edge now
839 static const GeomShapePtr anEmptyShape;
841 // first iteration is selection by name without center prefix, second - in case of problem,
842 // try with initial name
843 for(int aUseCenter = 1; aUseCenter >= 0; aUseCenter--) {
844 if (aUseCenter == 0 && aCenterType != NOT_CENTER) {
845 aSubShapeName = theSubShapeName;
846 aCenterType = NOT_CENTER;
848 } else if (aUseCenter != 1) continue;
849 TopAbs_ShapeEnum aShapeType = TopAbs_ShapeEnum(GeomAPI_Shape::shapeTypeByStr(aType));
851 std::shared_ptr<Model_Document> aDoc =
852 std::dynamic_pointer_cast<Model_Document>(owner()->document());
853 // check this is Part-name: 2 delimiters in the name
854 std::size_t aPartEnd = aSubShapeName.find('/');
855 if (aPartEnd != std::string::npos) {
856 std::string aPartName = aSubShapeName.substr(0, aPartEnd);
857 DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
858 if (aPartName == aRootDoc->kind()) {
859 aDoc = std::dynamic_pointer_cast<Model_Document>(aRootDoc);
860 aSubShapeName = aSubShapeName.substr(aPartEnd + 1);
863 owner()->document()->objectByName(ModelAPI_ResultPart::group(), aPartName);
864 if (aFound.get()) { // found such part, so asking it for the name
865 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aFound);
866 std::string aNameInPart = aSubShapeName.substr(aPartEnd + 1);
867 if (aNameInPart.empty()) { // whole part
868 setValue(aPart, anEmptyShape);
872 std::shared_ptr<GeomAPI_Shape> aSelected =
873 aPart->shapeInPart(aNameInPart, aType, anIndex);
874 if (aSelected.get()) {
875 if (aCenterType != NOT_CENTER) {
876 if (!aSelected->isEdge())
878 std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aSelected));
879 setValueCenter(aPart, aSelectedEdge, aCenterType);
881 setValue(aPart, aSelected);
882 TDataStd_Integer::Set(selectionLabel(), anIndex);
889 // check this is a whole feature context
890 if (aSubShapeName.size() > kWHOLE_FEATURE.size() &&
891 aSubShapeName.substr(0, kWHOLE_FEATURE.size()) == kWHOLE_FEATURE) {
892 std::string aFeatureName = aSubShapeName.substr(kWHOLE_FEATURE.size());
893 ObjectPtr anObj = aDoc->objectByName(ModelAPI_Feature::group(), aFeatureName);
895 setValue(anObj, anEmptyShape);
900 // the whole result selection check
901 if (aSubShapeName.find('/') == std::string::npos) {
902 ObjectPtr aRes = aDoc->objectByName(ModelAPI_ResultConstruction::group(), aSubShapeName);
904 aRes = aDoc->objectByName(ModelAPI_ResultBody::group(), aSubShapeName);
906 aRes = aDoc->objectByName(ModelAPI_ResultGroup::group(), aSubShapeName);
909 setValue(aRes, anEmptyShape);
914 Selector_Selector aSelector(selectionLabel(), baseDocumentLab());
915 myRestoreDocument = aDoc;
916 TDF_Label aContextLabel = aSelector.restoreByName(
917 aSubShapeName, aShapeType, this, myIsGeometricalSelection);
918 myRestoreDocument.reset();
919 if (!aContextLabel.IsNull()) {
920 ResultPtr aContext = aDoc->resultByLab(aContextLabel); // any label for document access
921 if (aContext.get() && aContext->shape().get()) {
922 TopoDS_Shape aContextShape = aContext->shape()->impl<TopoDS_Shape>();
923 if (aSelector.solve(aContextShape)) {
924 TopoDS_Shape aSelectorShape = aSelector.value();
925 GeomShapePtr aShapeToBeSelected(new GeomAPI_Shape);
926 aShapeToBeSelected->setImpl<TopoDS_Shape>(new TopoDS_Shape(aSelectorShape));
927 // make the context result the latest existing
928 aContext = newestContext(aContext, aShapeToBeSelected);
929 if (myIsGeometricalSelection || aCenterType == NOT_CENTER) {
930 // store the currently generated name
931 selectionLabel().ForgetAllAttributes(true);
932 bool aToUnblock = false;
933 aToUnblock = !owner()->data()->blockSendAttributeUpdated(true);
934 myRef.setValue(aContext);
935 aSelector.store(aContextShape);
936 owner()->data()->sendAttributeUpdated(this);
938 owner()->data()->blockSendAttributeUpdated(false);
940 } else { // re-select center of circle/arc by context and value
941 if (!aShapeToBeSelected->isEdge())
943 std::shared_ptr<GeomAPI_Edge> aSelectedEdge(new GeomAPI_Edge(aShapeToBeSelected));
944 setValueCenter(aContext, aSelectedEdge, aCenterType);
952 TDF_Label aSelLab = selectionLabel();
953 setInvalidIfFalse(aSelLab, false);
957 void Model_AttributeSelection::selectSubShape(const std::string& theType,
958 const GeomPointPtr& thePoint)
960 if (theType.empty() || !thePoint)
963 // list of parent features
964 FeaturePtr anOwner = ModelAPI_Feature::feature(owner());
965 std::set<FeaturePtr> aParents = ModelAPI_Tools::getParents(anOwner);
967 int aSelectionIndex = 0;
968 GeomAPI_Shape::ShapeType aType = GeomAPI_Shape::shapeTypeByStr(theType);
969 if (aType == GeomAPI_Shape::SHAPE) {
970 // possibly, the string consists of the type and the index,
971 // thus, try to separate them
972 size_t aUndersporePos = theType.find_first_of('_');
973 if (aUndersporePos != std::string::npos)
974 aType = GeomAPI_Shape::shapeTypeByStr(theType.substr(0, aUndersporePos));
976 if (aType != GeomAPI_Shape::SHAPE) {
977 for (std::string::const_iterator aChar = theType.begin() + aUndersporePos + 1;
978 aChar != theType.end(); ++aChar) {
979 if (std::isdigit(*aChar))
980 aSelectionIndex = aSelectionIndex * 10 + (*aChar - '0');
986 aSelectionIndex -= 1;
990 std::list<ModelGeomAlgo_Shape::SubshapeOfResult> anAppropriate;
992 // collect features from PartSet and the current part
993 SessionPtr aSession = ModelAPI_Session::get();
994 std::list<FeaturePtr> aFeatures = aSession->moduleDocument()->allFeatures();
995 if (aSession->moduleDocument() != owner()->document()) {
996 std::list<FeaturePtr> aPartFeatures = owner()->document()->allFeatures();
997 aFeatures.insert(aFeatures.end(), aPartFeatures.begin(), aPartFeatures.end());
999 // Process results of all features from the last to the first
1000 // to find appropriate sub-shape
1001 for (std::list<FeaturePtr>::const_reverse_iterator anIt = aFeatures.rbegin();
1002 anIt != aFeatures.rend(); ++anIt) {
1003 // selection cannot be linked to the parent features
1004 if (aParents.find(*anIt) != aParents.end())
1006 // check the feature is a part of composite feature (like sketch elements),
1007 // then do not process it, it will be processed in scope of composite feature
1008 bool isSubOfComposite = false;
1009 const std::set<AttributePtr>& aRefs = (*anIt)->data()->refsToMe();
1010 for (std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
1011 aRefIt != aRefs.end() && !isSubOfComposite; ++aRefIt) {
1012 FeaturePtr aFeature = ModelAPI_Feature::feature((*aRefIt)->owner());
1013 CompositeFeaturePtr aCompFeature =
1014 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
1015 isSubOfComposite = aCompFeature && aCompFeature->isSub(*anIt);
1017 if (isSubOfComposite)
1020 // process results of the current feature to find appropriate sub-shape
1021 if (ModelGeomAlgo_Shape::findSubshapeByPoint(*anIt, thePoint, aType, anAppropriate)) {
1022 std::list<ModelGeomAlgo_Shape::SubshapeOfResult>::iterator anApIt = anAppropriate.begin();
1023 for (; aSelectionIndex > 0 && anApIt != anAppropriate.end(); --aSelectionIndex)
1024 ++anApIt; // skip this shape, because one of the previous is selected
1026 if (anApIt != anAppropriate.end()) {
1027 if (anApIt->myCenterType == (int)ModelAPI_AttributeSelection::NOT_CENTER)
1028 setValue(anApIt->myResult, anApIt->mySubshape);
1030 setValueCenter(anApIt->myResult, anApIt->mySubshape->edge(),
1031 (ModelAPI_AttributeSelection::CenterType)anApIt->myCenterType);
1037 TDF_Label aSelLab = selectionLabel();
1038 setInvalidIfFalse(aSelLab, false);
1042 void Model_AttributeSelection::selectSubShape(const std::string& theType,
1043 const std::string& theContextName, const int theIndex)
1045 // selection of context by name
1046 selectSubShape(theType, theContextName);
1047 ResultPtr aContext = context();
1048 if (aContext.get()) {
1049 GeomShapePtr aContShape = aContext->shape();
1050 if (aContShape.get()) {
1051 GeomAlgoAPI_NExplode aNExp(aContShape, GeomAPI_Shape::shapeTypeByStr(theType));
1052 GeomShapePtr aValue = aNExp.shape(theIndex);
1054 setValue(aContext, aValue);
1059 void Model_AttributeSelection::setId(int theID)
1061 std::shared_ptr<GeomAPI_Shape> aSelection;
1063 ResultPtr aContextRes = context();
1064 // support for compsolids:
1065 while(ModelAPI_Tools::bodyOwner(aContextRes).get()) {
1066 aContextRes = ModelAPI_Tools::bodyOwner(aContextRes);
1068 std::shared_ptr<GeomAPI_Shape> aContext = aContextRes->shape();
1070 TopoDS_Shape aMainShape = aContext->impl<TopoDS_Shape>();
1071 // searching for the latest main shape
1072 if (theID > 0 && aContext && !aContext->isNull())
1074 std::shared_ptr<Model_Document> aDoc =
1075 std::dynamic_pointer_cast<Model_Document>(aContextRes->document());
1077 Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aMainShape, aDoc->generalLabel());
1078 if (!aNS.IsNull()) {
1079 aMainShape = TNaming_Tool::CurrentShape(aNS);
1083 TopTools_IndexedMapOfShape aSubShapesMap;
1084 TopExp::MapShapes(aMainShape, aSubShapesMap);
1085 const TopoDS_Shape& aSelShape = aSubShapesMap.FindKey(theID);
1087 std::shared_ptr<GeomAPI_Shape> aResult(new GeomAPI_Shape);
1088 aResult->setImpl(new TopoDS_Shape(aSelShape));
1090 aSelection = aResult;
1093 setValue(aContextRes, aSelection);
1096 std::string Model_AttributeSelection::contextName(const ResultPtr& theContext) const
1098 std::string aResult;
1099 if (owner()->document() != theContext->document()) {
1100 if (theContext->document() == ModelAPI_Session::get()->moduleDocument()) {
1101 aResult = theContext->document()->kind() + "/";
1103 ResultPtr aDocRes = ModelAPI_Tools::findPartResult(
1104 ModelAPI_Session::get()->moduleDocument(), theContext->document());
1105 if (aDocRes.get()) {
1106 aResult = aDocRes->data()->name() + "/";
1110 aResult += theContext->data()->name();
1114 void Model_AttributeSelection::computeValues(
1115 ResultPtr theOldContext, ResultPtr theNewContext, TopoDS_Shape theValShape,
1116 TopTools_ListOfShape& theShapes)
1118 bool aWasWholeContext = theValShape.IsNull();
1119 if (aWasWholeContext) {
1120 theValShape = theOldContext->shape()->impl<TopoDS_Shape>();
1122 TopAbs_ShapeEnum aValType = theValShape.ShapeType();
1123 TopoDS_Shape aNewContShape = theNewContext->shape()->impl<TopoDS_Shape>();
1124 // if a new value is unchanged in the new context, do nothing: value is correct
1125 TopExp_Explorer aSubExp(aNewContShape, aValType);
1126 for(; aSubExp.More(); aSubExp.Next()) {
1127 if (aSubExp.Current().IsSame(theValShape)) {
1128 theShapes.Append(theValShape);
1132 // if new context becomes compsolid, the resulting sub may be in sub-solids
1133 std::list<ResultPtr> aNewToIterate;
1134 aNewToIterate.push_back(theNewContext);
1135 ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theNewContext);
1137 std::list<ResultPtr> allNewContextSubs;
1138 ModelAPI_Tools::allSubs(aComp, allNewContextSubs);
1139 std::list<ResultPtr>::iterator aSub = allNewContextSubs.begin();
1140 for(; aSub != allNewContextSubs.end(); aSub++) {
1141 ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aSub);
1142 if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
1143 aNewToIterate.push_back(aBody);
1147 // first iteration: searching for the whole shape appearance (like face of the box)
1148 // second iteration: searching for sub-shapes that contain the sub (like vertex on faces)
1149 int aToFindPart = 0;
1150 TopTools_DataMapOfShapeShape aNewToOld; // map from new containers to old containers (with val)
1151 TopTools_MapOfShape anOlds; // to know how many olds produced new containers
1152 for(; aToFindPart != 2 && theShapes.IsEmpty(); aToFindPart++) {
1153 std::list<ResultPtr>::iterator aNewContIter = aNewToIterate.begin();
1154 for(; aNewContIter != aNewToIterate.end(); aNewContIter++) {
1155 std::shared_ptr<Model_Data> aNewData =
1156 std::dynamic_pointer_cast<Model_Data>((*aNewContIter)->data());
1157 TDF_Label aNewLab = aNewData->shapeLab();
1158 // searching for produced sub-shape fully on some label
1159 TDF_ChildIDIterator aNSIter(aNewLab, TNaming_NamedShape::GetID());
1160 for(; aNSIter.More(); aNSIter.Next()) {
1161 Handle(TNaming_NamedShape) aNS = Handle(TNaming_NamedShape)::DownCast(aNSIter.Value());
1162 for(TNaming_Iterator aPairIter(aNS); aPairIter.More(); aPairIter.Next()) {
1163 if (aToFindPart == 0) { // search shape is fully inside
1164 if (aPairIter.OldShape().IsSame(theValShape)) {
1165 if (aPairIter.NewShape().IsNull()) {// value was removed
1169 // don't add edges generated from faces
1170 if (aPairIter.NewShape().ShapeType() <= aValType)
1171 theShapes.Append(aPairIter.NewShape());
1173 } else if (!aPairIter.OldShape().IsNull()) { // search shape that contains this sub
1174 TopExp_Explorer anExp(aPairIter.OldShape(), aValType);
1175 for(; anExp.More(); anExp.Next()) {
1176 if (anExp.Current().IsSame(theValShape)) { // found a new container
1177 if (aPairIter.NewShape().IsNull()) // skip removed high-level shape
1179 aNewToOld.Bind(aPairIter.NewShape(), aPairIter.OldShape());
1180 anOlds.Add(aPairIter.OldShape());
1189 if (aToFindPart == 2 && !aNewToOld.IsEmpty()) {
1190 // also iterate the whole old shape to find not-modified shapes that contain this old
1191 TopoDS_Shape anOldContShape = theOldContext->shape()->impl<TopoDS_Shape>();
1192 NCollection_Map<TopAbs_ShapeEnum> aNewTypes; // types of shapes to iterate
1193 TopTools_DataMapOfShapeShape::Iterator aNewTypeIter(aNewToOld);
1194 for(; aNewTypeIter.More(); aNewTypeIter.Next()) {
1195 if (aNewTypeIter.Key().ShapeType() != aValType)
1196 aNewTypes.Add(aNewTypeIter.Key().ShapeType());
1198 NCollection_Map<TopAbs_ShapeEnum>::Iterator aTypeIter(aNewTypes);
1199 for(; aTypeIter.More(); aTypeIter.Next()) {
1200 for(TopExp_Explorer anExp(anOldContShape, aTypeIter.Value()); anExp.More(); anExp.Next()) {
1201 TopoDS_Shape anOld = anExp.Current();
1202 if (aNewToOld.IsBound(anOld) || anOlds.Contains(anOld)) // this was modified
1204 TopExp_Explorer aValExp(anOld, aValType);
1205 for(; aValExp.More(); aValExp.Next()) {
1206 const TopoDS_Shape& anUnchanged = aValExp.Current();
1207 if (anUnchanged.IsSame(theValShape)) {
1208 aNewToOld.Bind(anOld, anOld);
1216 // map of sub-shapes -> number of occurrences of these shapes in containers
1217 NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher> aSubs;
1218 TopTools_DataMapOfShapeShape::Iterator aContIter(aNewToOld);
1219 for(; aContIter.More(); aContIter.Next()) {
1220 TopExp_Explorer aSubExp(aContIter.Key(), aValType);
1221 for(; aSubExp.More(); aSubExp.Next()) {
1222 if (!aSubs.IsBound(aSubExp.Current())) {
1223 aSubs.Bind(aSubExp.Current(), TopTools_MapOfShape());
1225 // store old to know how many olds produced this shape
1226 aSubs.ChangeFind(aSubExp.Current()).Add(aContIter.Value());
1229 // if sub is appeared same times in containers as the number of old shapes that contain it
1230 int aCountInOld = anOlds.Size();
1231 NCollection_DataMap<TopoDS_Shape, TopTools_MapOfShape, TopTools_ShapeMapHasher>::Iterator
1233 for(; aSubsIter.More(); aSubsIter.Next()) {
1234 if (aSubsIter.Value().Size() == aCountInOld) {
1235 TopoDS_Shape anOld = aSubsIter.Key();
1236 // check this exists in the new shape
1237 TopExp_Explorer aNew(aNewContShape, anOld.ShapeType());
1238 for (; aNew.More(); aNew.Next()) {
1239 if (aNew.Current().IsSame(anOld))
1243 theShapes.Append(anOld);
1247 if (theShapes.IsEmpty()) { // nothing was changed
1248 if (aWasWholeContext)
1249 theShapes.Append(TopoDS_Shape());
1250 else { // if theValShape exists in new context, add it without changes, otherwise - nothing
1251 for (TopExp_Explorer aNew(aNewContShape, aValType); aNew.More(); aNew.Next()){
1252 if (aNew.Current().IsSame(theValShape)) {
1253 theShapes.Append(theValShape);
1258 } else if (theShapes.Size() > 1) {
1259 // check it is possible to remove extra sub-shapes:
1260 // keep only shapes with the same number of containers if possible
1261 TopAbs_ShapeEnum anAncType = TopAbs_FACE;
1262 if (aValType == TopAbs_VERTEX)
1263 anAncType = TopAbs_EDGE;
1264 TopoDS_Shape anOldContext = theOldContext->shape()->impl<TopoDS_Shape>();
1265 TopTools_IndexedDataMapOfShapeListOfShape anOldMap;
1266 TopExp::MapShapesAndUniqueAncestors(anOldContext, aValType, anAncType, anOldMap);
1267 if (anOldMap.Contains(theValShape)) {
1268 int aNumInOld = anOldMap.FindFromKey(theValShape).Extent();
1269 TopTools_IndexedDataMapOfShapeListOfShape aNewMap;
1270 TopExp::MapShapesAndUniqueAncestors(aNewContShape, aValType, anAncType, aNewMap);
1271 TopTools_ListOfShape aNewResults;
1272 for(TopTools_ListOfShape::Iterator aNewSubs(theShapes); aNewSubs.More(); aNewSubs.Next()) {
1273 TopoDS_Shape aCand = aNewSubs.Value();
1274 if (aNewMap.Contains(aCand) && aNewMap.FindFromKey(aCand).Extent() == aNumInOld)
1275 aNewResults.Append(aCand);
1277 if (!aNewResults.IsEmpty() && aNewResults.Size() < theShapes.Size())
1278 theShapes = aNewResults;
1284 void Model_AttributeSelection::concealedFeature(
1285 const FeaturePtr theFeature, const FeaturePtr theStop, std::list<FeaturePtr>& theConcealers)
1287 std::set<FeaturePtr> alreadyProcessed;
1288 alreadyProcessed.insert(theFeature);
1290 alreadyProcessed.insert(theStop);
1291 /// iterate all results to find the concealment-attribute
1292 const std::list<ResultPtr>& aRootRes = theFeature->results();
1293 std::list<ResultPtr>::const_iterator aRootIter = aRootRes.cbegin();
1294 for(; aRootIter != aRootRes.cend(); aRootIter++) {
1295 std::list<ResultPtr> allRes;
1296 allRes.push_back(*aRootIter);
1297 ResultBodyPtr aRootBody = ModelAPI_Tools::bodyOwner(*aRootIter, true);
1298 if (!aRootBody.get())
1299 aRootBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRootIter);
1300 if (aRootBody.get()) {
1301 ModelAPI_Tools::allSubs(aRootBody, allRes);
1303 for(std::list<ResultPtr>::iterator aRIter = allRes.begin(); aRIter != allRes.end(); aRIter++) {
1304 const std::set<AttributePtr>& aRefs = (*aRIter)->data()->refsToMe();
1305 std::set<AttributePtr>::const_iterator aRef = aRefs.cbegin();
1306 for (; aRef != aRefs.cend(); aRef++) {
1307 if (!aRef->get() || !(*aRef)->owner().get())
1309 // concealed attribute only
1310 FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1311 if (alreadyProcessed.find(aRefFeat) != alreadyProcessed.end()) // optimization
1313 alreadyProcessed.insert(aRefFeat);
1314 if (ModelAPI_Session::get()->validators()->isConcealed(aRefFeat->getKind(), (*aRef)->id()))
1316 // for extrusion cut in python script the nested sketch reference may be concealed before
1317 // it is nested, so, check this composite feature is valid
1318 static ModelAPI_ValidatorsFactory* aFactory = ModelAPI_Session::get()->validators();
1319 // need to be validated to update the "Apply" state if not previewed
1320 if (aFactory->validate(aRefFeat)) {
1321 if (theStop.get()) {
1322 std::shared_ptr<Model_Document> aDoc =
1323 std::dynamic_pointer_cast<Model_Document>(theStop->document());
1324 if (!aDoc->isLaterByDep(theStop, aRefFeat)) // skip feature later than stop
1327 theConcealers.push_back(aRefFeat);
1335 bool Model_AttributeSelection::searchNewContext(std::shared_ptr<Model_Document> theDoc,
1336 const TopoDS_Shape theContShape, ResultPtr theContext, TopoDS_Shape theValShape,
1337 TDF_Label theAccessLabel,
1338 std::list<ResultPtr>& theResults, TopTools_ListOfShape& theValShapes)
1340 std::set<ResultPtr> aResults; // to avoid duplicates, new context, null if deleted
1341 // iterate context and shape, but also if it is sub-shape of main shape, check also it
1342 TopTools_ListOfShape aContextList;
1343 aContextList.Append(theContShape);
1344 if (theContext.get()) {
1345 ResultPtr aComposite = ModelAPI_Tools::bodyOwner(theContext);
1346 if (aComposite.get() && aComposite->shape().get() && !aComposite->shape()->isNull())
1347 aContextList.Append(aComposite->shape()->impl<TopoDS_Shape>());
1349 for(TopTools_ListOfShape::Iterator aContIter(aContextList); aContIter.More(); aContIter.Next()) {
1350 TNaming_SameShapeIterator aModifIter(aContIter.ChangeValue(), theAccessLabel);
1351 for(; aModifIter.More(); aModifIter.Next()) {
1352 TDF_Label anObjLab = aModifIter.Label().Father();
1353 ResultPtr aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1354 (theDoc->objects()->object(anObjLab));
1355 if (!aModifierObj.get()) {
1356 // #2241: shape may be sub-element of new object, not main (shell created from faces)
1357 if (!anObjLab.IsRoot())
1358 aModifierObj = std::dynamic_pointer_cast<ModelAPI_Result>
1359 (theDoc->objects()->object(anObjLab.Father()));
1360 if (!aModifierObj.get())
1363 FeaturePtr aModifierFeat = theDoc->feature(aModifierObj);
1364 if (!aModifierFeat.get())
1366 FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1367 if (aModifierFeat == aThisFeature || !theDoc->isLaterByDep(aThisFeature, aModifierFeat))
1368 continue; // the modifier feature is later than this, so, should not be used
1369 FeaturePtr aCurrentModifierFeat = theDoc->feature(theContext);
1370 if (aCurrentModifierFeat == aModifierFeat ||
1371 !theDoc->isLaterByDep(aModifierFeat, aCurrentModifierFeat))
1372 continue; // the current modifier is later than the found, so, useless
1373 Handle(TNaming_NamedShape) aNewNS;
1374 aModifIter.Label().FindAttribute(TNaming_NamedShape::GetID(), aNewNS);
1375 if (aNewNS->Evolution() == TNaming_MODIFY || aNewNS->Evolution() == TNaming_GENERATED) {
1376 aResults.insert(aModifierObj);
1377 } else if (aNewNS->Evolution() == TNaming_DELETE) { // a shape was deleted => result is empty
1378 aResults.insert(ResultPtr());
1379 } else { // not-processed modification => don't support it
1384 // if there exist context composite and sub-result(s), leave only sub(s)
1385 for(std::set<ResultPtr>::iterator aResIter = aResults.begin(); aResIter != aResults.end();) {
1386 ResultPtr aParent = ModelAPI_Tools::bodyOwner(*aResIter);
1387 for(; aParent.get(); aParent = ModelAPI_Tools::bodyOwner(aParent))
1388 if (aResults.count(aParent))
1390 if (aParent.get()) { // erase from set, so, restart iteration
1391 aResults.erase(aParent);
1392 aResIter = aResults.begin();
1396 if (aResults.empty()) {
1397 // check the context become concealed by operation which is earlier than this selection
1398 FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1399 FeaturePtr aContextOwner = theDoc->feature(theContext);
1400 std::list<FeaturePtr> aConcealers;
1401 concealedFeature(aContextOwner, aThisFeature, aConcealers);
1402 std::list<FeaturePtr>::iterator aConcealer = aConcealers.begin();
1403 for(; aConcealer != aConcealers.end(); aConcealer++) {
1404 std::list<ResultPtr> aRefResults;
1405 ModelAPI_Tools::allResults(*aConcealer, aRefResults);
1406 std::list<ResultPtr>::iterator aRefIter = aRefResults.begin();
1407 for(; aRefIter != aRefResults.end(); aRefIter++) {
1408 ResultBodyPtr aRefBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRefIter);
1409 if (!aRefBody.get() || aRefBody->numberOfSubs() != 0) // iterate only leafs
1411 GeomShapePtr aRefShape = aRefBody->shape();
1412 if (!aRefShape.get() || aRefShape->isNull())
1414 if (aRefShape->impl<TopoDS_Shape>().IsSame(theContShape)) {
1415 // add the new context result with the same shape
1416 aResults.insert(aRefBody);
1419 if (aResults.empty())
1420 return true; // feature conceals result, return true, so the context will be removed
1422 if (aResults.empty())
1423 return false; // no modifications found, must stay the same
1425 // iterate all results to find further modifications
1426 std::set<ResultPtr>::iterator aResIter = aResults.begin();
1427 for(; aResIter != aResults.end(); aResIter++) {
1428 if (aResIter->get() != NULL) {
1429 // compute new values by two contexts: the old and the new
1430 TopTools_ListOfShape aValShapes;
1431 computeValues(theContext, *aResIter, theValShape, aValShapes);
1433 TopTools_ListIteratorOfListOfShape aNewVal(aValShapes);
1434 for(; aNewVal.More(); aNewVal.Next()) {
1435 std::list<ResultPtr> aNewRes;
1436 TopTools_ListOfShape aNewUpdatedVal;
1437 TopoDS_Shape aNewValSh = aNewVal.Value();
1438 TopoDS_Shape aNewContShape = (*aResIter)->shape()->impl<TopoDS_Shape>();
1439 if (theValShape.IsNull() && aNewContShape.IsSame(aNewValSh))
1440 aNewValSh.Nullify();
1441 if (searchNewContext(theDoc, aNewContShape, *aResIter, aNewValSh,
1442 theAccessLabel, aNewRes, aNewUpdatedVal))
1444 // append new results instead of the current ones
1445 std::list<ResultPtr>::iterator aNewIter = aNewRes.begin();
1446 TopTools_ListIteratorOfListOfShape aNewUpdVal(aNewUpdatedVal);
1447 for(; aNewIter != aNewRes.end(); aNewIter++, aNewUpdVal.Next()) {
1448 theResults.push_back(*aNewIter);
1449 theValShapes.Append(aNewUpdVal.Value());
1451 } else { // the current result is good
1452 theResults.push_back(*aResIter);
1453 theValShapes.Append(aNewValSh);
1458 return true; // theResults must be empty: everything is deleted
1461 void Model_AttributeSelection::updateInHistory(bool& theRemove)
1463 static std::shared_ptr<GeomAPI_Shape> anEmptyShape;
1465 ResultPtr aContext = std::dynamic_pointer_cast<ModelAPI_Result>(myRef.value());
1466 if (!aContext.get() || (aContext->groupName() != ModelAPI_ResultBody::group() &&
1467 aContext->groupName() != ModelAPI_ResultPart::group())) {
1468 // but check the case the whole results are allowed: whole features may be selected
1469 if (myParent && myParent->isWholeResultAllowed()) {
1470 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(myRef.value());
1471 if (aFeature.get()) {
1472 FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1473 std::list<FeaturePtr> aConcealers;
1474 concealedFeature(aFeature, aThisFeature, aConcealers);
1475 if (aConcealers.empty())
1477 bool aChanged = false;
1478 std::list<FeaturePtr>::iterator aConcealer = aConcealers.begin();
1479 for(; aConcealer != aConcealers.end(); aConcealer++)
1480 if (!myParent->isInList(*aConcealer, anEmptyShape)) {// avoid addition of duplicates
1481 setValue(*aConcealer, anEmptyShape);
1484 if (aConcealer == aConcealers.end()) {
1485 if (!aChanged) // remove this
1487 } else { // append new
1488 for(aConcealer++; aConcealer != aConcealers.end(); aConcealer++)
1489 if (!myParent->isInList(*aConcealer, anEmptyShape)) // avoid addition of duplicates
1490 myParent->append(*aConcealer, anEmptyShape);
1492 if (aChanged) // searching for the further modifications
1493 updateInHistory(theRemove);
1496 return;// only bodies and parts may be modified later in the history, skip otherwise
1499 std::shared_ptr<Model_Document> aDoc =
1500 std::dynamic_pointer_cast<Model_Document>(aContext->document());
1501 std::shared_ptr<Model_Data> aContData = std::dynamic_pointer_cast<Model_Data>(aContext->data());
1502 if (!aContData.get() || !aContData->isValid())
1504 TDF_Label aContLab = aContData->shapeLab(); // named shape where the selected context is located
1506 // checking this may be just a reference to another context (same shape), so use that label
1507 Handle(TNaming_NamedShape) aContNS;
1508 Handle(TDF_Reference) aRefAttr;
1509 while(!aContLab.FindAttribute(TNaming_NamedShape::GetID(), aContNS) &&
1510 aContLab.FindAttribute(TDF_Reference::GetID(), aRefAttr))
1511 aContLab = aRefAttr->Get();
1513 if (!aContLab.FindAttribute(TNaming_NamedShape::GetID(), aContNS)) {
1514 bool aFoundNewContext = true;
1515 ResultPtr aNewContext = aContext;
1516 while(aFoundNewContext) {
1517 aFoundNewContext = false;
1518 // parts have no shape in result, so, trace references using the Part info
1519 if (aNewContext->groupName() == ModelAPI_ResultPart::group()) {
1520 ResultPartPtr aPartContext = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aNewContext);
1521 if (aPartContext.get()) { // searching for the up to date references to the referenced cont
1522 const std::set<AttributePtr>& aRefs = aPartContext->data()->refsToMe();
1523 std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
1524 for(; aRef != aRefs.end(); aRef++) {
1525 // to avoid detection of part changes by local selection only
1526 AttributeSelectionPtr aSel =
1527 std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(*aRef);
1528 if (aSel.get() && aSel->value().get() &&
1529 !aSel->value()->isSame(aSel->context()->shape()))
1532 FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1534 if (aRefFeat.get() && aRefFeat != owner() && aRefFeat->firstResult().get()) {
1535 // check the reference is concealed: #2900
1536 ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
1537 if (!aValidators->isConcealed(aRefFeat->getKind(), (*aRef)->id()))
1539 FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1540 if (!aDoc->isLaterByDep(aRefFeat, aThisFeature)) { // found better feature
1541 aFoundNewContext = true;
1542 aNewContext = aRefFeat->firstResult();
1549 if (aNewContext != aContext) {
1550 setValue(aNewContext, value());
1554 FeaturePtr aThisFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
1555 FeaturePtr aCurrentModifierFeat = aDoc->feature(aContext);
1556 // iterate the context shape modifications in order to find a feature that is upper in history
1557 // that this one and is really modifies the referenced result to refer to it
1558 ResultPtr aModifierResFound;
1559 TNaming_Iterator aPairIter(aContNS);
1560 if (!aPairIter.More())
1562 TopoDS_Shape aNewCShape = aPairIter.NewShape();
1563 bool anIterate = true;
1564 // trying to update also the sub-shape selected
1565 GeomShapePtr aSubShape = value();
1566 if (aSubShape.get() && aSubShape->isEqual(aContext->shape()))
1568 TopoDS_Shape aValShape;
1569 if (aSubShape.get()) {
1570 aValShape = aSubShape->impl<TopoDS_Shape>();
1573 std::list<ResultPtr> aNewContexts;
1574 TopTools_ListOfShape aValShapes;
1575 if (searchNewContext(aDoc, aNewCShape, aContext, aValShape, aContLab, aNewContexts, aValShapes))
1577 std::set<ResultPtr> allContexts, aSkippedContext;
1578 std::list<ResultPtr>::iterator aNewContext = aNewContexts.begin();
1579 for(; aNewContext != aNewContexts.end(); aNewContext++)
1580 allContexts.insert(*aNewContext);
1582 // if there exist context composite and sub-result(s), leave only sub(s)
1583 std::set<ResultPtr>::iterator aResIter = allContexts.begin();
1584 for(; aResIter != allContexts.end(); aResIter++) {
1585 ResultPtr aParent = ModelAPI_Tools::bodyOwner(*aResIter);
1586 for(; aParent.get(); aParent = ModelAPI_Tools::bodyOwner(aParent))
1587 if (allContexts.count(aParent))
1588 aSkippedContext.insert(aParent);
1591 GeomAPI_Shape::ShapeType aListShapeType = GeomAPI_Shape::SHAPE;
1593 if (myParent->selectionType() == "VERTEX" || myParent->selectionType() == "Vertices")
1594 aListShapeType = GeomAPI_Shape::VERTEX;
1595 else if (myParent->selectionType() == "EDGE" || myParent->selectionType() == "Edges")
1596 aListShapeType = GeomAPI_Shape::EDGE;
1597 else if (myParent->selectionType() == "FACE" || myParent->selectionType() == "Faces")
1598 aListShapeType = GeomAPI_Shape::FACE;
1601 // issue #3031: skip topology if there is more convenient shape type presents in the
1602 // same context as a result of this
1603 bool isWholeResult = myParent && myParent->isWholeResultAllowed() && !aSubShape.get();
1604 GeomAPI_Shape::ShapeType allowedType = GeomAPI_Shape::SHAPE;
1605 if (isWholeResult) {
1606 std::list<ResultPtr>::iterator aNewCont = aNewContexts.begin();
1607 TopTools_ListIteratorOfListOfShape aNewValues(aValShapes);
1608 for(; aNewCont != aNewContexts.end(); aNewCont++, aNewValues.Next()) {
1609 if (aNewValues.Value().IsNull()) { // only for the whole context
1610 GeomAPI_Shape::ShapeType aShapeType = (*aNewCont)->shape()->shapeType();
1611 if (allowedType == GeomAPI_Shape::SHAPE) { // just set this one
1612 allowedType = aShapeType;
1614 GeomAPI_Shape::ShapeType anAllowed = allowedType;
1615 if (anAllowed != aShapeType) { // select the best, nearest to the origin
1616 GeomAPI_Shape::ShapeType anOldShapeType = aContext->shape()->shapeType();
1617 GeomAPI_Shape::ShapeType aDeltaAllowed =
1618 (GeomAPI_Shape::ShapeType)(anOldShapeType - anAllowed);
1619 if (aDeltaAllowed < 0)
1620 aDeltaAllowed = (GeomAPI_Shape::ShapeType)(-aDeltaAllowed);
1621 GeomAPI_Shape::ShapeType aDeltaThis =
1622 (GeomAPI_Shape::ShapeType)(anOldShapeType - aShapeType);
1624 aDeltaThis = (GeomAPI_Shape::ShapeType)(-aDeltaThis);
1625 if (aDeltaThis == aDeltaAllowed) { // equal distance to context, select complicated
1626 if (anOldShapeType < anAllowed)
1627 allowedType = aShapeType;
1628 } else if (aDeltaAllowed > aDeltaThis) { // this wins
1629 allowedType = aShapeType;
1637 std::list<ResultPtr>::iterator aNewCont = aNewContexts.begin();
1638 TopTools_ListIteratorOfListOfShape aNewValues(aValShapes);
1639 bool aFirst = true; // first is set to this, next are appended to parent
1640 for(; aNewCont != aNewContexts.end(); aNewCont++, aNewValues.Next()) {
1641 if (aSkippedContext.count(*aNewCont))
1644 if (isWholeResult && aNewValues.Value().IsNull())
1645 if (allowedType != GeomAPI_Shape::SHAPE &&
1646 (*aNewCont)->shape()->shapeType() != allowedType)
1647 continue; // there is better result exists with the better shape type (issue #3031)
1649 GeomShapePtr aValueShape;
1650 if (!aNewValues.Value().IsNull()) {
1651 aValueShape = std::make_shared<GeomAPI_Shape>();
1652 aValueShape->setImpl<TopoDS_Shape>(new TopoDS_Shape(aNewValues.Value()));
1654 // Check that list has the same type of shape selection before adding.
1655 GeomAPI_Shape::ShapeType aShapeShapeType = GeomAPI_Shape::SHAPE;
1656 if (aValueShape.get()) {
1657 aShapeShapeType = aValueShape->shapeType();
1659 aShapeShapeType = (*aNewCont)->shape()->shapeType();
1661 if (aListShapeType != GeomAPI_Shape::SHAPE && aListShapeType != aShapeShapeType) {
1662 // exception is for whole results selected
1663 if (!isWholeResult) {
1668 ResultPtr aNewContext = *aNewCont;
1669 if (aValueShape.get()) { // #2892 if context is higher level result, search this sub in lower
1670 ResultBodyPtr aBodyContext = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aNewContext);
1671 if (aBodyContext.get() && aBodyContext->numberOfSubs() != 0) {
1672 std::list<ResultPtr> aLower;
1673 ModelAPI_Tools::allSubs(aBodyContext, aLower, true);
1674 for(std::list<ResultPtr>::iterator aL = aLower.begin(); aL != aLower.end(); aL++) {
1675 GeomShapePtr aLShape = (*aL)->shape();
1676 if (aLShape.get() && !aLShape->isNull()) {
1677 if (aLShape->isSubShape(aValueShape, false)) {
1687 if (!myParent || !myParent->isInList(aNewContext, aValueShape)) { // avoid duplicates
1688 setValue(aNewContext, aValueShape);
1691 } else if (myParent) {
1692 if (!myParent->isInList(aNewContext, aValueShape)) // avoid addition of duplicates
1693 myParent->append(aNewContext, aValueShape);
1696 if (aFirst) { // nothing was added, all results were deleted
1700 static ResultPtr anEmptyContext;
1701 setValue(anEmptyContext, anEmptyShape); // nullify the selection
1708 void Model_AttributeSelection::setParent(Model_AttributeSelectionList* theParent)
1710 myParent = theParent;
1713 std::string Model_AttributeSelection::contextName(const TDF_Label theSelectionLab)
1715 std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1716 std::dynamic_pointer_cast<Model_Document>(owner()->document());
1717 FeaturePtr aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1718 bool aBaseDocumnetUsed = false;
1719 if (!aFeatureOwner.get()) { // use module document
1720 aDoc = std::dynamic_pointer_cast<Model_Document>(ModelAPI_Session::get()->moduleDocument());
1721 aFeatureOwner = aDoc->featureByLab(theSelectionLab);
1722 aBaseDocumnetUsed = true;
1724 if (aFeatureOwner.get()) {
1725 // if it is sub-element of the sketch, the context name is the name of the sketch
1726 // searching also for result - real context
1728 FeaturePtr aComposite = ModelAPI_Tools::compositeOwner(aFeatureOwner);
1729 if (aComposite.get() && aComposite->results().size() == 1 &&
1730 aComposite->firstResult()->groupName() == ModelAPI_ResultConstruction::group()) {
1731 aFeatureOwner = aComposite;
1732 aResult = aFeatureOwner->firstResult();
1734 aResult = aDoc->resultByLab(theSelectionLab);
1736 if (aResult.get()) {
1737 // this is to avoid duplicated names of results problem
1738 std::string aContextName = aResult->data()->name();
1739 // myLab corresponds to the current time
1740 TDF_Label aCurrentLab = selectionLabel();
1741 while(aCurrentLab.Depth() > 3)
1742 aCurrentLab = aCurrentLab.Father();
1744 int aNumInHistoryNames =
1745 aDoc->numberOfNameInHistory(aResult, aCurrentLab);
1746 while(aNumInHistoryNames > 1) { // add "_" before name the needed number of times
1747 aContextName = "_" + aContextName;
1748 aNumInHistoryNames--;
1750 if (aBaseDocumnetUsed)
1751 aContextName = aDoc->kind() + "/" + aContextName;
1752 return aContextName;
1755 return ""; // invalid case
1758 /// This method restores by the context and value name the context label and
1759 /// sub-label where the value is. Returns true if it is valid.
1760 bool Model_AttributeSelection::restoreContext(std::string theName,
1761 TDF_Label& theContext, TDF_Label& theValue)
1763 static const GeomShapePtr anEmptyShape; // to store context only
1764 std::string aName = theName;
1765 std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1766 std::dynamic_pointer_cast<Model_Document>(owner()->document());
1768 // remove the sub-value part if exists
1769 std::string aSubShapeName = aName;
1770 std::string::size_type n = aName.find('/');
1771 if (n != std::string::npos) {
1772 aName = aName.substr(0, n);
1775 if (aName.empty()) return false;
1776 bool anUniqueContext = false;
1777 ResultPtr aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1778 if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull()) {
1780 aDoc = std::dynamic_pointer_cast<Model_Document>(
1781 ModelAPI_Session::get()->moduleDocument());
1782 if (theName.find(aDoc->kind()) == 0) { // remove the document identifier from name if exists
1783 aSubShapeName = theName.substr(aDoc->kind().size() + 1);
1784 aName = aSubShapeName;
1785 std::string::size_type n = aName.find('/');
1786 if (n != std::string::npos) {
1787 aName = aName.substr(0, n);
1790 aCont = aDoc->findByName(aName, aSubShapeName, anUniqueContext);
1791 if (!aCont.get() || !aCont->shape().get() || aCont->shape()->isNull())
1795 // searching the sub-shape
1796 static const ResultPtr anEmpty;
1797 theValue = aDoc->findNamingName(aSubShapeName, anUniqueContext ? aCont : anEmpty);
1799 // sketch sub-component shape and name is located in separated feature label, try the sub-name
1800 if (theValue.IsNull() && aCont->groupName() == ModelAPI_ResultConstruction::group()) {
1801 std::string::size_type aSlash = aSubShapeName.rfind('/');
1802 if (aSlash != std::string::npos) {
1803 std::string aCompName = aSubShapeName.substr(aSlash + 1);
1804 CompositeFeaturePtr aComposite =
1805 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aDoc->feature(aCont));
1806 if (aComposite.get() && aComposite->numberOfSubs()) {
1807 const int aSubNum = aComposite->numberOfSubs();
1808 for (int a = 0; a < aSubNum && theValue.IsNull(); a++) {
1809 FeaturePtr aSub = aComposite->subFeature(a);
1810 const std::list<std::shared_ptr<ModelAPI_Result> >& aResults = aSub->results();
1811 std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aRes = aResults.cbegin();
1812 for (; aRes != aResults.cend() && theValue.IsNull(); aRes++) {
1813 if ((*aRes)->data()->name() == aCompName) {
1814 theValue = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1816 } else { // any sub-label because the sketch line may be renamed, but not sub-vertices
1817 TDF_Label aLab = std::dynamic_pointer_cast<Model_Data>((*aRes)->data())->shapeLab();
1818 TDF_ChildIDIterator aSubNames(aLab, TDataStd_Name::GetID());
1819 for(; aSubNames.More(); aSubNames.Next()) {
1820 if (Handle(TDataStd_Name)::DownCast(aSubNames.Value())->Get().
1821 IsEqual(aCompName.c_str())) {
1822 theValue = aSubNames.Value()->Label();
1834 theContext = std::dynamic_pointer_cast<Model_Data>(aCont->data())->label();
1839 bool Model_AttributeSelection::isLater(
1840 const TDF_Label theResult1, const TDF_Label theResult2) const
1842 std::shared_ptr<Model_Document> aDoc = myRestoreDocument.get() ? myRestoreDocument :
1843 std::dynamic_pointer_cast<Model_Document>(owner()->document());
1844 FeaturePtr aFeat1 = aDoc->featureByLab(theResult1);
1847 FeaturePtr aFeat2 = aDoc->featureByLab(theResult2);
1850 return aDoc->isLaterByDep(aFeat1, aFeat2);
1853 ResultPtr Model_AttributeSelection::newestContext(
1854 const ResultPtr theCurrent, const GeomShapePtr theValue)
1856 ResultPtr aResult = theCurrent;
1857 GeomShapePtr aSelectedShape = theValue.get() ? theValue : theCurrent->shape();
1858 std::shared_ptr<Model_Document> aDoc =
1859 std::dynamic_pointer_cast<Model_Document>(owner()->document());
1860 bool aFindNewContext = true;
1861 while (aFindNewContext && aResult.get()) {
1862 aFindNewContext = false;
1863 // try to find the last context to find the up to date shape
1864 TopoDS_Shape aConShape = aResult->shape()->impl<TopoDS_Shape>();
1865 if (TNaming_Tool::HasLabel(selectionLabel(), aConShape)) {
1866 Handle(TNaming_NamedShape) aNS = TNaming_Tool::NamedShape(aConShape, selectionLabel());
1867 if (!aNS.IsNull()) {
1868 aNS = TNaming_Tool::CurrentNamedShape(aNS);
1870 && isLater(selectionLabel(), aNS->Label())
1871 && isLater(aNS->Label(),
1872 std::dynamic_pointer_cast<Model_Data>(aResult->data())->label()))
1874 TDF_Label aLab = aNS->Label();
1875 ResultPtr aRes = aDoc->resultByLab(aLab);
1877 if (aRes->shape()->isSubShape(aSelectedShape)) {
1879 aFindNewContext = true;
1887 // TestFillWireVertex.py - sketch constructions for wire may participate too
1888 //if (aResult->groupName() == ModelAPI_ResultBody::group()) {
1889 // try to search newer context by the concealment references
1890 // take references to all results: root one, any sub
1891 std::list<ResultPtr> allRes;
1892 ResultPtr aCompContext;
1893 ResultBodyPtr aCompBody = ModelAPI_Tools::bodyOwner(aResult, true);
1894 if (aCompBody.get()) {
1895 ModelAPI_Tools::allSubs(aCompBody, allRes);
1896 allRes.push_back(aCompBody);
1897 aCompContext = aCompBody;
1900 allRes.push_back(aResult);
1902 for (std::list<ResultPtr>::iterator aSub = allRes.begin(); aSub != allRes.end(); aSub++) {
1903 ResultPtr aResCont = *aSub;
1904 ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResCont);
1905 if (aResBody.get() && aResBody->numberOfSubs() > 0 && aResBody != aCompContext)
1906 continue; // only lower and higher level subs are counted
1907 const std::set<AttributePtr>& aRefs = aResCont->data()->refsToMe();
1908 std::set<AttributePtr>::const_iterator aRef = aRefs.begin();
1909 for (; !aFindNewContext && aRef != aRefs.end(); aRef++) {
1910 if (!aRef->get() || !(*aRef)->owner().get())
1912 // concealed attribute only
1913 FeaturePtr aRefFeat = std::dynamic_pointer_cast<ModelAPI_Feature>((*aRef)->owner());
1914 if (!ModelAPI_Session::get()->validators()->isConcealed(
1915 aRefFeat->getKind(), (*aRef)->id()))
1917 // search the feature result that contains sub-shape selected
1918 std::list<std::shared_ptr<ModelAPI_Result> > aResults;
1920 // take all sub-results or one result
1921 std::list<ResultPtr> aRefFeatResults;
1922 ModelAPI_Tools::allResults(aRefFeat, aRefFeatResults);
1923 std::list<ResultPtr>::iterator aRefResIter = aRefFeatResults.begin();
1924 for (; aRefResIter != aRefFeatResults.end(); aRefResIter++) {
1925 ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRefResIter);
1926 if (aBody.get() && aBody->numberOfSubs() == 0) // add only lower level subs
1927 aResults.push_back(aBody);
1929 std::list<std::shared_ptr<ModelAPI_Result> >::iterator aResIter = aResults.begin();
1931 // searching by sub-shape
1932 for (; aResIter != aResults.end(); aResIter++) {
1933 if (!aResIter->get() || !(*aResIter)->data()->isValid() || (*aResIter)->isDisabled())
1935 GeomShapePtr aShape = (*aResIter)->shape();
1936 if (aShape.get() && aShape->isSubShape(aSelectedShape, false)) {
1937 aResult = *aResIter; // found new context (produced from this) with same subshape
1938 aFindNewContext = true; // continue searching further
1945 // if compsolid is context, try to take sub-solid as context: like in GUI and scripts
1946 ResultBodyPtr aComp = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
1947 if (aComp && aComp->numberOfSubs()) {
1948 std::list<ResultPtr> allSubs;
1949 ModelAPI_Tools::allSubs(aComp, allSubs);
1950 std::list<ResultPtr>::iterator aS = allSubs.begin();
1951 for (; aS != allSubs.end(); aS++) {
1952 ResultBodyPtr aSub = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aS);
1953 if (aSub && aSub->numberOfSubs() == 0 && aSub->shape().get() &&
1954 aSub->shape()->isSubShape(aSelectedShape)) {
1960 // in case sketch line was selected for wire, but wire was concealed and not such line anymore,
1961 // so, actually, the sketch element was selected (which is never concealed)
1962 if (aResult != theCurrent && aResult->isConcealed())
1963 aResult = theCurrent;
1967 void Model_AttributeSelection::combineGeometrical()
1969 if (myTmpContext.get() || myTmpSubShape.get())
1971 TDF_Label aSelLab = selectionLabel();
1972 if (aSelLab.IsAttribute(kINVALID_SELECTION) || !myRef.isInitialized())
1975 if (aSelLab.IsAttribute(kCIRCLE_CENTER) || aSelLab.IsAttribute(kELLIPSE_CENTER1) ||
1976 aSelLab.IsAttribute(kELLIPSE_CENTER2) || aSelLab.IsAttribute(kSIMPLE_REF_ID))
1979 if (aSelLab.IsAttribute(kPART_REF_ID)) {
1980 ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(context());
1981 if (!aPart.get() || !aPart->isActivated())
1982 return; // postponed naming needed
1983 Handle(TDataStd_Integer) anIndex;
1984 if (aSelLab.FindAttribute(TDataStd_Integer::GetID(), anIndex)) {
1985 if (anIndex->Get()) { // special selection attribute was created, use it
1986 std::string aNewName;
1987 aPart->combineGeometrical(anIndex->Get(), aNewName);
1988 TDataStd_Name::Set(aSelLab, aNewName.c_str());
1994 std::shared_ptr<Model_ResultConstruction> aConstr =
1995 std::dynamic_pointer_cast<Model_ResultConstruction>(context());
1998 FeaturePtr aFeature = contextFeature();
2002 Selector_Selector aSelector(aSelLab, baseDocumentLab());
2003 TopoDS_Shape aContextShape = context()->shape()->impl<TopoDS_Shape>();
2004 if (aSelector.restore(aContextShape)) {
2005 aSelector.combineGeometrical(aContextShape);
2009 TDF_Label Model_AttributeSelection::baseDocumentLab()
2011 if (ModelAPI_Session::get()->moduleDocument() != owner()->document())
2012 return std::dynamic_pointer_cast<Model_Document>
2013 (ModelAPI_Session::get()->moduleDocument())->extConstructionsLabel();
2014 static TDF_Label anEmpty;