Salome HOME
updated copyright message
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_StudyBuilder.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, 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 //  File   : SALOMEDSImpl_StudyBuilder.hxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #ifndef __SALOMEDSImpl_STUDYBUILDER_H__
28 #define __SALOMEDSImpl_STUDYBUILDER_H__
29
30 #include "SALOMEDSImpl_Defines.hxx"
31 // std C++ headers
32 #include <iostream>
33 #include <string>
34 #include <vector>
35
36 #include "SALOMEDSImpl_Callback.hxx"
37 #include "SALOMEDSImpl_Driver.hxx"
38
39 class SALOMEDSImpl_Study;
40
41 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_StudyBuilder
42 {
43 private:
44   DF_Document*             _doc;
45   SALOMEDSImpl_Study*      _study;  
46   SALOMEDSImpl_Callback*   _callbackOnAdd;
47   SALOMEDSImpl_Callback*   _callbackOnRemove;
48   std::string              _errorCode;
49
50 public:
51
52   SALOMEDSImpl_StudyBuilder(const SALOMEDSImpl_Study* theOwner);
53
54   virtual ~SALOMEDSImpl_StudyBuilder();
55
56   virtual SALOMEDSImpl_SComponent NewComponent(const std::string& ComponentDataType);
57
58   virtual bool DefineComponentInstance (const SALOMEDSImpl_SComponent&, const std::string& ComponentIOR);
59
60   virtual bool RemoveComponent(const SALOMEDSImpl_SComponent& aComponent);
61
62   virtual SALOMEDSImpl_SObject NewObject(const SALOMEDSImpl_SObject& theFatherObject);
63
64   virtual SALOMEDSImpl_SObject NewObjectToTag(const SALOMEDSImpl_SObject& theFatherObject, 
65     const int theTag);
66
67   virtual bool LoadWith(const SALOMEDSImpl_SComponent& sco, SALOMEDSImpl_Driver* Engine);
68   virtual bool Load(const SALOMEDSImpl_SObject& sco);
69
70   virtual bool RemoveObject(const SALOMEDSImpl_SObject& anObject);
71   virtual bool RemoveObjectWithChildren(const SALOMEDSImpl_SObject& anObject);
72
73   virtual DF_Attribute* FindOrCreateAttribute(const SALOMEDSImpl_SObject& anObject, 
74                                               const std::string& aTypeOfAttribute);
75   virtual bool FindAttribute(const SALOMEDSImpl_SObject& anObject, 
76                              DF_Attribute*& anAttribute, 
77                              const std::string& aTypeOfAttribute);
78
79   virtual bool RemoveAttribute(const SALOMEDSImpl_SObject& anObject, const std::string& aTypeOfAttribute);
80
81   virtual bool Addreference(const SALOMEDSImpl_SObject& me, 
82                             const SALOMEDSImpl_SObject& thereferencedObject);
83
84   virtual bool RemoveReference(const SALOMEDSImpl_SObject& me);
85
86   virtual bool SetGUID(const SALOMEDSImpl_SObject& anObject, const std::string& theGUID);
87   virtual bool IsGUID(const SALOMEDSImpl_SObject& anObject, const std::string& theGUID);
88
89   virtual void NewCommand();
90   virtual void CommitCommand();
91   virtual bool HasOpenCommand();
92   virtual void AbortCommand();
93   virtual void Undo();
94   virtual void Redo();
95   bool GetAvailableUndos();
96   bool GetAvailableRedos();
97   bool IsSaved();
98   bool IsModified();
99   virtual int UndoLimit();
100   virtual void UndoLimit(const int);
101
102   void CheckLocked();
103
104   virtual SALOMEDSImpl_Callback* SetOnAddSObject(const SALOMEDSImpl_Callback* theCallback);
105   virtual SALOMEDSImpl_Callback* SetOnRemoveSObject(const SALOMEDSImpl_Callback* theCallback);
106
107   virtual bool SetName(const SALOMEDSImpl_SObject& theSO, const std::string& theValue);
108
109   virtual bool SetComment(const SALOMEDSImpl_SObject& theSO, const std::string& theValue);
110
111   virtual bool SetIOR(const SALOMEDSImpl_SObject& theSO, const std::string& theValue);
112
113   virtual std::string GetErrorCode() { return _errorCode; }
114   virtual bool IsError() { return _errorCode != ""; }
115
116   virtual SALOMEDSImpl_Study* GetOwner() { return _study; }
117 };
118 #endif