Salome HOME
Fix for crash of undo/redo of part creation
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Part.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSetPlugin_Part.cxx
4 // Created:     27 Mar 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include "PartSetPlugin_Part.h"
8 #include "ModelAPI_Session.h"
9 #include "ModelAPI_Document.h"
10 #include "ModelAPI_Data.h"
11 #include "ModelAPI_AttributeDocRef.h"
12 #include <ModelAPI_ResultPart.h>
13 #include <ModelAPI_Events.h>
14
15 using namespace std;
16
17 PartSetPlugin_Part::PartSetPlugin_Part()
18 {
19 }
20
21 void PartSetPlugin_Part::initAttributes()
22 {  // all is in part result
23 }
24
25 void PartSetPlugin_Part::execute()
26 {
27   ResultPartPtr aResult = std::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
28   if (!aResult) {
29     aResult = document()->createPart(data());
30     setResult(aResult);
31     // do not activate part by simple execution if it is not loaded yet: it must be explicitly
32     // activated for this
33     if (!ModelAPI_Session::get()->isLoadByDemand(aResult->data()->name())) {
34       // On undo/redo creation of the part result the Object Borwser must get creation event
35       // earlier that activation of this part event (otherwise the crash is producted)
36       // So, send a creation event earlier, without any grouping
37       static Events_ID aCreateID = Events_Loop::eventByName(EVENT_OBJECT_CREATED);
38       ModelAPI_EventCreator::get()->sendUpdated(aResult, aCreateID, false);
39
40       aResult->activate();
41     }
42   }
43 }
44
45 const std::string& PartSetPlugin_Part::documentToAdd()
46 {
47   // part must be added only to the module document
48   return ModelAPI_Session::get()->moduleDocument()->kind();
49 }