Salome HOME
BugID: PAL10141, added a possibility to lock the study by several processes.
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributePersistentRef.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDSImpl_AttributePersistentRef.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDSImpl_AttributePersistentRef.hxx"
26 #include <Standard_GUID.hxx>
27
28 using namespace std;
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributePersistentRef, SALOMEDSImpl_GenericAttribute )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributePersistentRef, SALOMEDSImpl_GenericAttribute )
32
33 //=======================================================================
34 //function : GetID
35 //purpose  : 
36 //=======================================================================
37
38 const Standard_GUID& SALOMEDSImpl_AttributePersistentRef::GetID () 
39 {
40   static Standard_GUID SALOMEDSImpl_AttributePersistentRefID ("92888E06-7074-11d5-A690-0800369C8A03");
41   return SALOMEDSImpl_AttributePersistentRefID;
42 }
43
44
45
46 //=======================================================================
47 //function : Set
48 //purpose  : 
49 //=======================================================================
50
51 Handle(SALOMEDSImpl_AttributePersistentRef) SALOMEDSImpl_AttributePersistentRef::Set (const TDF_Label& L,
52                                                                                       const TCollection_ExtendedString& S)
53 {
54   Handle(SALOMEDSImpl_AttributePersistentRef) A;
55   if (!L.FindAttribute(SALOMEDSImpl_AttributePersistentRef::GetID(),A)) {
56     A = new  SALOMEDSImpl_AttributePersistentRef(); 
57     L.AddAttribute(A);
58   }
59   
60   A->SetValue (S); 
61   return A;
62 }
63
64
65 //=======================================================================
66 //function : constructor
67 //purpose  : 
68 //=======================================================================
69 SALOMEDSImpl_AttributePersistentRef::SALOMEDSImpl_AttributePersistentRef()
70 :SALOMEDSImpl_GenericAttribute("AttributePersistentRef")
71 {
72 }
73
74 //=======================================================================
75 //function : ID
76 //purpose  : 
77 //=======================================================================
78
79 const Standard_GUID& SALOMEDSImpl_AttributePersistentRef::ID () const { return GetID(); }
80
81
82 //=======================================================================
83 //function : SetValue
84 //purpose  :
85 //=======================================================================
86 void SALOMEDSImpl_AttributePersistentRef::SetValue (const TCollection_ExtendedString& S)
87 {
88   CheckLocked();
89
90   if(myString == S) return;
91
92   Backup();
93
94   myString = S;
95   
96   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
97 }
98
99 //=======================================================================
100 //function : NewEmpty
101 //purpose  : 
102 //=======================================================================
103
104 Handle(TDF_Attribute) SALOMEDSImpl_AttributePersistentRef::NewEmpty () const
105 {  
106   return new SALOMEDSImpl_AttributePersistentRef(); 
107 }
108
109 //=======================================================================
110 //function : Restore
111 //purpose  : 
112 //=======================================================================
113
114 void SALOMEDSImpl_AttributePersistentRef::Restore(const Handle(TDF_Attribute)& with) 
115 {
116   myString = Handle(SALOMEDSImpl_AttributePersistentRef)::DownCast (with)->Value ();
117 }
118
119 //=======================================================================
120 //function : Paste
121 //purpose  : 
122 //=======================================================================
123
124 void SALOMEDSImpl_AttributePersistentRef::Paste (const Handle(TDF_Attribute)& into,
125                                                  const Handle(TDF_RelocationTable)& RT) const
126 {
127   Handle(SALOMEDSImpl_AttributePersistentRef)::DownCast (into)->SetValue(myString);
128 }
129