1 // Copyright (C) 2007-2020 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // Author : Anthony GEAY (EDF R&D)
22 #ifndef __SALOME_SDS_IDL__
23 #define __SALOME_SDS_IDL__
25 #include "SALOME_GenericObj.idl"
26 #include "SALOME_Exception.idl"
27 #include "SALOME_CommonTypes.idl"
31 typedef sequence<ByteVec> SeqOfByteVec;
33 interface DataScopeServer;
35 interface BasicDataServer : GenericObj
37 DataScopeServer getMyDataScopeServer();
39 string getScopeName();
43 interface PickelizedPyObjServer : BasicDataServer
45 ByteVec fetchSerializedContent() raises (SALOME::SALOME_Exception);
48 interface PickelizedPyObjRdOnlyServer : PickelizedPyObjServer
52 interface PickelizedPyObjRdExtBaseServer : PickelizedPyObjServer
56 interface PickelizedPyObjRdExtServer : PickelizedPyObjRdExtBaseServer
58 PickelizedPyObjRdExtServer invokePythonMethodOn(in string method, in ByteVec args) raises (SALOME::SALOME_Exception);
61 interface PickelizedPyObjRdExtInitServer : PickelizedPyObjRdExtBaseServer
65 interface PickelizedPyObjRdWrServer : PickelizedPyObjServer
67 void setSerializedContent(in ByteVec newValue) raises (SALOME::SALOME_Exception);
68 PickelizedPyObjRdWrServer invokePythonMethodOn(in string method, in ByteVec args) raises (SALOME::SALOME_Exception);
71 interface DataServerManager;
73 interface DataScopeKiller
78 interface RequestSwitcherBase
81 void activeRequests();
84 interface RequestSwitcher : RequestSwitcherBase
87 ByteVec fetchSerializedContent(in string varName) raises (SALOME::SALOME_Exception);
88 void fetchAndGetAccessOfVar(in string varName, out string access, out ByteVec data) raises (SALOME::SALOME_Exception);
91 interface DataScopeServerTransaction;
93 interface RequestSwitcherDSM : RequestSwitcherBase
95 StringVec listScopes();
96 DataScopeServerTransaction giveADataScopeTransactionCalled(in string scopeName, out boolean isCreated) raises (SALOME::SALOME_Exception);
99 interface DataScopeServerBase
102 string getScopeName();
103 StringVec listVars();
104 boolean existVar(in string varName) raises (SALOME::SALOME_Exception);
105 void deleteVar(in string varName) raises (SALOME::SALOME_Exception);
106 boolean shutdownIfNotHostedByDSM(out DataScopeKiller killer) raises (SALOME::SALOME_Exception);
107 ByteVec fetchSerializedContent(in string varName) raises (SALOME::SALOME_Exception);
108 SeqOfByteVec getAllKeysOfVarWithTypeDict(in string varName) raises (SALOME::SALOME_Exception);
109 ByteVec getValueOfVarWithTypeDict(in string varName, in ByteVec constKey) raises (SALOME::SALOME_Exception);
110 void takeANap(in double napDurationInSec) raises (SALOME::SALOME_Exception);
113 interface DataScopeServer : DataScopeServerBase
115 BasicDataServer retrieveVar(in string varName) raises (SALOME::SALOME_Exception);
116 PickelizedPyObjRdOnlyServer createRdOnlyVar(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
117 PickelizedPyObjRdExtServer createRdExtVar(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
120 interface Transaction
124 interface TransactionRdWrAccess : Transaction
126 PickelizedPyObjRdWrServer getVar() raises (SALOME::SALOME_Exception);
129 interface TransactionMultiKeyAddSession : Transaction
131 void addKeyValueInVarErrorIfAlreadyExistingNow(in SALOME::ByteVec keyValue, in ByteVec constValue) raises (SALOME::SALOME_Exception);
134 typedef sequence<Transaction> ListOfTransaction;
138 void waitFor() raises (SALOME::SALOME_Exception);
141 interface DataScopeServerTransaction : DataScopeServerBase
143 string getAccessOfVar(in string varName) raises (SALOME::SALOME_Exception);
144 void fetchAndGetAccessOfVar(in string varName, out string access, out ByteVec data) raises (SALOME::SALOME_Exception);
145 Transaction createRdOnlyVarTransac(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
146 Transaction createRdExtVarTransac(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
147 Transaction createRdExtVarFreeStyleTransac(in string varName, in ByteVec constValue, in string compareFuncContent) raises (SALOME::SALOME_Exception);
148 Transaction createRdExtInitVarTransac(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
149 Transaction createRdWrVarTransac(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
150 Transaction addKeyValueInVarHard(in string varName, in ByteVec keyValue, in ByteVec constValue) raises (SALOME::SALOME_Exception);
151 Transaction addKeyValueInVarErrorIfAlreadyExisting(in string varName, in ByteVec keyValue, in ByteVec constValue) raises (SALOME::SALOME_Exception);
152 TransactionMultiKeyAddSession addMultiKeyValueSession(in string varName) raises (SALOME::SALOME_Exception);
153 Transaction removeKeyInVarErrorIfNotAlreadyExisting(in string varName, in ByteVec keyValue) raises (SALOME::SALOME_Exception);
154 TransactionRdWrAccess createWorkingVarTransac(in string varName, in ByteVec constValue) raises (SALOME::SALOME_Exception);
155 Transaction killVarTransac(in string varName) raises (SALOME::SALOME_Exception);
156 KeyWaiter waitForKeyInVar(in string varName, in ByteVec keyVal) raises (SALOME::SALOME_Exception);
157 KeyWaiter waitForKeyInVarAndKillIt(in string varName, in ByteVec keyVal, out Transaction transac) raises (SALOME::SALOME_Exception);
158 void atomicApply(in ListOfTransaction transactions) raises (SALOME::SALOME_Exception);
159 ByteVec waitForMonoThrRev(in KeyWaiter kw) raises (SALOME::SALOME_Exception);
160 ByteVec waitForAndKill(in KeyWaiter kw) raises (SALOME::SALOME_Exception);
161 RequestSwitcher getRequestSwitcher();
164 interface DataServerManager
166 StringVec listScopes();
167 StringVec listAliveAndKickingScopes() raises (SALOME::SALOME_Exception);
168 DataScopeServer getDefaultScope() raises (SALOME::SALOME_Exception);
169 boolean isAliveAndKicking(in string scopeName) raises (SALOME::SALOME_Exception);
171 DataScopeServer createDataScope(in string scopeName) raises (SALOME::SALOME_Exception);
172 DataScopeServer giveADataScopeCalled(in string scopeName, out boolean isCreated) raises (SALOME::SALOME_Exception);
174 DataScopeServerTransaction createDataScopeTransaction(in string scopeName) raises (SALOME::SALOME_Exception);
175 DataScopeServerTransaction giveADataScopeTransactionCalled(in string scopeName, out boolean isCreated) raises (SALOME::SALOME_Exception);
177 DataScopeServerBase retriveDataScope(in string scopeName) raises (SALOME::SALOME_Exception);
178 void removeDataScope(in string scopeName) raises (SALOME::SALOME_Exception);
179 void cleanScopesInNS();
180 void shutdownScopes() raises (SALOME::SALOME_Exception);
181 RequestSwitcherDSM getRequestSwitcher();