]> SALOME platform Git repositories - modules/kernel.git/blob - src/SALOMESDS/SALOMESDS_Transaction.hxx
Salome HOME
RdExtInit is now OK for recovery.
[modules/kernel.git] / src / SALOMESDS / SALOMESDS_Transaction.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony GEAY (EDF R&D)
20
21 #ifndef __SALOMESDS_TRANSACTION_HXX__
22 #define __SALOMESDS_TRANSACTION_HXX__
23
24 #include "SALOMEconfig.h"
25 #include CORBA_SERVER_HEADER(SALOME_SDS)
26
27 #include "SALOMESDS_Defines.hxx"
28 #include "SALOMESDS_Exception.hxx"
29 #include "SALOMESDS_DataServerManager.hxx"
30
31 #include <string>
32 #include <vector>
33
34 namespace SALOMESDS
35 {
36   class PickelizedPyObjServer;
37   class PickelizedPyObjRdWrServer;
38   class PickelizedPyObjRdExtServer;
39
40   class SALOMESDS_EXPORT Transaction : public virtual POA_SALOME::Transaction, public POAHolder
41   {
42   public:
43     Transaction(DataScopeServerTransaction *dsct, const std::string& varName):_dsct(dsct),_var_name(varName) { if(!_dsct) throw Exception("Transaction constructor error !"); }
44     std::string getVarName() const { return _var_name; }
45     void checkVarExisting() { _dsct->checkExistingVar(_var_name); }
46     void checkNotAlreadyExisting() { _dsct->checkNotAlreadyExistingVar(_var_name); }
47     PortableServer::POA_var getPOA() const { return _dsct->getPOA(); }
48     virtual void prepareRollBackInCaseOfFailure() = 0;
49     virtual void perform() = 0;
50     virtual void rollBack() = 0;
51     virtual void notify() = 0;
52     virtual ~Transaction();
53   public:
54     static void FromByteSeqToVB(const SALOME::ByteVec& bsToBeConv, std::vector<unsigned char>& ret);
55     static void FromVBToByteSeq(const std::vector<unsigned char>& bsToBeConv, SALOME::ByteVec& ret);
56   protected:
57     DataScopeServerTransaction *_dsct;
58     std::string _var_name;
59   };
60
61   class TransactionVarCreate : public Transaction
62   {
63   public:
64     TransactionVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue);
65     void prepareRollBackInCaseOfFailure();
66     void rollBack();
67     void notify();
68   protected:
69     std::vector<unsigned char> _data;
70   };
71
72   class TransactionRdOnlyVarCreate : public TransactionVarCreate
73   {
74   public:
75     TransactionRdOnlyVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue):TransactionVarCreate(dsct,varName,constValue) { }
76     void perform();
77   };
78
79   class TransactionRdExtVarCreate : public TransactionVarCreate
80   {
81   public:
82     TransactionRdExtVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue):TransactionVarCreate(dsct,varName,constValue) { }
83     void perform();
84   };
85
86   class TransactionRdExtInitVarCreate : public TransactionVarCreate
87   {
88   public:
89     TransactionRdExtInitVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue):TransactionVarCreate(dsct,varName,constValue) { }
90     void perform();
91   };
92
93   class TransactionRdWrVarCreate : public TransactionVarCreate
94   {
95   public:
96     TransactionRdWrVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue):TransactionVarCreate(dsct,varName,constValue) { }
97     void perform();
98   };
99
100   class PickelizedPyObjServer;
101
102   class TransactionDictModify : public Transaction
103   {
104   public:
105     TransactionDictModify(DataScopeServerTransaction *dsct, const std::string& varName);
106     PickelizedPyObjServer *checkVarExistingAndDict() { return _dsct->checkVarExistingAndDict(_var_name); }
107     void prepareRollBackInCaseOfFailure();
108     void rollBack();
109   protected:
110     std::string _zeDataBefore;
111     PickelizedPyObjServer *_varc;
112   };
113
114   class TransactionAddKeyValue : public TransactionDictModify
115   {
116   public:
117     TransactionAddKeyValue(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
118     void prepareRollBackInCaseOfFailure();
119     void notify();
120     ~TransactionAddKeyValue();
121   protected:
122     PyObject *_key;
123     PyObject *_value;
124   };
125
126   class TransactionAddKeyValueHard : public TransactionAddKeyValue
127   {
128   public:
129     TransactionAddKeyValueHard(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
130     void perform();
131   };
132
133   class TransactionAddKeyValueErrorIfAlreadyExisting : public TransactionAddKeyValue
134   {
135   public:
136     TransactionAddKeyValueErrorIfAlreadyExisting(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
137     void perform();
138   };
139
140   class TransactionRemoveKeyInVarErrorIfNotAlreadyExisting : public TransactionDictModify
141   {
142   public:
143     TransactionRemoveKeyInVarErrorIfNotAlreadyExisting(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key);
144     void perform();
145     void notify();
146     ~TransactionRemoveKeyInVarErrorIfNotAlreadyExisting();
147   private:
148     PyObject *_key;
149   };
150
151   class TransactionMorphRdWrIntoRdOnly : public Transaction, public virtual POA_SALOME::TransactionRdWrAccess
152   {
153   public:
154     TransactionMorphRdWrIntoRdOnly(DataScopeServerTransaction *dsct, const std::string& varName);
155   public:
156     SALOME::PickelizedPyObjRdWrServer_ptr getVar();
157   public:
158     void prepareRollBackInCaseOfFailure();
159     void perform();
160     void rollBack();
161     void notify();
162   };
163
164   class TransactionMultiKeyAddSession : public Transaction, public virtual POA_SALOME::TransactionMultiKeyAddSession
165   {
166   public:
167     TransactionMultiKeyAddSession(DataScopeServerTransaction *dsct, const std::string& varName);
168   public://remotely callable
169     void addKeyValueInVarErrorIfAlreadyExistingNow(const SALOME::ByteVec& key, const SALOME::ByteVec& value);
170   public:
171     void prepareRollBackInCaseOfFailure();
172     void perform();
173     void rollBack();
174     void notify();
175   };
176 }
177
178 #endif