Salome HOME
Merge branch 'BR_PYTHON_PLUGIN' of newgeom:newgeom.git into Dev_0.6.1
[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_Application.h>
13 #include <Model_Events.h>
14 #include <Model_Validator.h>
15 #include <Events_Loop.h>
16 #include <Events_Error.h>
17 #include <Config_FeatureMessage.h>
18 #include <Config_AttributeMessage.h>
19 #include <Config_ValidatorMessage.h>
20 #include <Config_ModuleReader.h>
21
22 #include <TDF_CopyTool.hxx>
23 #include <TDF_DataSet.hxx>
24 #include <TDF_RelocationTable.hxx>
25 #include <TDF_ClosureTool.hxx>
26
27 using namespace std;
28
29 static Model_Session* myImpl = new Model_Session();
30
31 // t oredirect all calls to the root document
32 #define ROOT_DOC std::dynamic_pointer_cast<Model_Document>(moduleDocument())
33
34 bool Model_Session::load(const char* theFileName)
35 {
36   return ROOT_DOC->load(theFileName);
37 }
38
39 bool Model_Session::save(const char* theFileName, std::list<std::string>& theResults)
40 {
41   return ROOT_DOC->save(theFileName, theResults);
42 }
43
44 void Model_Session::closeAll()
45 {
46   ROOT_DOC->close(true);
47   Model_Application::getApplication()->deleteAllDocuments();
48 }
49
50 void Model_Session::startOperation()
51 {
52   ROOT_DOC->startOperation();
53   static std::shared_ptr<Events_Message> aStartedMsg
54     (new Events_Message(Events_Loop::eventByName("StartOperation")));
55   Events_Loop::loop()->send(aStartedMsg);
56 }
57
58 void Model_Session::finishOperation()
59 {
60   ROOT_DOC->finishOperation();
61 }
62
63 void Model_Session::abortOperation()
64 {
65   ROOT_DOC->abortOperation();
66   // here the update mechanism may work after abort, so, supress the warnings about
67   // modifications outside of the transactions
68   bool aWasCheck = myCheckTransactions;
69   myCheckTransactions = false;
70   static std::shared_ptr<Events_Message> anAbortMsg
71     (new Events_Message(Events_Loop::eventByName("AbortOperation")));
72   Events_Loop::loop()->send(anAbortMsg);
73   myCheckTransactions = true;
74   myCheckTransactions = aWasCheck;
75 }
76
77 bool Model_Session::isOperation()
78 {
79   return ROOT_DOC->isOperation();
80 }
81
82 bool Model_Session::isModified()
83 {
84   return ROOT_DOC->isModified();
85 }
86
87 bool Model_Session::canUndo()
88 {
89   return ROOT_DOC->canUndo();
90 }
91
92 void Model_Session::undo()
93 {
94   ROOT_DOC->undo();
95 }
96
97 bool Model_Session::canRedo()
98 {
99   return ROOT_DOC->canRedo();
100 }
101
102 void Model_Session::redo()
103 {
104   ROOT_DOC->redo();
105 }
106
107 FeaturePtr Model_Session::createFeature(string theFeatureID)
108 {
109   if (this != myImpl) {
110     return myImpl->createFeature(theFeatureID);
111   }
112
113   // load all information about plugins, features and attributes
114   LoadPluginsInfo();
115
116   if (myPlugins.find(theFeatureID) != myPlugins.end()) {
117     std::pair<std::string, std::string>& aPlugin = myPlugins[theFeatureID]; // plugin and doc kind
118     if (!aPlugin.second.empty() && aPlugin.second != activeDocument()->kind()) {
119       Events_Error::send(
120           string("Feature '") + theFeatureID + "' can be created only in document '"
121               + aPlugin.second + "' by the XML definition");
122       return FeaturePtr();
123     }
124     myCurrentPluginName = aPlugin.first;
125     if (myPluginObjs.find(myCurrentPluginName) == myPluginObjs.end()) {
126       // load plugin library if not yet done
127       Config_ModuleReader::loadPlugin(myCurrentPluginName);
128     }
129     if (myPluginObjs.find(myCurrentPluginName) != myPluginObjs.end()) {
130       FeaturePtr aCreated = myPluginObjs[myCurrentPluginName]->createFeature(theFeatureID);
131       if (!aCreated) {
132         Events_Error::send(
133             string("Can not initialize feature '") + theFeatureID + "' in plugin '"
134                 + myCurrentPluginName + "'");
135       }
136       return aCreated;
137     } else {
138       Events_Error::send(string("Can not load plugin '") + myCurrentPluginName + "'");
139     }
140   } else {
141     Events_Error::send(string("Feature '") + theFeatureID + "' not found in any plugin");
142   }
143
144   return FeaturePtr();  // return nothing
145 }
146
147 std::shared_ptr<ModelAPI_Document> Model_Session::moduleDocument()
148 {
149   return std::shared_ptr<ModelAPI_Document>(
150       Model_Application::getApplication()->getDocument("root"));
151 }
152
153 std::shared_ptr<ModelAPI_Document> Model_Session::document(std::string theDocID)
154 {
155   return std::shared_ptr<ModelAPI_Document>(
156       Model_Application::getApplication()->getDocument(theDocID));
157 }
158
159 bool Model_Session::hasModuleDocument()
160 {
161   return Model_Application::getApplication()->hasDocument("root");
162 }
163
164 std::shared_ptr<ModelAPI_Document> Model_Session::activeDocument()
165 {
166   if (!myCurrentDoc || !Model_Application::getApplication()->hasDocument(myCurrentDoc->id()))
167     myCurrentDoc = moduleDocument();
168   return myCurrentDoc;
169 }
170
171 void Model_Session::setActiveDocument(
172   std::shared_ptr<ModelAPI_Document> theDoc, bool theSendSignal)
173 {
174   if (myCurrentDoc != theDoc) {
175     myCurrentDoc = theDoc;
176     if (theSendSignal) {
177       static std::shared_ptr<Events_Message> aMsg(new Events_Message(Events_Loop::eventByName("CurrentDocumentChanged")));
178       Events_Loop::loop()->send(aMsg);
179     }
180   }
181 }
182
183 std::list<std::shared_ptr<ModelAPI_Document> > Model_Session::allOpenedDocuments()
184 {
185   list<std::shared_ptr<ModelAPI_Document> > aResult;
186   aResult.push_back(moduleDocument());
187   // add subs recursively
188   list<std::shared_ptr<ModelAPI_Document> >::iterator aDoc = aResult.begin();
189   for(; aDoc != aResult.end(); aDoc++) {
190     DocumentPtr anAPIDoc = *aDoc;
191     std::shared_ptr<Model_Document> aDoc = std::dynamic_pointer_cast<Model_Document>(anAPIDoc);
192     if (aDoc) {
193       std::set<std::string>::const_iterator aSubIter = aDoc->subDocuments().cbegin();
194       for(; aSubIter != aDoc->subDocuments().cend(); aSubIter++) {
195         if (!Model_Application::getApplication()->isLoadByDemand(*aSubIter)) {
196           aResult.push_back(Model_Application::getApplication()->getDocument(*aSubIter));
197         }
198       }
199     }
200   }
201   return aResult;
202 }
203
204 std::shared_ptr<ModelAPI_Document> Model_Session::copy(
205     std::shared_ptr<ModelAPI_Document> theSource, std::string theID)
206 {
207   // create a new document
208   std::shared_ptr<Model_Document> aNew = std::dynamic_pointer_cast<Model_Document>(
209       Model_Application::getApplication()->getDocument(theID));
210   // make a copy of all labels
211   TDF_Label aSourceRoot = std::dynamic_pointer_cast<Model_Document>(theSource)->document()->Main()
212       .Father();
213   TDF_Label aTargetRoot = aNew->document()->Main().Father();
214   Handle(TDF_DataSet) aDS = new TDF_DataSet;
215   aDS->AddLabel(aSourceRoot);
216   TDF_ClosureTool::Closure(aDS);
217   Handle(TDF_RelocationTable) aRT = new TDF_RelocationTable;
218   aRT->SetRelocation(aSourceRoot, aTargetRoot);
219   TDF_CopyTool::Copy(aDS, aRT);
220
221   aNew->synchronizeFeatures(false, true);
222   return aNew;
223 }
224
225 Model_Session::Model_Session()
226 {
227   myPluginsInfoLoaded = false;
228   myCheckTransactions = true;
229   ModelAPI_Session::setSession(std::shared_ptr<ModelAPI_Session>(this));
230   // register the configuration reading listener
231   Events_Loop* aLoop = Events_Loop::loop();
232   static const Events_ID kFeatureEvent = Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT());
233   aLoop->registerListener(this, kFeatureEvent);
234   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED), 0, true);
235   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED), 0, true);
236   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED), 0, true);
237   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_VALIDATOR_LOADED));
238 }
239
240 void Model_Session::processEvent(const std::shared_ptr<Events_Message>& theMessage)
241 {
242   static const Events_ID kFeatureEvent = Events_Loop::eventByName(Config_FeatureMessage::MODEL_EVENT());
243   static const Events_ID kValidatorEvent = Events_Loop::eventByName(EVENT_VALIDATOR_LOADED);
244   if (theMessage->eventID() == kFeatureEvent) {
245     const std::shared_ptr<Config_FeatureMessage> aMsg = 
246       std::dynamic_pointer_cast<Config_FeatureMessage>(theMessage);
247     if (aMsg) {
248       // proccess the plugin info, load plugin
249       if (myPlugins.find(aMsg->id()) == myPlugins.end()) {
250         myPlugins[aMsg->id()] = std::pair<std::string, std::string>(
251           aMsg->pluginLibrary(), aMsg->documentKind());
252       }
253     } else {
254       const std::shared_ptr<Config_AttributeMessage> aMsgAttr = 
255         std::dynamic_pointer_cast<Config_AttributeMessage>(theMessage);
256       if (aMsgAttr) {
257         if (!aMsgAttr->isObligatory()) {
258           validators()->registerNotObligatory(aMsgAttr->featureId(), aMsgAttr->attributeId());
259         }
260         if(aMsgAttr->isConcealment()) {
261           validators()->registerConcealment(aMsgAttr->featureId(), aMsgAttr->attributeId());
262         }
263         
264       }
265     }
266     // plugins information was started to load, so, it will be loaded
267     myPluginsInfoLoaded = true;
268   } else if (theMessage->eventID() == kValidatorEvent) {
269     std::shared_ptr<Config_ValidatorMessage> aMsg = 
270       std::dynamic_pointer_cast<Config_ValidatorMessage>(theMessage);
271     if (aMsg) {
272       if (aMsg->attributeId().empty()) {  // feature validator
273         validators()->assignValidator(aMsg->validatorId(), aMsg->featureId(), aMsg->parameters());
274       } else {  // attribute validator
275         validators()->assignValidator(aMsg->validatorId(), aMsg->featureId(), aMsg->attributeId(),
276                                       aMsg->parameters());
277       }
278     }
279   } else {  // create/update/delete
280     if (myCheckTransactions && !isOperation())
281       Events_Error::send("Modification of data structure outside of the transaction");
282   }
283 }
284
285 void Model_Session::LoadPluginsInfo()
286 {
287   if (myPluginsInfoLoaded)  // nothing to do
288     return;
289
290   // Read plugins information from XML files
291   Config_ModuleReader aXMLReader(Config_FeatureMessage::MODEL_EVENT());
292   aXMLReader.readAll();
293 }
294
295 void Model_Session::registerPlugin(ModelAPI_Plugin* thePlugin)
296 {
297   myPluginObjs[myCurrentPluginName] = thePlugin;
298   static Events_ID EVENT_LOAD = Events_Loop::loop()->eventByName(EVENT_PLUGIN_LOADED);
299   ModelAPI_EventCreator::get()->sendUpdated(ObjectPtr(), EVENT_LOAD);
300   Events_Loop::loop()->flush(EVENT_LOAD);
301   // If the plugin has an ability to process GUI events, register it
302   Events_Listener* aListener = dynamic_cast<Events_Listener*>(thePlugin);
303   if (aListener) {
304     Events_Loop* aLoop = Events_Loop::loop();
305     static Events_ID aStateRequestEventId =
306         Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST);
307     aLoop->registerListener(aListener, aStateRequestEventId);
308   }
309 }
310
311 ModelAPI_ValidatorsFactory* Model_Session::validators()
312 {
313   static Model_ValidatorsFactory* aFactory = new Model_ValidatorsFactory;
314   return aFactory;
315 }