Salome HOME
Merge multi-study removal branch
[modules/med.git] / src / MEDCalc / cmp / MED.hxx
1 // Copyright (C) 2015-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _MED_HXX_
21 #define _MED_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(MED_Gen)
25 #include CORBA_SERVER_HEADER(MEDDataManager)
26 #include CORBA_CLIENT_HEADER(SALOMEDS)
27 #include <SALOME_Component_i.hxx>
28
29 #include <map>
30 #include <string>
31
32 #include "MEDCALC.hxx"
33
34 class MEDCALC_EXPORT MED :
35   public POA_MED_ORB::MED_Gen,
36   public Engines_Component_i
37 {
38 public:
39   MED(CORBA::ORB_ptr orb,
40       PortableServer::POA_ptr poa,
41       PortableServer::ObjectId* contId,
42       const char* instanceName,
43       const char* interfaceName);
44   virtual ~MED();
45
46   MED_ORB::status addDatasourceToStudy(const MEDCALC::DatasourceHandler& datasourceHandler);
47
48   MED_ORB::status registerPresentationField(CORBA::Long fieldId,
49                                             const char* name,
50                                             const char* type,
51                                             const char* ico,
52                                             CORBA::Long presentationId);
53
54   MED_ORB::status registerPresentationMesh(CORBA::Long meshId,
55                                            const char* name,
56                                            const char* type,
57                                            const char* ico,
58                                            CORBA::Long presentationId);
59
60   MED_ORB::status unregisterPresentation(CORBA::Long presentationId);
61
62 //  // Caller owns the returned list, and is responsible for the list deletion.
63 //  MED_ORB::PresentationsList* getSiblingPresentations(CORBA::Long presentationId);
64
65   // Get all presentations registered in the study
66   MED_ORB::PresentationsList* getStudyPresentations();
67
68   char* getStudyPresentationEntry(CORBA::Long presentationId);
69
70   void cleanUp();
71
72   /*! Dump the study as a Python file */
73   virtual Engines::TMPFile* DumpPython(CORBA::Boolean isPublished,
74                                        CORBA::Boolean isMultiFile,
75                                        CORBA::Boolean& isValidScript);
76
77   // For tooltips
78   virtual CORBA::Boolean hasObjectInfo();
79   virtual char* getObjectInfo(const char* entry);
80
81  private:
82   std::map<long, std::string> _fieldSeriesEntries;
83   std::map<long, std::string> _meshEntries;
84 };
85
86 extern "C"
87 MEDCALC_EXPORT
88 PortableServer::ObjectId* MEDEngine_factory( CORBA::ORB_ptr orb,
89                                              PortableServer::POA_ptr poa,
90                                              PortableServer::ObjectId* contId,
91                                              const char* instanceName,
92                                              const char* interfaceName );
93
94 #endif