Salome HOME
Synchronize adm files
[modules/geom.git] / src / GEOM_I / GEOM_IOperations_i.cc
1 // Copyright (C) 2007-2014  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 #include "GEOM_IOperations_i.hh"
24
25 #include "GEOM_Engine.hxx"
26 #include "GEOM_Gen_i.hh"
27 #include <SALOME_NamingService.hxx>
28
29 #include "utilities.h"
30 #include "OpUtil.hxx"
31 #include "Utils_ExceptHandlers.hxx"
32
33 #include <Standard_Stream.hxx>
34 #include <TCollection_AsciiString.hxx>
35 #include <TDF_Tool.hxx>
36
37 #include CORBA_SERVER_HEADER(SALOME_Session)
38
39 //=============================================================================
40 /*!
41  *  default constructor:
42  */
43 //=============================================================================
44
45 GEOM_IOperations_i::GEOM_IOperations_i(PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine, ::GEOM_IOperations* theImpl)
46 :SALOME::GenericObj_i( thePOA ), _impl(theImpl), _engine(theEngine)
47 {
48 }
49
50 //=============================================================================
51 /*!
52  *  destructor
53  */
54 //=============================================================================
55
56 GEOM_IOperations_i::~GEOM_IOperations_i()
57 {}
58
59
60 //=============================================================================
61 /*!
62  *  IsDone
63  */
64 //=============================================================================
65 CORBA::Boolean GEOM_IOperations_i::IsDone()
66 {
67   return _impl->IsDone();
68 }
69
70
71 //=============================================================================
72 /*!
73  *  SetErrorCode
74  */
75 //=============================================================================
76 void GEOM_IOperations_i::SetErrorCode(const char* theErrorCode)
77 {
78   _impl->SetErrorCode((char*)theErrorCode);
79 }
80
81 //=============================================================================
82 /*!
83  *  GetErrorCode
84  */
85 //=============================================================================
86 char* GEOM_IOperations_i::GetErrorCode()
87 {
88   return CORBA::string_dup(_impl->GetErrorCode());
89 }
90
91 //=============================================================================
92 /*!
93  *  GetStudyID
94  */
95 //=============================================================================
96 CORBA::Long GEOM_IOperations_i::GetStudyID()
97 {
98   return _impl->GetDocID();
99 }
100
101 //=============================================================================
102 /*!
103  *  StartOperation
104  */
105 //=============================================================================
106 void GEOM_IOperations_i::StartOperation()
107 {
108   _impl->StartOperation();
109 }
110
111 //=============================================================================
112 /*!
113  *  FinishOperation
114  */
115 //=============================================================================
116 void GEOM_IOperations_i::FinishOperation()
117 {
118   _impl->FinishOperation();
119 }
120
121
122 //=============================================================================
123 /*!
124  *  AbortOperation
125  */
126 //=============================================================================
127 void GEOM_IOperations_i::AbortOperation()
128 {
129   _impl->AbortOperation();
130 }
131
132 //=============================================================================
133 /*!
134  *  GetObject
135  */
136 //=============================================================================
137 GEOM::GEOM_BaseObject_ptr
138 GEOM_IOperations_i::GetBaseObject(Handle(GEOM_BaseObject) theObject)
139 {
140   GEOM::GEOM_BaseObject_var GO;
141   if (theObject.IsNull()) return GO._retn();
142   TCollection_AsciiString anEntry;
143   TDF_Tool::Entry(theObject->GetEntry(), anEntry);
144   GO = _engine->GetObject(theObject->GetDocID(), (char*) anEntry.ToCString());
145   return GO._retn();
146 }
147
148 //=============================================================================
149 /*!
150  *  GetObjectImpl
151  */
152 //=============================================================================
153 Handle(GEOM_BaseObject)
154 GEOM_IOperations_i::GetBaseObjectImpl(GEOM::GEOM_BaseObject_ptr theObject)
155 {
156   Handle(GEOM_BaseObject) anImpl;
157   if (!CORBA::is_nil(theObject)) {
158     CORBA::String_var anEntry = theObject->GetEntry();
159     anImpl = GetImpl()->GetEngine()->GetObject( theObject->GetStudyID(), anEntry );
160   }
161   return anImpl;
162 }
163
164 //=============================================================================
165 /*!
166  *  GetObject
167  */
168 //=============================================================================
169 GEOM::GEOM_Object_ptr GEOM_IOperations_i::GetObject(Handle(GEOM_Object) theObject)
170 {
171   return GEOM::GEOM_Object::_narrow( GetBaseObject( theObject ));
172 }
173
174 //=============================================================================
175 /*!
176  *  GetObjectImpl
177  */
178 //=============================================================================
179 Handle(GEOM_Object) GEOM_IOperations_i::GetObjectImpl(GEOM::GEOM_Object_ptr theObject)
180 {
181   return Handle(GEOM_Object)::DownCast( GetBaseObjectImpl( theObject ));
182 }
183
184 //=============================================================================
185 /*!
186  *  GetListOfObjectsImpl
187  */
188 //=============================================================================
189 Handle(TColStd_HSequenceOfTransient) GEOM_IOperations_i::GetListOfObjectsImpl
190               (const GEOM::ListOfGO& theObjects)
191 {
192   Handle(TColStd_HSequenceOfTransient) aResult =
193     new TColStd_HSequenceOfTransient;
194
195   int i;
196   int aNbObj = theObjects.length();
197
198   for (i = 0; i < aNbObj; i++) {
199     Handle(GEOM_Object) anObj = GetObjectImpl(theObjects[i]);
200
201     if (anObj.IsNull()) {
202       aResult.Nullify();
203       break;
204     }
205
206     aResult->Append(anObj);
207   }
208
209   return aResult;
210 }
211
212 //=============================================================================
213 /*!
214  *  UpdateGUIForObject
215  */
216 //=============================================================================
217 void GEOM_IOperations_i::UpdateGUIForObject(GEOM::GEOM_Object_ptr theObj)
218 {
219   if (!CORBA::is_nil (theObj)) {
220     // Cast _engine to GEOM_Gen_i type.
221     PortableServer::Servant aServant = myPOA->reference_to_servant(_engine.in());
222     GEOM_Gen_i *anEngine = dynamic_cast<GEOM_Gen_i *>(aServant);
223
224     if (anEngine) {
225       SALOME_NamingService *aNameService = anEngine->GetNS();
226       CORBA::Object_var aSessionObj = aNameService->Resolve("/Kernel/Session");
227       SALOME::Session_var aSession = SALOME::Session::_narrow(aSessionObj);
228   
229       if (!aSession->_is_nil())
230       {
231         std::string aMsg("GEOM/modified/");
232         CORBA::String_var anIOR = anEngine->GetORB()->object_to_string(theObj);
233   
234         aMsg += anIOR.in();
235         aSession->emitMessageOneWay(aMsg.c_str());
236       }
237     }
238   }
239 }