Salome HOME
updated copyright message
[modules/geom.git] / src / GEOMBase / GEOM_Operation.cxx
1 // Copyright (C) 2007-2023  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GEOM_Operation.cxx
25 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
26 //
27 #include "GEOM_Operation.h"
28
29 #include <SUIT_Application.h>
30 #include <SalomeApp_Tools.h>
31
32
33 //================================================================
34 // Function : GEOM_Operation
35 // Purpose  : 
36 //================================================================
37 GEOM_Operation::GEOM_Operation( SUIT_Application* app, GEOM::GEOM_IOperations_ptr oper )
38 : SUIT_Operation( app )
39 {
40   myIOperation = GEOM::GEOM_IOperations::_narrow( oper );
41 }
42
43 //================================================================
44 // Function : ~GEOM_Operation
45 // Purpose  : 
46 //================================================================
47 GEOM_Operation::~GEOM_Operation()
48 {
49 }
50
51 //================================================================
52 // Function : onStartOperation()
53 // Purpose  : Opens an internal transaction in GEOM engine
54 //================================================================
55 void GEOM_Operation::startOperation()
56 {
57   SUIT_Operation::startOperation();
58
59   if ( !myIOperation->_is_nil() ) {
60     try {
61       myIOperation->StartOperation();
62       setState( Running );
63     }
64     catch ( const SALOME::SALOME_Exception& e ) {
65       SalomeApp_Tools:: QtCatchCorbaException( e );
66     }
67   }
68 }
69
70 //================================================================
71 // Function : onFinishOperation
72 // Purpose  : Commits an internal transaction in GEOM engine
73 //================================================================
74 void GEOM_Operation::commitOperation()
75 {
76   SUIT_Operation::commitOperation();
77
78   if ( state() != Running )
79     return;
80   
81   if ( !myIOperation->_is_nil() ) {
82     try {
83       myIOperation->FinishOperation();
84       setState( Waiting );
85     }
86     catch ( const SALOME::SALOME_Exception& e ) {
87       SalomeApp_Tools:: QtCatchCorbaException( e );
88     }
89   }
90 }
91
92 //================================================================
93 // Function : onSuspendOperation
94 // Purpose  : 
95 //================================================================
96 void GEOM_Operation::suspendOperation()
97 {
98   SUIT_Operation::suspendOperation();
99 }
100
101 //================================================================
102 // Function : onResumeOperation
103 // Purpose  : 
104 //================================================================
105 void GEOM_Operation::resumeOperation()
106 {
107   SUIT_Operation::resumeOperation();
108 }
109
110 //================================================================
111 // Function : onAbortOperation
112 // Purpose  : Aborts an internal transaction in GEOM engine
113 //================================================================
114 void GEOM_Operation::abortOperation()
115 {
116   SUIT_Operation::abortOperation();
117
118   if ( !myIOperation->_is_nil() ) {
119     try {
120       myIOperation->AbortOperation();
121     }
122     catch ( const SALOME::SALOME_Exception& e ) {
123       SalomeApp_Tools::QtCatchCorbaException( e );
124     }
125   }
126 }
127