Salome HOME
Make features history working. Optimization of features and results management and...
[modules/shaper.git] / src / Model / Model_Session.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_Session.cxx
4 // Created:     20 Mar 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include <Model_Session.h>
8 #include <ModelAPI_Feature.h>
9 #include <ModelAPI_Plugin.h>
10 #include <Model_Data.h>
11 #include <Model_Document.h>
12 #include <Model_Objects.h>
13 #include <Model_Application.h>
14 #include <Model_Events.h>
15 #include <Model_Validator.h>
16 #include <ModelAPI_Events.h>
17 #include <Events_Loop.h>
18 #include <Events_Error.h>
19 #include <Config_FeatureMessage.h>
20 #include <Config_AttributeMessage.h>
21 #include <Config_ValidatorMessage.h>
22 #include <Config_ModuleReader.h>
23 #include <Config_ValidatorReader.h>
24 #include <ModelAPI_ResultPart.h>
25
26 #include <TDF_CopyTool.hxx>
27 #include <TDF_DataSet.hxx>
28 #include <TDF_RelocationTable.hxx>
29 #include <TDF_ClosureTool.hxx>
30
31 using namespace std;
32
33 static Model_Session* myImpl = new Model_Session();
34
35 // t oredirect all calls to the root document
36 #define ROOT_DOC std::dynamic_pointer_cast<Model_Document>(moduleDocument())
37
38 bool Model_Session::load(const char* theFileName)
39 {
40   bool aRes = ROOT_DOC->load(theFileName);
41   return aRes;
42 }
43
44 bool Model_Session::save(const char* theFileName, std::list<std::string>& theResults)
45 {
46   return ROOT_DOC->save(theFileName, theResults);
47 }
48
49 void Model_Session::closeAll()
50 {
51   ROOT_DOC->close(true);
52   Model_Application::getApplication()->deleteAllDocuments();
53 }
54
55 void Model_Session::startOperation(const std::string& theId)
56 {
57   ROOT_DOC->startOperation();
58   ROOT_DOC->operationId(theId);
59   static std::shared_ptr<Events_Message> aStartedMsg
60     (new Events_Message(Events_Loop::eventByName("StartOperation")));
61   Events_Loop::loop()->send(aStartedMsg);
62   // remove all useless documents that has been closed: on start of operation undo/redo is cleared
63   std::list<std::shared_ptr<ModelAPI_Document> > aUsedDocs = allOpenedDocuments();
64   Model_Application::getApplication()->removeUselessDocuments(aUsedDocs);
65 }
66
67 void Model_Session::finishOperation()
68 {
69   setCheckTransactions(false);
70   ROOT_DOC->finishOperation();
71   setCheckTransactions(true);
72 }
73
74 void Model_Session::abortOperation()
75 {
76   setCheckTransactions(false);
77   ROOT_DOC->abortOperation();
78   setCheckTransactions(true);
79   // here the update mechanism may work after abort, so, supress the warnings about
80   // modifications outside of the transactions
81   bool aWasCheck = myCheckTransactions;
82   myCheckTransactions = false;
83   static std::shared_ptr<Events_Message> anAbortMsg
84     (new Events_Message(Events_Loop::eventByName("AbortOperation")));
85   Events_Loop::loop()->send(anAbortMsg);
86   myCheckTransactions = true;
87   myCheckTransactions = aWasCheck;
88 }
89
90 bool Model_Session::isOperation()
91 {
92   return ROOT_DOC->isOperation();
93 }
94
95 bool Model_Session::isModified()
96 {
97   return ROOT_DOC->isModified();
98 }
99
100 bool Model_Session::canUndo()
101 {
102   return ROOT_DOC->canUndo();
103 }
104
105 void Model_Session::undo()
106 {
107   setCheckTransactions(false);
108   ROOT_DOC->undo();
109   setCheckTransactions(true);
110 }
111
112 bool Model_Session::canRedo()
113 {
114   return ROOT_DOC->canRedo();
115 }
116
117 void Model_Session::redo()
118 {
119   setCheckTransactions(false);
120   ROOT_DOC->redo();
121   setCheckTransactions(true);
122 }
123
124 //! Returns stack of performed operations
125 std::list<std::string> Model_Session::undoList()
126 {
127   return ROOT_DOC->undoList();
128 }
129 //! Returns stack of rolled back operations
130 std::list<std::string> Model_Session::redoList()
131 {
132   return ROOT_DOC->redoList();
133 }
134
135 FeaturePtr Model_Session::createFeature(string theFeatureID, Model_Document* theDocOwner)
136 {
137   if (this != myImpl) {
138     return myImpl->createFeature(theFeatureID, theDocOwner);
139   }
140
141   // load all information about plugins, features and attributes
142   LoadPluginsInfo();
143
144   if (myPlugins.find(theFeatureID) != myPlugins.end()) {
145     std::pair<std::string, std::string>& aPlugin = myPlugins[theFeatureID]; // plugin and doc kind
146     if (!aPlugin.second.empty() && aPlugin.second != theDocOwner->kind()) {
147       Events_Error::send(
148           string("Feature '") + theFeatureID + "' can be created only in document '"
149               + aPlugin.second + "' by the XML definition");
150       return FeaturePtr();
151     }
152     myCurrentPluginName = aPlugin.first;
153     if (myPluginObjs.find(myCurrentPluginName) == myPluginObjs.end()) {
154       // load plugin library if not yet done
155       Config_ModuleReader::loadPlugin(myCurrentPluginName);
156     }
157     if (myPluginObjs.find(myCurrentPluginName) != myPluginObjs.end()) {
158       FeaturePtr aCreated = myPluginObjs[myCurrentPluginName]->createFeature(theFeatureID);
159       if (!aCreated) {
160         Events_Error::send(
161             string("Can not initialize feature '") + theFeatureID + "' in plugin '"
162                 + myCurrentPluginName + "'");
163       }
164       return aCreated;
165     } else {
166       Events_Error::send(string("Can not load plugin '") + myCurrentPluginName + "'");
167     }
168   } else {
169     Events_Error::send(string("Feature '") + theFeatureID + "' not found in any plugin");
170   }
171
172   return FeaturePtr();  // return nothing
173 }
174
175 std::shared_ptr<ModelAPI_Document> Model_Session::moduleDocument()
176 {
177   bool aFirstCall = !Model_Application::getApplication()->hasDocument("root");
178   if (aFirstCall) {
179     // creation of the root document is always outside of the transaction, so, avoid checking it
180     setCheckTransactions(false);
181   }
182   std::shared_ptr<ModelAPI_Document> aDoc = std::shared_ptr<ModelAPI_Document>(
183       Model_Application::getApplication()->getDocument("root"));
184   if (aFirstCall) {
185     // creation of the root document is always outside of the transaction, so, avoid checking it
186     setCheckTransactions(true);
187   }
188   return aDoc;
189 }
190
191 std::shared_ptr<ModelAPI_Document> Model_Session::document(std::string theDocID)
192 {
193   return std::shared_ptr<ModelAPI_Document>(
194       Model_Application::getApplication()->getDocument(theDocID));
195 }
196
197 bool Model_Session::hasModuleDocument()
198 {
199   return Model_Application::getApplication()->hasDocument("root");
200 }
201
202 std::shared_ptr<ModelAPI_Document> Model_Session::activeDocument()
203 {
204   if (!myCurrentDoc || !Model_Application::getApplication()->hasDocument(myCurrentDoc->id()))
205     myCurrentDoc = moduleDocument();
206   return myCurrentDoc;
207 }
208
209 void Model_Session::setActiveDocument(
210   std::shared_ptr<ModelAPI_Document> theDoc, bool theSendSignal)
211 {
212   if (myCurrentDoc != theDoc) {
213     myCurrentDoc = theDoc;
214     if (theDoc.get() && theSendSignal) {
215       // syncronize the document: it may be just opened or opened but removed before
216       std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(theDoc);
217       if (aDoc.get()) {
218         bool aWasChecked = myCheckTransactions;
219         setCheckTransactions(false);
220         aDoc->objects()->synchronizeFeatures(false, true, true);
221         if (aWasChecked)
222             setCheckTransactions(true);
223       }
224       static std::shared_ptr<Events_Message> aMsg(
225           new Events_Message(Events_Loop::eventByName(EVENT_DOCUMENT_CHANGED)));
226       Events_Loop::loop()->send(aMsg);
227     }
228   }
229 }
230
231 std::list<std::shared_ptr<ModelAPI_Document> > Model_Session::allOpenedDocuments()
232 {
233   list<std::shared_ptr<ModelAPI_Document> > aResult;
234   aResult.push_back(moduleDocument());
235   // add subs recursively
236   list<std::shared_ptr<ModelAPI_Document> >::iterator aDoc = aResult.begin();
237   for(; aDoc != aResult.end(); aDoc++) {
238     DocumentPtr anAPIDoc = *aDoc;
239     std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(anAPIDoc);
240     if (aDoc) {
241       const std::set<std::string> aSubs = aDoc->subDocuments(true);
242       std::set<std::string>::const_iterator aSubIter = aSubs.cbegin();
243       for(; aSubIter != aSubs.cend(); aSubIter++) {
244         if (!Model_Application::getApplication()->isLoadByDemand(*aSubIter)) {
245           aResult.push_back(Model_Application::getApplication()->getDocument(*aSubIter));
246         }
247       }
248     }
249   }
250   return aResult;
251 }
252
253 std::shared_ptr<ModelAPI_Document> Model_Session::copy(
254     std::shared_ptr<ModelAPI_Document> theSource, std::string theID)
255 {
256   // create a new document
257   std::shared_ptr<Model_Document> aNew = std::dynamic_pointer_cast<Model_Document>(
258       Model_Application::getApplication()->getDocument(theID));
259   // make a copy of all labels
260   TDF_Label aSourceRoot = std::dynamic_pointer_cast<Model_Document>(theSource)->document()->Main()
261       .Father();
262   TDF_Label aTargetRoot = aNew->document()->Main().Father();
263   Handle(TDF_DataSet) aDS = new TDF_DataSet;
264   aDS->AddLabel(aSourceRoot);
265   TDF_ClosureTool::Closure(aDS);
266   Handle(TDF_RelocationTable) aRT = new TDF_RelocationTable;
267   aRT->SetRelocation(aSourceRoot, aTargetRoot);
268   TDF_CopyTool::Copy(aDS, aRT);
269
270   aNew->objects()->synchronizeFeatures(false, true, true);
271   return aNew;
272 }
273
274 Model_Session::Model_Session()
275 {
276   myPluginsInfoLoaded = false;
277   myCheckTransactions = true;
278   ModelAPI_Session::setSession(std::shared_ptr<ModelAPI_Session>(this));
279   // register the configuration reading listener
280   Events_Loop* aLoop = Events_Loop::loop();
281   static const Events_ID kFeatureEvent = 
282     Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT());
283   aLoop->registerListener(this, kFeatureEvent);
284   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED), 0, true);
285   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED), 0, true);
286   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED), 0, true);
287   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_VALIDATOR_LOADED));
288 }
289
290 void Model_Session::processEvent(const std::shared_ptr<Events_Message>& theMessage)
291 {
292   static const Events_ID kFeatureEvent = 
293     Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT());
294   static const Events_ID kValidatorEvent = Events_Loop::eventByName(EVENT_VALIDATOR_LOADED);
295   if (theMessage->eventID() == kFeatureEvent) {
296     const std::shared_ptr<Config_FeatureMessage> aMsg = 
297       std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
298     if (aMsg) {
299       // proccess the plugin info, load plugin
300       if (myPlugins.find(aMsg->id()) == myPlugins.end()) {
301         myPlugins[aMsg->id()] = std::pair<std::string, std::string>(
302           aMsg->pluginLibrary(), aMsg->documentKind());
303       }
304     } else {
305       const std::shared_ptr<Config_AttributeMessage> aMsgAttr = 
306         std::dynamic_pointer_cast<Config_AttributeMessage>(theMessage);
307       if (aMsgAttr) {
308         if (!aMsgAttr->isObligatory()) {
309           validators()->registerNotObligatory(aMsgAttr->featureId(), aMsgAttr->attributeId());
310         }
311         if(aMsgAttr->isConcealment()) {
312           validators()->registerConcealment(aMsgAttr->featureId(), aMsgAttr->attributeId());
313         }
314         if (!aMsgAttr->caseId().empty()) {
315           validators()->registerCase(aMsgAttr->featureId(), aMsgAttr->attributeId(),
316             aMsgAttr->switchId(), aMsgAttr->caseId());
317         }
318       }
319     }
320     // plugins information was started to load, so, it will be loaded
321     myPluginsInfoLoaded = true;
322   } else if (theMessage->eventID() == kValidatorEvent) {
323     std::shared_ptr<Config_ValidatorMessage> aMsg = 
324       std::dynamic_pointer_cast<Config_ValidatorMessage>(theMessage);
325     if (aMsg) {
326       if (aMsg->attributeId().empty()) {  // feature validator
327         validators()->assignValidator(aMsg->validatorId(), aMsg->featureId(), aMsg->parameters());
328       } else {  // attribute validator
329         validators()->assignValidator(aMsg->validatorId(), aMsg->featureId(), aMsg->attributeId(),
330                                       aMsg->parameters());
331       }
332     }
333   } else {  // create/update/delete
334     if (myCheckTransactions && !isOperation())
335       Events_Error::send("Modification of data structure outside of the transaction");
336     // if part is deleted, make the root as the current document (on undo of Parts creations)
337     static const Events_ID kDeletedEvent = Events_Loop::eventByName(EVENT_OBJECT_DELETED);
338     if (theMessage->eventID() == kDeletedEvent) {
339       std::shared_ptr<ModelAPI_ObjectDeletedMessage> aDeleted =
340         std::dynamic_pointer_cast<ModelAPI_ObjectDeletedMessage>(theMessage);
341       if (aDeleted && 
342           aDeleted->groups().find(ModelAPI_ResultPart::group()) != aDeleted->groups().end()) 
343       {
344         setActiveDocument(moduleDocument());
345       }
346     }
347   }
348 }
349
350 void Model_Session::LoadPluginsInfo()
351 {
352   if (myPluginsInfoLoaded)  // nothing to do
353     return;
354
355   // Read plugins information from XML files
356   Config_ModuleReader aModuleReader(Config_FeatureMessage::MODEL_EVENT());
357   aModuleReader.readAll();
358   std::set<std::string> aFiles = aModuleReader.modulePluginFiles();
359   std::set<std::string>::iterator it = aFiles.begin();
360   for ( ; it != aFiles.end(); it++ ) {
361     Config_ValidatorReader aValidatorReader (*it);
362     aValidatorReader.readAll();
363   };
364
365 }
366
367 void Model_Session::registerPlugin(ModelAPI_Plugin* thePlugin)
368 {
369   myPluginObjs[myCurrentPluginName] = thePlugin;
370   static Events_ID EVENT_LOAD = Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED);
371   ModelAPI_EventCreator::get()->sendUpdated(ObjectPtr(), EVENT_LOAD);
372   Events_Loop::loop()->flush(EVENT_LOAD);
373   // If the plugin has an ability to process GUI events, register it
374   Events_Listener* aListener = dynamic_cast<Events_Listener*>(thePlugin);
375   if (aListener) {
376     Events_Loop* aLoop = Events_Loop::loop();
377     static Events_ID aStateRequestEventId =
378         Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST);
379     aLoop->registerListener(aListener, aStateRequestEventId);
380   }
381 }
382
383 ModelAPI_ValidatorsFactory* Model_Session::validators()
384 {
385   static Model_ValidatorsFactory* aFactory = new Model_ValidatorsFactory;
386   return aFactory;
387 }