Salome HOME
5ac57f85b00796c4211e139d1370e128906074ce
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_Driver_i.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 #ifndef __SALOMEDS_DRIVER_I_H__
24 #define __SALOMEDS_DRIVER_I_H__
25
26 #include <SALOMEconfig.h>
27
28 #include <omniORB4/CORBA.h>
29 #include "SALOMEDSImpl_Driver.hxx"
30 #include "SALOMEDSImpl_SComponent.hxx"
31 #include "SALOMEDSImpl_SObject.hxx"
32
33 #include CORBA_SERVER_HEADER(SALOMEDS) 
34 #include CORBA_SERVER_HEADER(SALOME_Component)
35
36 class Standard_EXPORT SALOMEDS_Driver_i :  public virtual SALOMEDSImpl_Driver 
37 {
38 protected:
39   SALOMEDS::Driver_var _driver;
40   Engines::EngineComponent_var _engine;
41   CORBA::ORB_var _orb;
42
43 public:
44   SALOMEDS_Driver_i(Engines::EngineComponent_ptr theEngine, CORBA::ORB_ptr theORB);
45   SALOMEDS_Driver_i(SALOMEDS::Driver_ptr theDriver, CORBA::ORB_ptr theORB);
46   ~SALOMEDS_Driver_i();
47
48   virtual std::string GetIOR();
49
50   virtual SALOMEDSImpl_TMPFile* Save(const SALOMEDSImpl_SComponent& theComponent,
51                                      const std::string& theURL,
52                                      long& theStreamLength,
53                                      bool isMultiFile);
54
55   virtual SALOMEDSImpl_TMPFile* SaveASCII(const SALOMEDSImpl_SComponent& theComponent,
56                                           const std::string& theURL,
57                                           long& theStreamLength,
58                                           bool isMultiFile);
59   
60   virtual bool Load(const SALOMEDSImpl_SComponent& theComponent,
61                     const unsigned char* theStream,
62                     const long theStreamLength,
63                     const std::string& theURL,
64                     bool isMultiFile);
65
66   virtual bool LoadASCII(const SALOMEDSImpl_SComponent& theComponent,
67                          const unsigned char* theStream,
68                          const long theStreamLength,
69                          const std::string& theURL,
70                          bool isMultiFile);
71
72   virtual void Close(const SALOMEDSImpl_SComponent& theComponent);
73  
74   virtual std::string ComponentDataType();
75
76   virtual std::string Version();
77
78   virtual std::string IORToLocalPersistentID(const SALOMEDSImpl_SObject& theSObject,
79                                              const std::string& IORString,
80                                              bool isMultiFile,
81                                              bool isASCII);
82
83   virtual std::string LocalPersistentIDToIOR(const SALOMEDSImpl_SObject& theSObject,
84                                              const std::string& aLocalPersistentID,
85                                              bool isMultiFile,
86                                              bool isASCII);
87
88   virtual bool CanCopy(const SALOMEDSImpl_SObject& theObject);
89
90   virtual SALOMEDSImpl_TMPFile* CopyFrom(const SALOMEDSImpl_SObject& theObject, 
91                                          int& theObjectID,
92                                          long& theStreamLength);
93   
94   virtual bool CanPaste(const std::string& theComponentName, int theObjectID);
95
96   virtual std::string PasteInto(const unsigned char* theStream,
97                                 const long theStreamLength,
98                                 int theObjectID,
99                                 const SALOMEDSImpl_SObject& theObject);
100
101   virtual SALOMEDSImpl_TMPFile* DumpPython(bool isPublished,
102                                            bool isMultiFile,
103                                            bool& isValidScript,
104                                            long& theStreamLength);
105 };
106
107 #include "SALOME_NamingService.hxx"
108 #include "SALOME_LifeCycleCORBA.hxx"
109
110 class SALOMEDS_DriverFactory_i : public virtual SALOMEDSImpl_DriverFactory 
111 {
112 protected:  
113   CORBA::ORB_var        _orb;
114   SALOME_NamingService_Abstract* _name_service = nullptr;
115
116 public:
117   
118   SALOMEDS_DriverFactory_i(CORBA::ORB_ptr theORB, bool isNSAvail = true);
119   
120   SALOMEDS_DriverFactory_i(CORBA::ORB_ptr theORB, SALOME_NamingService_Abstract *ns);
121
122   SALOME_NamingService_Abstract *getNS() const { return _name_service; }
123
124   virtual ~SALOMEDS_DriverFactory_i();
125    
126   virtual SALOMEDSImpl_Driver* GetDriverByType(const std::string& theComponentType);
127
128   virtual SALOMEDSImpl_Driver* GetDriverByIOR(const std::string& theIOR);
129 };
130
131 #endif