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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "PartSetPlugin_Part.h"
22 #include "ModelAPI_Session.h"
23 #include "ModelAPI_Document.h"
24 #include "ModelAPI_Data.h"
25 #include "ModelAPI_AttributeDocRef.h"
26 #include <ModelAPI_ResultPart.h>
27 #include <ModelAPI_Events.h>
28
29 PartSetPlugin_Part::PartSetPlugin_Part()
30 {
31 }
32
33 void PartSetPlugin_Part::initAttributes()
34 {  // all is in part result
35 }
36
37 void PartSetPlugin_Part::execute()
38 {
39   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
40   if (!aResult) {
41     aResult = document()->createPart(data());
42     setResult(aResult);
43     // do not activate part by simple execution if it is not loaded yet: it must be explicitly
44     // activated for this
45     if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name())) {
46       // On undo/redo creation of the part result the Object Browser must get creation event
47       // earlier that activation of this part event (otherwise the crash is produced)
48       // So, send a creation event earlier, without any grouping
49       static Events_ID aCreateID = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
50       ModelAPI_EventCreator::get()->sendUpdated(aResult, aCreateID, false);
51
52       aResult->activate();
53     }
54   } else { // execute is called for result update anyway
55     aResult->updateShape();
56   }
57 }
58
59 const std::string& PartSetPlugin_Part::documentToAdd()
60 {
61   // part must be added only to the module document
62   return ModelAPI_Session::get()->moduleDocument()->kind();
63 }
64
65 std::shared_ptr<ModelAPI_Feature> PartSetPlugin_Part::addFeature(std::string theID)
66 {
67   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
68   if (aResult.get()) {
69     DocumentPtr aDoc = aResult->partDoc();
70     if (aDoc.get() && aDoc->isOpened())
71       return aDoc->addFeature(theID);
72   }
73   return FeaturePtr();
74 }
75
76 int PartSetPlugin_Part::numberOfSubs(bool forTree) const
77 {
78   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
79   if (aResult.get()) {
80     DocumentPtr aDoc = aResult->partDoc();
81     if (aDoc.get() && aDoc->isOpened())
82       return aDoc->numInternalFeatures();
83   }
84   return 0;
85 }
86
87 std::shared_ptr<ModelAPI_Feature> PartSetPlugin_Part::subFeature(const int theIndex, bool forTree)
88 {
89   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
90   if (aResult.get()) {
91     DocumentPtr aDoc = aResult->partDoc();
92     if (aDoc.get() && aDoc->isOpened()) {
93       return aDoc->internalFeature(theIndex);
94     }
95   }
96   return FeaturePtr();
97 }
98
99 int PartSetPlugin_Part::subFeatureId(const int theIndex) const
100 {
101   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
102   if (aResult.get()) {
103     DocumentPtr aDoc = aResult->partDoc();
104     if (aDoc.get() && aDoc->isOpened()) {
105       return aDoc->object(ModelAPI_Feature::group(), theIndex)->data()->featureId();
106     }
107   }
108   return 0; // none
109 }
110
111 bool PartSetPlugin_Part::isSub(ObjectPtr theObject) const
112 {
113   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
114   if (aResult.get()) {
115     DocumentPtr aDoc = aResult->partDoc();
116     return theObject->document() == aDoc;
117   }
118   return false;
119 }
120
121 void PartSetPlugin_Part::removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature)
122 {
123 }
124
125 void PartSetPlugin_Part::erase() {
126   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
127   if (aResult.get()) {
128     DocumentPtr aDoc = aResult->partDoc();
129     if (aDoc.get())
130       aDoc->eraseAllFeatures();
131   }
132   ModelAPI_Feature::erase();
133 }