Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModelAPI / ModelAPI_Session.cpp
1 // File:        ModelAPI_Session.hxx
2 // Created:     20 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #include <ModelAPI_Session.h>
6 // to avoid unresolved ModelAPI_Document()
7 #include <ModelAPI_Document.h>
8 // to avoid unresolved ModelAPI_Feature()
9 #include <ModelAPI_Feature.h>
10 #include <ModelAPI_Object.h>
11 // to avoid unresolved ModelAPI_Data()
12 #include <ModelAPI_Data.h>
13 // to avoid unresolved ModelAPI_Plugin()
14 #include <ModelAPI_Plugin.h>
15 #include <ModelAPI_Attribute.h>
16 #include <ModelAPI_AttributeDocRef.h>
17 #include <ModelAPI_AttributeDouble.h>
18 #include <ModelAPI_AttributeBoolean.h>
19 #include <ModelAPI_AttributeInteger.h>
20 #include <ModelAPI_AttributeString.h>
21 #include <ModelAPI_AttributeReference.h>
22 #include <ModelAPI_AttributeRefAttr.h>
23 #include <ModelAPI_AttributeRefList.h>
24 #include <ModelAPI_Events.h>
25 #include <ModelAPI_Validator.h>
26
27 #include <Config_ModuleReader.h>
28
29 #ifdef WIN32
30 #include <windows.h>
31 #else
32 #include <dlfcn.h>
33 #endif
34
35 using namespace std;
36
37 #ifdef _DEBUG
38 #include <iostream>
39 #endif
40
41 /// Manager that will be initialized from Model package, one per application
42 boost::shared_ptr<ModelAPI_Session> MY_MANAGER;
43
44 ModelAPI_Session::ModelAPI_Session()
45 {
46 }
47
48 void ModelAPI_Session::setSession(boost::shared_ptr<ModelAPI_Session> theManager)
49 {
50   MY_MANAGER = theManager;
51 }
52
53 boost::shared_ptr<ModelAPI_Session> ModelAPI_Session::get()
54 {
55   if (!MY_MANAGER) {  // import Model library that implements this interface of ModelAPI
56     Config_ModuleReader::loadLibrary("Model");
57   }
58   return MY_MANAGER;
59 }
60
61 const ModelAPI_EventCreator* MY_API_CREATOR = 0;  ///< instance of the events creator, one pre application
62
63 const ModelAPI_EventCreator* ModelAPI_EventCreator::get()
64 {
65   if (!MY_API_CREATOR) {  // import Model library that implements this interface of ModelAPI
66     Config_ModuleReader::loadLibrary("Model");
67   }
68   return MY_API_CREATOR;
69 }
70
71 void ModelAPI_EventCreator::set(const ModelAPI_EventCreator* theCreator)
72 {
73   MY_API_CREATOR = theCreator;
74 }