Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / Session / SalomeApp_Engine_i.hxx
1 //  SalomeApp_Engine_i : implementation of SalomeApp_Engine.idl
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SalomeApp_Engine_i.hxx
25 //  Author : Alexander SLADKOV
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef _SALOMEAPP_ENGINE_I_HXX_
30 #define _SALOMEAPP_ENGINE_I_HXX_
31
32 #include "SALOME_Component_i.hxx"
33
34 #include <vector> 
35 #include <map> 
36
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SalomeApp_Engine)
39
40 #ifdef WNT
41 #include <SALOME_WNT.hxx>
42 #else
43 #define SALOME_WNT_EXPORT
44 #endif
45
46 class SALOME_WNT_EXPORT SalomeApp_Engine_i: public POA_SalomeApp::Engine,
47                           public Engines_Component_i
48 {
49 public:
50   SalomeApp_Engine_i();
51   ~SalomeApp_Engine_i();
52
53   SALOMEDS::TMPFile*      Save( SALOMEDS::SComponent_ptr theComponent, 
54                                const char* theURL, 
55                                bool isMultiFile );
56
57   CORBA::Boolean          Load( SALOMEDS::SComponent_ptr theComponent, 
58                                const SALOMEDS::TMPFile& theFile, 
59                                const char* theURL, 
60                                bool isMultiFile );
61
62 public:
63   typedef std::vector<std::string> ListOfFiles;
64
65   ListOfFiles             GetListOfFiles (const int         theStudyId, 
66                                           const char*       theComponentName);
67
68   void                    SetListOfFiles (const ListOfFiles theListOfFiles,
69                                           const int         theStudyId, 
70                                           const char*       theComponentName);
71
72   static SalomeApp_Engine_i* GetInstance();
73
74 public:
75   // methods from SALOMEDS::Driver without implementation.  Must be redefined because 
76   // there is no default implementation of SALOMEDS::Driver interface
77   SALOMEDS::TMPFile* SaveASCII( SALOMEDS::SComponent_ptr, const char*, bool )                                                                        {return 0;}
78   CORBA::Boolean LoadASCII( SALOMEDS::SComponent_ptr, const SALOMEDS::TMPFile&, const char*, bool )                                                  {return 0;}
79   void Close( SALOMEDS::SComponent_ptr )                                                                                                             {}
80   char* ComponentDataType()                                                                                                                          {return 0;}
81   char* IORToLocalPersistentID( SALOMEDS::SObject_ptr, const char*, CORBA::Boolean,  CORBA::Boolean )                                                {return 0;}
82   char* LocalPersistentIDToIOR( SALOMEDS::SObject_ptr, const char*, CORBA::Boolean,  CORBA::Boolean )                                                {return 0;}
83   bool CanPublishInStudy( CORBA::Object_ptr )                                                                                                        {return 0;}
84   SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr, SALOMEDS::SObject_ptr, CORBA::Object_ptr, const char* ) throw (SALOME::SALOME_Exception) {return 0;}
85   CORBA::Boolean CanCopy( SALOMEDS::SObject_ptr )                                                                                                    {return 0;}
86   SALOMEDS::TMPFile* CopyFrom( SALOMEDS::SObject_ptr, CORBA::Long& )                                                                                 {return 0;}
87   CORBA::Boolean CanPaste( const char*, CORBA::Long )                                                                                                {return 0;}
88   SALOMEDS::SObject_ptr PasteInto( const SALOMEDS::TMPFile&, CORBA::Long, SALOMEDS::SObject_ptr )                                                    {return 0;}
89
90 private:
91   typedef std::map<std::string, ListOfFiles> MapOfListOfFiles;
92   typedef std::map<int, MapOfListOfFiles>    MapOfMapOfListOfFiles;
93   MapOfMapOfListOfFiles                      myMap;
94
95   static SalomeApp_Engine_i* myInstance;
96 };
97
98 #endif
99