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