Salome HOME
Merge branch 'master' of newgeom:newgeom
[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_AttributeBoolean.h>
25 #include <ModelAPI_AttributeSelection.h>
26 #include <ModelAPI_Events.h>
27 #include <ModelAPI_Validator.h>
28
29 #include <Config_ModuleReader.h>
30
31 #ifdef WIN32
32 #include <windows.h>
33 #else
34 #include <dlfcn.h>
35 #endif
36
37 using namespace std;
38
39 #ifdef _DEBUG
40 #include <iostream>
41 #endif
42
43 /// Manager that will be initialized from Model package, one per application
44 boost::shared_ptr<ModelAPI_Session> MY_MANAGER;
45
46 ModelAPI_Session::ModelAPI_Session()
47 {
48 }
49
50 void ModelAPI_Session::setSession(boost::shared_ptr<ModelAPI_Session> theManager)
51 {
52   MY_MANAGER = theManager;
53 }
54
55 boost::shared_ptr<ModelAPI_Session> ModelAPI_Session::get()
56 {
57   if (!MY_MANAGER) {  // import Model library that implements this interface of ModelAPI
58     Config_ModuleReader::loadLibrary("Model");
59   }
60   return MY_MANAGER;
61 }
62
63 const ModelAPI_EventCreator* MY_API_CREATOR = 0;  ///< instance of the events creator, one pre application
64
65 const ModelAPI_EventCreator* ModelAPI_EventCreator::get()
66 {
67   if (!MY_API_CREATOR) {  // import Model library that implements this interface of ModelAPI
68     Config_ModuleReader::loadLibrary("Model");
69   }
70   return MY_API_CREATOR;
71 }
72
73 void ModelAPI_EventCreator::set(const ModelAPI_EventCreator* theCreator)
74 {
75   MY_API_CREATOR = theCreator;
76 }