Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Part.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
18 //
19
20 #include "PartSetPlugin_Part.h"
21 #include "ModelAPI_Session.h"
22 #include "ModelAPI_Document.h"
23 #include "ModelAPI_Data.h"
24 #include "ModelAPI_AttributeDocRef.h"
25 #include <ModelAPI_ResultPart.h>
26 #include <ModelAPI_Events.h>
27
28 PartSetPlugin_Part::PartSetPlugin_Part()
29 {
30 }
31
32 void PartSetPlugin_Part::initAttributes()
33 {  // all is in part result
34 }
35
36 void PartSetPlugin_Part::execute()
37 {
38   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
39   if (!aResult) {
40     aResult = document()->createPart(data());
41     setResult(aResult);
42     // do not activate part by simple execution if it is not loaded yet: it must be explicitly
43     // activated for this
44     if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name())) {
45       // On undo/redo creation of the part result the Object Browser must get creation event
46       // earlier that activation of this part event (otherwise the crash is produced)
47       // So, send a creation event earlier, without any grouping
48       static Events_ID aCreateID = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
49       ModelAPI_EventCreator::get()->sendUpdated(aResult, aCreateID, false);
50
51       aResult->activate();
52     }
53   } else { // execute is called for result update anyway
54     aResult->updateShape();
55   }
56 }
57
58 const std::string& PartSetPlugin_Part::documentToAdd()
59 {
60   // part must be added only to the module document
61   return ModelAPI_Session::get()->moduleDocument()->kind();
62 }
63
64 std::shared_ptr<ModelAPI_Feature> PartSetPlugin_Part::addFeature(std::string theID)
65 {
66   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
67   if (aResult.get()) {
68     DocumentPtr aDoc = aResult->partDoc();
69     if (aDoc.get() && aDoc->isOpened())
70       return aDoc->addFeature(theID);
71   }
72   return FeaturePtr();
73 }
74
75 int PartSetPlugin_Part::numberOfSubs(bool forTree) const
76 {
77   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
78   if (aResult.get()) {
79     DocumentPtr aDoc = aResult->partDoc();
80     if (aDoc.get() && aDoc->isOpened())
81       return aDoc->numInternalFeatures();
82   }
83   return 0;
84 }
85
86 std::shared_ptr<ModelAPI_Feature> PartSetPlugin_Part::subFeature(const int theIndex, bool forTree)
87 {
88   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
89   if (aResult.get()) {
90     DocumentPtr aDoc = aResult->partDoc();
91     if (aDoc.get() && aDoc->isOpened()) {
92       return aDoc->internalFeature(theIndex);
93     }
94   }
95   return FeaturePtr();
96 }
97
98 int PartSetPlugin_Part::subFeatureId(const int theIndex) const
99 {
100   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
101   if (aResult.get()) {
102     DocumentPtr aDoc = aResult->partDoc();
103     if (aDoc.get() && aDoc->isOpened()) {
104       return aDoc->object(ModelAPI_Feature::group(), theIndex)->data()->featureId();
105     }
106   }
107   return 0; // none
108 }
109
110 bool PartSetPlugin_Part::isSub(ObjectPtr theObject) const
111 {
112   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
113   if (aResult.get()) {
114     DocumentPtr aDoc = aResult->partDoc();
115     return theObject->document() == aDoc;
116   }
117   return false;
118 }
119
120 void PartSetPlugin_Part::removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature)
121 {
122 }
123
124 void PartSetPlugin_Part::erase() {
125   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
126   if (aResult.get()) {
127     DocumentPtr aDoc = aResult->partDoc();
128     if (aDoc.get())
129       aDoc->eraseAllFeatures();
130   }
131   ModelAPI_Feature::erase();
132 }