Salome HOME
Update constraint Mirror.
[modules/shaper.git] / src / Model / Model_AttributeSelectionList.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_AttributeSelectionList.h
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_ChildIterator.hxx>
14 #include <TopAbs_ShapeEnum.hxx>
15
16 #include <TopoDS.hxx>
17 #include <TopoDS_Shape.hxx>
18 #include <TopoDS_Edge.hxx>
19 #include <BRep_Tool.hxx>
20
21 using namespace std;
22
23 void Model_AttributeSelectionList::append(
24     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape)
25 {
26   // do not use the degenerated edge as a shape, a list is not incremented in this case
27   if (theSubShape.get() && !theSubShape->isNull() && theSubShape->isEdge()) {
28     const TopoDS_Shape& aSubShape = theSubShape->impl<TopoDS_Shape>();
29     if (aSubShape.ShapeType() == TopAbs_EDGE && BRep_Tool::Degenerated(TopoDS::Edge(aSubShape))) {
30       return;
31     }
32   }
33
34   int aNewTag = mySize->Get() + 1;
35   TDF_Label aNewLab = mySize->Label().FindChild(aNewTag);
36
37   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
38     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aNewLab));
39   if (owner()) {
40     aNewAttr->setObject(owner());
41   }
42   aNewAttr->setID(id());
43   mySize->Set(aNewTag);
44   aNewAttr->setValue(theContext, theSubShape);
45   owner()->data()->sendAttributeUpdated(this);
46 }
47
48 void Model_AttributeSelectionList::append(std::string theNamingName)
49 {
50   int aNewTag = mySize->Get() + 1;
51   TDF_Label aNewLab = mySize->Label().FindChild(aNewTag);
52
53   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
54     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aNewLab));
55   if (owner()) {
56     aNewAttr->setObject(owner());
57   }
58   mySize->Set(aNewTag);
59   aNewAttr->selectSubShape(selectionType(), theNamingName);
60   owner()->data()->sendAttributeUpdated(this);
61 }
62
63 int Model_AttributeSelectionList::size()
64 {
65   return mySize->Get();
66 }
67
68 const std::string Model_AttributeSelectionList::selectionType() const
69 {
70   return TCollection_AsciiString(mySelectionType->Get()).ToCString();
71 }
72
73 void Model_AttributeSelectionList::setSelectionType(const std::string& theType)
74 {
75   mySelectionType->Set(theType.c_str());
76 }
77
78 std::shared_ptr<ModelAPI_AttributeSelection> 
79   Model_AttributeSelectionList::value(const int theIndex)
80 {
81   TDF_Label aLabel = mySize->Label().FindChild(theIndex + 1);
82   // create a new attribute each time, by demand
83   // supporting of old attributes is too slow (synch each time) and buggy on redo
84   // (if attribute is deleted and created, the abort updates attriute and makes the Attr invalid)
85   std::shared_ptr<Model_AttributeSelection> aNewAttr = 
86     std::shared_ptr<Model_AttributeSelection>(new Model_AttributeSelection(aLabel));
87   if (owner()) {
88     aNewAttr->setObject(owner());
89   }
90   return aNewAttr;
91 }
92
93 void Model_AttributeSelectionList::clear()
94 {
95   if (mySize->Get() != 0) {
96     mySize->Set(0);
97     TDF_ChildIterator aSubIter(mySize->Label());
98     for(; aSubIter.More(); aSubIter.Next()) {
99       aSubIter.Value().ForgetAllAttributes(Standard_True);
100     }
101     owner()->data()->sendAttributeUpdated(this);
102   }
103 }
104
105 Model_AttributeSelectionList::Model_AttributeSelectionList(TDF_Label& theLabel)
106 {
107   myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), mySize) == Standard_True;
108   if (!myIsInitialized) {
109     mySize = TDataStd_Integer::Set(theLabel, 0);
110     mySelectionType = TDataStd_Comment::Set(theLabel, "");
111   } else { // recollect mySubs
112     theLabel.FindAttribute(TDataStd_Comment::GetID(), mySelectionType);
113   }
114 }