Salome HOME
Multi push key,value session in a transaction.
[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 TransactionRdWrVarCreate : public TransactionVarCreate
87   {
88   public:
89     TransactionRdWrVarCreate(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& constValue):TransactionVarCreate(dsct,varName,constValue) { }
90     void perform();
91   };
92
93   class PickelizedPyObjServer;
94
95   class TransactionDictModify : public Transaction
96   {
97   public:
98     TransactionDictModify(DataScopeServerTransaction *dsct, const std::string& varName);
99     PickelizedPyObjServer *checkVarExistingAndDict() { return _dsct->checkVarExistingAndDict(_var_name); }
100     void prepareRollBackInCaseOfFailure();
101     void rollBack();
102   protected:
103     std::string _zeDataBefore;
104     PickelizedPyObjServer *_varc;
105   };
106
107   class TransactionAddKeyValue : public TransactionDictModify
108   {
109   public:
110     TransactionAddKeyValue(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
111     void prepareRollBackInCaseOfFailure();
112     void notify();
113     ~TransactionAddKeyValue();
114   protected:
115     PyObject *_key;
116     PyObject *_value;
117   };
118
119   class TransactionAddKeyValueHard : public TransactionAddKeyValue
120   {
121   public:
122     TransactionAddKeyValueHard(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
123     void perform();
124   };
125
126   class TransactionAddKeyValueErrorIfAlreadyExisting : public TransactionAddKeyValue
127   {
128   public:
129     TransactionAddKeyValueErrorIfAlreadyExisting(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key, const SALOME::ByteVec& value);
130     void perform();
131   };
132
133   class TransactionRemoveKeyInVarErrorIfNotAlreadyExisting : public TransactionDictModify
134   {
135   public:
136     TransactionRemoveKeyInVarErrorIfNotAlreadyExisting(DataScopeServerTransaction *dsct, const std::string& varName, const SALOME::ByteVec& key);
137     void perform();
138     void notify();
139     ~TransactionRemoveKeyInVarErrorIfNotAlreadyExisting();
140   private:
141     PyObject *_key;
142   };
143
144   class TransactionMorphRdWrIntoRdOnly : public Transaction, public virtual POA_SALOME::TransactionRdWrAccess
145   {
146   public:
147     TransactionMorphRdWrIntoRdOnly(DataScopeServerTransaction *dsct, const std::string& varName);
148   public:
149     SALOME::PickelizedPyObjRdWrServer_ptr getVar();
150   public:
151     void prepareRollBackInCaseOfFailure();
152     void perform();
153     void rollBack();
154     void notify();
155   };
156
157   class TransactionMultiKeyAddSession : public Transaction, public virtual POA_SALOME::TransactionMultiKeyAddSession
158   {
159   public:
160     TransactionMultiKeyAddSession(DataScopeServerTransaction *dsct, const std::string& varName);
161   public://remotely callable
162     void addKeyValueInVarErrorIfAlreadyExistingNow(const SALOME::ByteVec& key, const SALOME::ByteVec& value);
163   public:
164     void prepareRollBackInCaseOfFailure();
165     void perform();
166     void rollBack();
167     void notify();
168   };
169 }
170
171 #endif