Version: 8.3.0
SALOMEDS_Driver_i.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, 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"
31 #include "SALOMEDSImpl_SObject.hxx"
32 
33 #include CORBA_SERVER_HEADER(SALOMEDS)
34 #include CORBA_SERVER_HEADER(SALOME_Component)
35 
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);
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 
102  bool isPublished,
103  bool isMultiFile,
104  bool& isValidScript,
105  long& theStreamLength);
106 };
107 
108 #include "SALOME_NamingService.hxx"
109 #include "SALOME_LifeCycleCORBA.hxx"
110 
112 {
113 protected:
114  CORBA::ORB_var _orb;
116 
117 public:
118 
119  SALOMEDS_DriverFactory_i(CORBA::ORB_ptr theORB);
120 
122 
123  virtual SALOMEDSImpl_Driver* GetDriverByType(const std::string& theComponentType);
124 
125  virtual SALOMEDSImpl_Driver* GetDriverByIOR(const std::string& theIOR);
126 };
127 
128 #endif