Salome HOME
Update copyrights
[modules/shaper.git] / src / Model / Model_AttributeRefList.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "Model_AttributeRefList.h"
21 #include "Model_Application.h"
22 #include "Model_Data.h"
23 #include "Model_Objects.h"
24 #include <ModelAPI_Feature.h>
25 #include <TDF_ListIteratorOfLabelList.hxx>
26 #include <TDF_Tool.hxx>
27 #include <TDataStd_ListIteratorOfListOfExtendedString.hxx>
28
29 void Model_AttributeRefList::append(ObjectPtr theObject)
30 {
31   if (owner()->document() == theObject->document()) {
32     std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theObject->data());
33     myRef->Append(aData->label().Father());  // store label of the object
34   } else if (theObject.get() && theObject->data()->isValid()) { // reference to the other document
35     myRef->Append(myRef->Label());
36     // if these attributes exist, the link is external: keep reference to access the label
37     std::ostringstream anIdString; // string with document Id
38     anIdString<<theObject->document()->id();
39     myExtDocRef->Append(anIdString.str().c_str());
40     std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theObject->data());
41     TCollection_AsciiString anEntry;
42     TDF_Tool::Entry(aData->label().Father(), anEntry);
43     myExtDocRef->Append(anEntry);
44   } else return; // something is wrong
45
46   if (myHashUsed) {
47     myHashObjects.insert(theObject);
48     myHashIndex[myRef->Extent() - 1] = theObject;
49     myHashIndexNoEmpty[int(myHashIndexNoEmpty.size())] = theObject;
50   }
51
52   // do it before the transaction finish to make just created/removed objects know dependencies
53   // and reference from composite feature is removed automatically
54   ADD_BACK_REF(theObject);
55   owner()->data()->sendAttributeUpdated(this);
56 }
57
58 void Model_AttributeRefList::remove(ObjectPtr theObject)
59 {
60   eraseHash();
61   if (theObject.get() != NULL) {
62     if (owner()->document() == theObject->document()) {
63       std::shared_ptr<Model_Data> aData;
64       aData = std::dynamic_pointer_cast<Model_Data>(theObject->data());
65       myRef->Remove(aData->label().Father());
66       REMOVE_BACK_REF(theObject);
67       owner()->data()->sendAttributeUpdated(this);
68     } else {
69       // LCOV_EXCL_START
70       // create new lists because for the current moment remove one of the duplicated elements
71       // from the list is buggy
72       TDF_LabelList anOldList = myRef->List();
73       myRef->Clear();
74       TDataStd_ListOfExtendedString anOldExts = myExtDocRef->List();
75       myExtDocRef->Clear();
76
77       std::ostringstream anIdString; // string with document Id
78       anIdString<<theObject->document()->id();
79       std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theObject->data());
80       TCollection_AsciiString anEntry;
81       TDF_Tool::Entry(aData->label().Father(), anEntry);
82       bool aFound = false;
83       TDataStd_ListIteratorOfListOfExtendedString anExtIter(anOldExts);
84       for (TDF_ListIteratorOfLabelList aLIter(anOldList); aLIter.More(); aLIter.Next()) {
85         if (aLIter.Value() == myRef->Label()) {
86           if (anExtIter.Value() == anIdString.str().c_str()) {
87             TDataStd_ListIteratorOfListOfExtendedString anExtIter2 = anExtIter;
88             anExtIter2.Next();
89             if (anExtIter2.Value() == anEntry) { // fully matches, so, remove(don't copy)
90               aFound = true;
91               continue;
92             }
93           }
94           myExtDocRef->Append(anExtIter.Value());
95           anExtIter.Next();
96           myExtDocRef->Append(anExtIter.Value());
97           anExtIter.Next();
98         }
99         myRef->Append(aLIter.Value());
100       }
101       if (aFound) {
102         REMOVE_BACK_REF(theObject);
103         owner()->data()->sendAttributeUpdated(this);
104       }
105       // LCOV_EXCL_STOP
106     }
107   }
108   else { // in case of empty object remove, the first empty object is removed from the list
109     std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
110         owner()->document());
111     if (aDoc) {
112       const TDF_LabelList& aList = myRef->List();
113       for (TDF_ListIteratorOfLabelList aLIter(aList); aLIter.More(); aLIter.Next()) {
114         ObjectPtr anObj = aDoc->objects()->object(aLIter.Value());
115         if (anObj.get() == NULL) {
116           myRef->Remove(aLIter.Value());
117           REMOVE_BACK_REF(theObject);
118           owner()->data()->sendAttributeUpdated(this);
119           break;
120         }
121       }
122     }
123   }
124 }
125
126 void Model_AttributeRefList::clear()
127 {
128   std::list<ObjectPtr> anOldList = list();
129   myRef->Clear();
130   std::list<ObjectPtr>::iterator anOldIter = anOldList.begin();
131   for(; anOldIter != anOldList.end(); anOldIter++) {
132     REMOVE_BACK_REF((*anOldIter));
133   }
134   myExtDocRef->Clear();
135   eraseHash();
136   owner()->data()->sendAttributeUpdated(this);
137 }
138
139 int Model_AttributeRefList::size(const bool theWithEmpty) const
140 {
141   if (theWithEmpty)
142     return myRef->Extent();
143
144   if (myHashUsed)
145     return int(myHashIndexNoEmpty.size());
146
147   int aResult = 0;
148   const TDF_LabelList& aList = myRef->List();
149   for (TDF_ListIteratorOfLabelList aLIter(aList); aLIter.More(); aLIter.Next()) {
150     if (!aLIter.Value().IsNull() && !aLIter.Value().IsRoot()) aResult++;
151   }
152   return aResult;
153 }
154
155 bool Model_AttributeRefList::isInitialized()
156 {
157   if (size(false) == 0) {
158     // empty list is not initialized list: sketch will be not valid after add/undo
159     return false;
160   }
161   return ModelAPI_AttributeRefList::isInitialized();
162 }
163
164 ObjectPtr Model_AttributeRefList::iteratedObject(TDF_ListIteratorOfLabelList& theLIter,
165     TDataStd_ListIteratorOfListOfExtendedString& theExtIter,
166     std::shared_ptr<Model_Document> theDoc) const
167 {
168   ObjectPtr anObj;
169   if (!theLIter.Value().IsNull() && !theLIter.Value().IsRoot()) {
170     if (theLIter.Value() == myRef->Label()) { // external document object
171       int anID = atoi(TCollection_AsciiString(theExtIter.Value()).ToCString());
172       theExtIter.Next();
173       DocumentPtr aRefDoc = Model_Application::getApplication()->document(anID);
174       if (aRefDoc.get()) {
175         std::shared_ptr<Model_Document> aDR = std::dynamic_pointer_cast<Model_Document>(aRefDoc);
176         TDF_Label aRefLab;
177         TDF_Tool::Label(aDR->objects()->featuresLabel().Data(),
178           TCollection_AsciiString(theExtIter.Value()).ToCString(), aRefLab);
179         if (!aRefLab.IsNull()) {
180           anObj = aDR->objects()->object(aRefLab);
181         }
182       }
183       theExtIter.Next();
184     } else { // internal document object
185       anObj = theDoc->objects()->object(theLIter.Value());
186     }
187   }
188   return anObj;
189 }
190
191 std::list<ObjectPtr> Model_AttributeRefList::list()
192 {
193   createHash();
194   std::list<ObjectPtr> aResult;
195   std::map<int, ObjectPtr>::iterator aHashIter = myHashIndex.begin();
196   for(; aHashIter != myHashIndex.end(); aHashIter++) {
197     aResult.push_back(aHashIter->second);
198   }
199   return aResult;
200 }
201
202 bool Model_AttributeRefList::isInList(const ObjectPtr& theObj)
203 {
204   if(!theObj.get()) {
205     return false;
206   }
207   createHash();
208   return myHashObjects.count(theObj) != 0;
209 }
210
211 ObjectPtr Model_AttributeRefList::object(const int theIndex, const bool theWithEmpty)
212 {
213   createHash();
214   std::map<int, ObjectPtr>::iterator aFind;
215   if (theWithEmpty) {
216     aFind = myHashIndex.find(theIndex);
217     if (aFind == myHashIndex.end())
218       return ObjectPtr();
219   } else {
220     aFind = myHashIndexNoEmpty.find(theIndex);
221     if (aFind == myHashIndexNoEmpty.end())
222       return ObjectPtr();
223   }
224   return aFind->second;
225 }
226
227 void Model_AttributeRefList::substitute(const ObjectPtr& theCurrent, const ObjectPtr& theNew)
228 {
229   std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
230       owner()->document());
231   if (aDoc) {
232     std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(theCurrent->data());
233     if (aData.get() && aData->isValid()) {
234       TDF_Label aCurrentLab = aData->label().Father();
235       TDF_Label aNewLab;
236       if (theNew.get() && theNew->data()->isValid()) { // the new may be null
237         std::shared_ptr<Model_Data> aNewData =
238           std::dynamic_pointer_cast<Model_Data>(theNew->data());
239         aNewLab = aNewData->label().Father();
240       } else {
241         aNewLab = aCurrentLab.Root(); // root means null object
242       }
243       // do the substitution
244       eraseHash();
245       ADD_BACK_REF(theNew);
246       if (myRef->InsertAfter(aNewLab, aCurrentLab)) {
247         myRef->Remove(aCurrentLab);
248         REMOVE_BACK_REF(theCurrent);
249       }
250       owner()->data()->sendAttributeUpdated(this);
251     }
252   }
253 }
254
255 void Model_AttributeRefList::removeLast()
256 {
257   std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
258       owner()->document());
259   if (aDoc && !myRef->IsEmpty()) {
260     ObjectPtr anObj = aDoc->objects()->object(myRef->Last());
261     if (anObj.get()) {
262       eraseHash();
263       myRef->Remove(myRef->Last());
264       REMOVE_BACK_REF(anObj);
265       owner()->data()->sendAttributeUpdated(this);
266     }
267   }
268 }
269
270 void Model_AttributeRefList::remove(const std::set<int>& theIndices)
271 {
272   std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
273       owner()->document());
274   if (aDoc && !myRef->IsEmpty()) {
275     // collect labels that will be removed
276     TDF_LabelList aLabelsToRemove;
277     TDF_ListIteratorOfLabelList aLabIter(myRef->List());
278     for(int aCurrent = 0; aLabIter.More(); aLabIter.Next(), aCurrent++) {
279       if (theIndices.find(aCurrent) != theIndices.end())
280         aLabelsToRemove.Append(aLabIter.Value());
281     }
282     // remove labels
283     for(aLabIter.Initialize(aLabelsToRemove); aLabIter.More(); aLabIter.Next()) {
284       ObjectPtr anObj = aDoc->objects()->object(aLabIter.Value());
285       if (anObj.get()) {
286         myRef->Remove(aLabIter.Value());
287         REMOVE_BACK_REF(anObj);
288       }
289     }
290     if (!aLabelsToRemove.IsEmpty()) {
291       eraseHash();
292       owner()->data()->sendAttributeUpdated(this);
293     }
294   }
295 }
296
297 Model_AttributeRefList::Model_AttributeRefList(TDF_Label& theLabel)
298 {
299   myLab = theLabel;
300   reinit();
301 }
302
303 void Model_AttributeRefList::reinit()
304 {
305   myIsInitialized = myLab.FindAttribute(TDataStd_ReferenceList::GetID(), myRef) == Standard_True;
306   if (!myIsInitialized) {
307     myRef = TDataStd_ReferenceList::Set(myLab);
308   }
309   if (!myLab.FindAttribute(TDataStd_ExtStringList::GetID(), myExtDocRef)) {
310     myExtDocRef = TDataStd_ExtStringList::Set(myLab);
311   }
312   eraseHash();
313 }
314
315 void Model_AttributeRefList::createHash()
316 {
317   if (myHashUsed)
318     return;
319   eraseHash();
320   std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(
321     owner()->document());
322   if (aDoc) {
323     const TDF_LabelList& aList = myRef->List();
324     TDataStd_ListIteratorOfListOfExtendedString anExtIter(myExtDocRef->List());
325     for (TDF_ListIteratorOfLabelList aLIter(aList); aLIter.More(); aLIter.Next()) {
326       ObjectPtr anObj = iteratedObject(aLIter, anExtIter, aDoc);
327       myHashIndex[int(myHashIndex.size())] = anObj;
328       if (anObj.get()) {
329         myHashIndexNoEmpty[int(myHashIndexNoEmpty.size())] = anObj;
330         myHashObjects.insert(anObj);
331       }
332     }
333   }
334   if (!myHashObjects.empty()) // on open document with multi-rotation referenced have no results
335     myHashUsed = true;
336 }
337
338 void Model_AttributeRefList::eraseHash()
339 {
340   myHashObjects.clear();
341   myHashIndex.clear();
342   myHashIndexNoEmpty.clear();
343   myHashUsed = false;
344 }