]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_AttributeSelectionList.cpp
Salome HOME
#1821 Axis by two plains: problem in selection update
[modules/shaper.git] / src / Model / Model_AttributeSelectionList.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_AttributeSelectionList.cpp
4 // Created:     22 Oct 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include "Model_AttributeSelectionList.h"
8 #include "Model_AttributeSelection.h"
9 #include "Model_Application.h"
10 #include "Model_Events.h"
11 #include "Model_Data.h"
12
13 #include <TDF_AttributeIterator.hxx>
14 #include <TDF_ChildIterator.hxx>
15 #include <TDF_RelocationTable.hxx>
16 #include <TopAbs_ShapeEnum.hxx>
17 #include <TopoDS.hxx>
18 #include <TopoDS_Shape.hxx>
19 #include <TopoDS_Edge.hxx>
20 #include <BRep_Tool.hxx>
21 #include <TNaming_Builder.hxx>
22 #include <TNaming_Iterator.hxx>
23 #include <NCollection_List.hxx>
24
25 using namespace std;
26
27 void Model_AttributeSelectionList::append(
28     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
29     const bool theTemporarily)
30 {
31   // do not use the degenerated edge as a shape, a list is not incremented in this case
32   if (theSubShape.get() && !theSubShape->isNull() && theSubShape->isEdge()) {
33     const TopoDS_Shape& aSubShape = theSubShape->impl<TopoDS_Shape>();
34     if (aSubShape.ShapeType() == TopAbs_EDGE && BRep_Tool::Degenerated(TopoDS::Edge(aSubShape))) {
35       return;
36     }
37   }
38
39   if (myIsCashed && !theTemporarily) {
40     myCash[theContext].push_back(theSubShape);
41   }
42
43   int aNewTag = mySize->Get() + 1;
44   TDF_Label aNewLab = mySize->Label().FindChild(aNewTag);
45
46   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
47     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aNewLab));
48   if (owner()) {
49     aNewAttr->setObject(owner());
50   }
51   aNewAttr->setID(id());
52   mySize->Set(aNewTag);
53   aNewAttr->setValue(theContext, theSubShape, theTemporarily);
54   if (theTemporarily)
55     myTmpAttr = aNewAttr;
56   else 
57     myTmpAttr.reset();
58   owner()->data()->sendAttributeUpdated(this);
59 }
60
61 void Model_AttributeSelectionList::append(
62   const std::string theNamingName, const std::string& theType)
63 {
64   int aNewTag = mySize->Get() + 1;
65   TDF_Label aNewLab = mySize->Label().FindChild(aNewTag);
66
67   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
68     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aNewLab));
69   if (owner()) {
70     aNewAttr->setObject(owner());
71   }
72   aNewAttr->setID(id());
73   mySize->Set(aNewTag);
74   aNewAttr->selectSubShape(theType.empty() ? selectionType() : theType, theNamingName);
75   owner()->data()->sendAttributeUpdated(this);
76 }
77
78 void Model_AttributeSelectionList::removeTemporaryValues()
79 {
80   if (myTmpAttr.get()) {
81     myTmpAttr.reset();
82   }
83 }
84
85 void Model_AttributeSelectionList::removeLast() 
86 {
87   int anOldSize = mySize->Get();
88   if (anOldSize != 0) {
89     mySize->Set(anOldSize - 1);
90     TDF_Label aLab = mySize->Label().FindChild(anOldSize);
91     std::shared_ptr<Model_AttributeSelection> aOldAttr = 
92       std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aLab));
93     aOldAttr->setObject(owner());
94     REMOVE_BACK_REF(aOldAttr->context());
95     aLab.ForgetAllAttributes(Standard_True);
96     myTmpAttr.reset();
97     owner()->data()->sendAttributeUpdated(this);
98   }
99 }
100
101 // copies named shapes: we need the implementation of this 
102 static void CopyNS(const Handle(TNaming_NamedShape)& theFrom,
103   const Handle(TDF_Attribute)& theTo)
104
105   TDF_Label aLab = theTo->Label();
106   TNaming_Builder B(aLab);
107
108   // TNaming_Iterator iterates in reversed way than it was put in Builder, so, keep it in container
109   // and iterate from end to begin
110   NCollection_List<TopoDS_Shape> aOlds;
111   NCollection_List<TopoDS_Shape> aNews;
112   NCollection_List<TNaming_Evolution> aStatuses;
113
114   TNaming_Iterator anIt (theFrom);
115   for ( ;anIt.More() ; anIt.Next()) {
116     aOlds.Prepend(anIt.OldShape());
117     aNews.Prepend(anIt.NewShape());
118     aStatuses.Prepend(anIt.Evolution());
119   }
120
121   NCollection_List<TopoDS_Shape>::Iterator aOldIter(aOlds);
122   NCollection_List<TopoDS_Shape>::Iterator aNewIter(aNews);
123   NCollection_List<TNaming_Evolution>::Iterator aStatIter(aStatuses);
124   for(; aOldIter.More(); aOldIter.Next(), aNewIter.Next(), aStatIter.Next()) {
125     switch (aStatIter.Value()) {
126     case TNaming_PRIMITIVE :
127       B.Generated(aNewIter.Value());
128       break;
129     case TNaming_GENERATED :
130       B.Generated(aOldIter.Value(), aNewIter.Value());
131       break;
132     case TNaming_MODIFY : 
133       B.Modify(aOldIter.Value(), aNewIter.Value());
134       break;
135     case TNaming_DELETE : 
136       B.Delete (aOldIter.Value());
137       break;
138     case TNaming_SELECTED :
139       B.Select(aNewIter.Value(), aOldIter.Value());
140       break;
141     default:
142       break;
143     }
144   }
145 }
146
147 /// makes copy of all attributes on the given label and all sub-labels
148 static void copyAttrs(TDF_Label theSource, TDF_Label theDestination) {
149   TDF_AttributeIterator anAttrIter(theSource);
150   for(; anAttrIter.More(); anAttrIter.Next()) {
151     Handle(TDF_Attribute) aTargetAttr;
152     if (!theDestination.FindAttribute(anAttrIter.Value()->ID(), aTargetAttr)) {
153       // create a new attribute if not yet exists in the destination
154             aTargetAttr = anAttrIter.Value()->NewEmpty();
155       theDestination.AddAttribute(aTargetAttr);
156     }
157     // for named shape copy exact shapes (in NamedShape Paste method the CopyTool is used)
158     Handle(TNaming_NamedShape) aNS = Handle(TNaming_NamedShape)::DownCast(anAttrIter.Value());
159     if (aNS.IsNull()) {
160       Handle(TDF_RelocationTable) aRelocTable = new TDF_RelocationTable(); // no relocation, empty map
161       anAttrIter.Value()->Paste(aTargetAttr, aRelocTable);
162     } else {
163       CopyNS(aNS, aTargetAttr);
164     }
165   }
166   // copy the sub-labels content
167   TDF_ChildIterator aSubLabsIter(theSource);
168   for(; aSubLabsIter.More(); aSubLabsIter.Next()) {
169     copyAttrs(aSubLabsIter.Value(), theDestination.FindChild(aSubLabsIter.Value().Tag()));
170   }
171 }
172
173 void Model_AttributeSelectionList::remove(const std::set<int>& theIndices)
174 {
175   int anOldSize = mySize->Get();
176   int aRemoved = 0;
177   // iterate one by one and shifting the removed indicies
178   for(int aCurrent = 0; aCurrent < anOldSize; aCurrent++) {
179     if (theIndices.find(aCurrent) == theIndices.end()) { // not removed
180       if (aRemoved) { // but must be shifted to the removed position
181         TDF_Label aSource = mySize->Label().FindChild(aCurrent + 1);
182         TDF_Label aDest = mySize->Label().FindChild(aCurrent + 1 - aRemoved);
183         copyAttrs(aSource, aDest);
184         // remove the moved source
185         aSource.ForgetAllAttributes(Standard_True);
186       }
187     } else { // this is removed, so remove everything from this label
188       TDF_Label aLab = mySize->Label().FindChild(aCurrent + 1);
189       std::shared_ptr<Model_AttributeSelection> aOldAttr = 
190         std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aLab));
191       aOldAttr->setObject(owner());
192       REMOVE_BACK_REF(aOldAttr->context());
193       aLab.ForgetAllAttributes(Standard_True);
194       myTmpAttr.reset();
195       aRemoved++;
196     }
197   }
198   if (aRemoved) { // remove was performed, so, update the size and this attribute
199     mySize->Set(anOldSize - aRemoved);
200     owner()->data()->sendAttributeUpdated(this);
201   }
202 }
203
204 int Model_AttributeSelectionList::size()
205 {
206   return mySize->Get();
207 }
208
209 bool Model_AttributeSelectionList::isInList(const ResultPtr& theContext,
210                                             const std::shared_ptr<GeomAPI_Shape>& theSubShape,
211                                             const bool theTemporarily)
212 {
213   if (myIsCashed) { // the cashing is active
214     std::map<ResultPtr, std::list<std::shared_ptr<GeomAPI_Shape> > >::iterator aContext =
215       myCash.find(theContext);
216     if (aContext != myCash.end()) {
217       // iterate shapes because "isEqual" method must be called for each shape
218       std::list<std::shared_ptr<GeomAPI_Shape> >::iterator aShapes = aContext->second.begin();
219       for(; aShapes != aContext->second.end(); aShapes++) {
220         if (!theSubShape.get()) {
221           if (!aShapes->get())
222             return true;
223         } else {
224           if (theSubShape->isEqual(*aShapes))
225             return true;
226         }
227       }
228     }
229     return false;
230   }
231   // no-cash method
232   for(int anIndex = size() - 1; anIndex >= 0; anIndex--) {
233     AttributeSelectionPtr anAttr = value(anIndex);
234     if (anAttr.get()) {
235       if (anAttr->context() == theContext) { // contexts are equal, so, check that values are also
236         std::shared_ptr<GeomAPI_Shape> aValue = anAttr->value();
237         if (!aValue.get()) {
238           if (!theSubShape.get()) { // both are null
239             return true;
240           }
241         } else {
242           if (aValue->isEqual(theSubShape)) // shapes are equal
243             return true;
244         }
245       }
246     }
247   }
248   return false;
249 }
250
251 const std::string Model_AttributeSelectionList::selectionType() const
252 {
253   return TCollection_AsciiString(mySelectionType->Get()).ToCString();
254 }
255
256 void Model_AttributeSelectionList::setSelectionType(const std::string& theType)
257 {
258   mySelectionType->Set(theType.c_str());
259 }
260
261 std::shared_ptr<ModelAPI_AttributeSelection> 
262   Model_AttributeSelectionList::value(const int theIndex)
263 {
264   if (myTmpAttr.get() && theIndex == size() - 1) {
265     return myTmpAttr;
266   }
267   TDF_Label aLabel = mySize->Label().FindChild(theIndex + 1);
268   // create a new attribute each time, by demand
269   // supporting of old attributes is too slow (synch each time) and buggy on redo
270   // (if attribute is deleted and created, the abort updates attriute and makes the Attr invalid)
271   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
272     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aLabel));
273   aNewAttr->setID(id());
274   if (owner()) {
275     aNewAttr->setObject(owner());
276   }
277   return aNewAttr;
278 }
279
280 void Model_AttributeSelectionList::clear()
281 {
282   if (mySize->Get() != 0) {
283     mySize->Set(0);
284     myTmpAttr.reset();
285     TDF_ChildIterator aSubIter(mySize->Label());
286     for(; aSubIter.More(); aSubIter.Next()) {
287       TDF_Label aLab = aSubIter.Value();
288       std::shared_ptr<Model_AttributeSelection> aNewAttr = 
289         std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aLab));
290       if (owner()) {
291         aNewAttr->setObject(owner());
292       }
293       REMOVE_BACK_REF(aNewAttr->context());
294
295       aLab.ForgetAllAttributes(Standard_True);
296     }
297     owner()->data()->sendAttributeUpdated(this);
298   }
299 }
300
301 bool Model_AttributeSelectionList::isInitialized()
302 {
303   if (size() == 0) { // empty list is not initialized list: sketch will be not valid after add/undo
304     return false;
305   }
306   return ModelAPI_AttributeSelectionList::isInitialized();
307 }
308
309 Model_AttributeSelectionList::Model_AttributeSelectionList(TDF_Label& theLabel)
310 {
311   myLab = theLabel;
312   reinit();
313 }
314
315 void Model_AttributeSelectionList::reinit()
316 {
317   myIsInitialized = myLab.FindAttribute(TDataStd_Integer::GetID(), mySize) == Standard_True;
318   if (!myIsInitialized) {
319     mySize = TDataStd_Integer::Set(myLab, 0);
320     mySelectionType = TDataStd_Comment::Set(myLab, "");
321   } else { // recollect mySubs
322     myLab.FindAttribute(TDataStd_Comment::GetID(), mySelectionType);
323   }
324   myIsCashed = false;
325 }
326
327
328 void Model_AttributeSelectionList::cashValues(const bool theEnabled)
329 {
330   myIsCashed = theEnabled;
331   myCash.clear(); // empty list as indicator that cash is not used
332   if (theEnabled) {
333     for(int anIndex = size() - 1; anIndex >= 0; anIndex--) {
334       AttributeSelectionPtr anAttr = value(anIndex);
335       if (anAttr.get()) {
336         myCash[anAttr->context()].push_back(anAttr->value());
337       }
338     }
339   }
340 }