]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM_I/GEOM_Gen_i.hh
Salome HOME
Merging with WPdev
[modules/geom.git] / src / GEOM_I / GEOM_Gen_i.hh
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef __GEOM_GEN_I_H__
21 #define __GEOM_GEN_I_H__
22
23 #include "GEOM_GEOM_I.hxx"
24
25 #include "GEOMImpl_Gen.hxx"
26
27 // IDL headers
28 #include <SALOMEconfig.h>
29 #include CORBA_SERVER_HEADER(GEOM_Gen)
30
31 #include CORBA_CLIENT_HEADER(SALOMEDS)
32 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
33
34
35 #include "SALOME_Component_i.hxx"
36 #include "SALOME_NamingService.hxx"
37
38 #include "GEOM_IBasicOperations_i.hh"
39 #include "GEOM_ITransformOperations_i.hh"
40 #include "GEOM_I3DPrimOperations_i.hh"
41 #include "GEOM_IShapesOperations_i.hh"
42 #include "GEOM_IBlocksOperations_i.hh"
43 #include "GEOM_IBooleanOperations_i.hh"
44 #include "GEOM_ICurvesOperations_i.hh"
45 #include "GEOM_ILocalOperations_i.hh"
46 #include "GEOM_IHealingOperations_i.hh"
47 #include "GEOM_IInsertOperations_i.hh"
48 #include "GEOM_IMeasureOperations_i.hh"
49 #include "GEOM_IGroupOperations_i.hh"
50
51 //#include <Standard_ErrorHandler.hxx> // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC
52
53
54 //=====================================================================
55 // GEOM_Gen_i : class definition
56 //=====================================================================
57 class GEOM_I_EXPORT GEOM_Gen_i: virtual public POA_GEOM::GEOM_Gen, virtual public Engines_Component_i
58 {
59  public:
60
61   //-----------------------------------------------------------------------//
62   // Constructor / Destructor                                              //
63   //-----------------------------------------------------------------------//
64
65   // constructor to be called for servant creation.
66   GEOM_Gen_i();
67   GEOM_Gen_i(CORBA::ORB_ptr orb,
68              PortableServer::POA_ptr poa,
69              PortableServer::ObjectId * contId,
70              const char *instanceName,
71              const char *interfaceName);
72
73   // destructor, doing nothing (for now)
74   virtual ~GEOM_Gen_i();
75
76   // generic method to be put in a super class
77   void register_name(char * name);
78
79
80   //-----------------------------------------------------------------------//
81   // Inherited methods from SALOMEDS::Driver                               //
82   //-----------------------------------------------------------------------//
83
84   SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
85                           const char* theURL,
86                           bool isMultiFile);
87
88   SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
89                                const char* theURL,
90                                bool isMultiFile);
91
92   CORBA::Boolean Load(SALOMEDS::SComponent_ptr theComponent,
93                       const SALOMEDS::TMPFile& theStream,
94                       const char* theURL,
95                       bool isMultiFile);
96
97   CORBA::Boolean LoadASCII(SALOMEDS::SComponent_ptr theComponent,
98                            const SALOMEDS::TMPFile& theStream,
99                            const char* theURL,
100                            bool isMultiFile);
101
102   void Close(SALOMEDS::SComponent_ptr theComponent);
103   char* ComponentDataType();
104
105
106   char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
107                                const char* IORString,
108                                CORBA::Boolean isMultiFile,
109                                CORBA::Boolean isASCII);
110   char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
111                                const char* aLocalPersistentID,
112                                CORBA::Boolean isMultiFile,
113                                CORBA::Boolean isASCII);
114
115   bool CanPublishInStudy(CORBA::Object_ptr theIOR);
116   SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
117                                        SALOMEDS::SObject_ptr theSObject,
118                                        CORBA::Object_ptr theObject,
119                                        const char* theName) throw (SALOME::SALOME_Exception) ;
120
121   CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
122   SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
123   CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
124   SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
125                                   CORBA::Long theObjectID,
126                                   SALOMEDS::SObject_ptr theObject);
127
128   /*! \brief Adds theObject in the study with a name = theName, if
129    *         theFather is not null the object is placed under theFather
130    */
131   SALOMEDS::SObject_ptr AddInStudy (SALOMEDS::Study_ptr theStudy,
132                                     GEOM::GEOM_Object_ptr theObject,
133                                     const char* theName,
134                                     GEOM::GEOM_Object_ptr theFather);
135
136   //-----------------------------------------------------------------------//
137   // Transaction methods                                                   //
138   //-----------------------------------------------------------------------//
139
140   //Undos one transaction in the document associated with theStudyID
141   virtual void Undo(CORBA::Long theStudyID);
142
143   //Redos one transaction in the document associated with theStudyID
144   virtual void Redo(CORBA::Long theStudyID);
145
146   //-----------------------------------------------------------------------//
147   // Operations methods                                                    //
148   //-----------------------------------------------------------------------//
149
150   //Returns a pointer to BasicOperations interface
151   virtual GEOM::GEOM_IBasicOperations_ptr GetIBasicOperations (CORBA::Long theStudyID)
152     throw (SALOME::SALOME_Exception);
153
154   //Returns a pointer to TransformOperations interface
155   virtual GEOM::GEOM_ITransformOperations_ptr GetITransformOperations (CORBA::Long theStudyID)
156     throw (SALOME::SALOME_Exception);
157
158   //Returns a pointer to 3DPrimOperations interface
159   virtual GEOM::GEOM_I3DPrimOperations_ptr GetI3DPrimOperations (CORBA::Long theStudyID)
160     throw (SALOME::SALOME_Exception);
161
162   //Returns a pointer to ShapesOperations interface
163   virtual GEOM::GEOM_IShapesOperations_ptr GetIShapesOperations (CORBA::Long theStudyID)
164     throw (SALOME::SALOME_Exception);
165
166   //Returns a pointer to BlocksOperations interface
167   virtual GEOM::GEOM_IBlocksOperations_ptr GetIBlocksOperations (CORBA::Long theStudyID)
168     throw (SALOME::SALOME_Exception);
169
170   //Returns a pointer to BooleanOperations interface
171   virtual GEOM::GEOM_IBooleanOperations_ptr GetIBooleanOperations (CORBA::Long theStudyID)
172     throw (SALOME::SALOME_Exception);
173
174   //Returns a pointer to CurvesOperations interface
175   virtual GEOM::GEOM_ICurvesOperations_ptr GetICurvesOperations (CORBA::Long theStudyID)
176     throw (SALOME::SALOME_Exception);
177
178   //Returns a pointer to LocalOperations interface
179   virtual GEOM::GEOM_ILocalOperations_ptr GetILocalOperations (CORBA::Long theStudyID)
180     throw (SALOME::SALOME_Exception);
181
182   //Returns a pointer to HealingOperations interface
183   virtual GEOM::GEOM_IHealingOperations_ptr GetIHealingOperations (CORBA::Long theStudyID)
184     throw (SALOME::SALOME_Exception);
185
186   //Returns a pointer to InsertOperations interface
187   virtual GEOM::GEOM_IInsertOperations_ptr GetIInsertOperations (CORBA::Long theStudyID)
188     throw (SALOME::SALOME_Exception);
189
190   //Returns a pointer to MeasureOperations interface
191   virtual GEOM::GEOM_IMeasureOperations_ptr GetIMeasureOperations (CORBA::Long theStudyID)
192     throw (SALOME::SALOME_Exception);
193
194   //Returns a pointer to GroupOperations interface
195   virtual GEOM::GEOM_IGroupOperations_ptr GetIGroupOperations (CORBA::Long theStudyID)
196     throw (SALOME::SALOME_Exception);
197
198   //Adds a new sub shape
199   virtual GEOM::GEOM_Object_ptr AddSubShape (GEOM::GEOM_Object_ptr theMainShape,
200                                              const GEOM::ListOfLong& theIndices);
201
202   virtual void RemoveObject(GEOM::GEOM_Object_ptr theObject);
203
204   virtual  char* GetStringFromIOR(GEOM::GEOM_Object_ptr theObject);
205
206   virtual GEOM::GEOM_Object_ptr GetIORFromString(const char* stringIOR);
207
208   virtual Engines::TMPFile* DumpPython(CORBA::Object_ptr theStudy,
209                                        CORBA::Boolean isPublished,
210                                        CORBA::Boolean& isValidScript);
211
212   char* GetDumpName (const char* theStudyEntry);
213
214   GEOM::string_array* GetAllDumpNames();
215
216   //-----------------------------------------------------------------------//
217   // Internal methods                                                      //
218   //-----------------------------------------------------------------------//
219
220   virtual GEOM::GEOM_Object_ptr GetObject(CORBA::Long theStudyID, const char* theEntry);
221
222  private:
223
224    ::GEOMImpl_Gen* _impl;
225    SALOME_NamingService * name_service;
226    char * _name;
227 };
228
229 #endif