1 // Copyright (C) 2015-2016 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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>
32 #include "MEDCALC.hxx"
34 class MEDCALC_EXPORT MED :
35 public POA_MED_ORB::MED_Gen,
36 public Engines_Component_i
39 MED(CORBA::ORB_ptr orb,
40 PortableServer::POA_ptr poa,
41 PortableServer::ObjectId* contId,
42 const char* instanceName,
43 const char* interfaceName);
46 MED_ORB::status addDatasourceToStudy(const MEDCALC::DatasourceHandler& datasourceHandler);
48 MED_ORB::status registerPresentationField(CORBA::Long fieldId,
52 CORBA::Long presentationId);
54 MED_ORB::status registerPresentationMesh(CORBA::Long meshId,
58 CORBA::Long presentationId);
60 MED_ORB::status unregisterPresentation(CORBA::Long presentationId);
62 // // Caller owns the returned list, and is responsible for the list deletion.
63 // MED_ORB::PresentationsList* getSiblingPresentations(CORBA::Long presentationId);
65 // Get all presentations registered in the study
66 MED_ORB::PresentationsList* getStudyPresentations();
68 char* getStudyPresentationEntry(CORBA::Long presentationId);
72 /*! Dump the study as a Python file */
73 virtual Engines::TMPFile* DumpPython(CORBA::Boolean isPublished,
74 CORBA::Boolean isMultiFile,
75 CORBA::Boolean& isValidScript);
78 virtual CORBA::Boolean hasObjectInfo();
79 virtual char* getObjectInfo(const char* entry);
82 std::map<long, std::string> _fieldSeriesEntries;
83 std::map<long, std::string> _meshEntries;
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 );