Salome HOME
Copyrights update
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeUserID.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/
19 //
20 //  File   : SALOMEDSImpl_AttributeUAttribute.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDSImpl_AttributeUserID.hxx"
26
27 using namespace std;
28
29 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeUserID, SALOMEDSImpl_GenericAttribute )
30 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeUserID, SALOMEDSImpl_GenericAttribute )
31
32 Handle(SALOMEDSImpl_AttributeUserID) SALOMEDSImpl_AttributeUserID::Set (const TDF_Label& L, const Standard_GUID& ID) 
33 {
34   Handle(SALOMEDSImpl_AttributeUserID) A;
35   if (!L.FindAttribute(ID, A)) {
36     A = new  SALOMEDSImpl_AttributeUserID(); 
37     A->SetValue(ID);
38     L.AddAttribute(A);
39   }
40   return A;
41 }
42
43 //=======================================================================
44 //function : ID
45 //purpose  :
46 //=======================================================================
47 const Standard_GUID& SALOMEDSImpl_AttributeUserID::ID() const
48 { return myID; }
49
50
51 //=======================================================================
52 //function : SetValue
53 //purpose  :
54 //=======================================================================
55 void SALOMEDSImpl_AttributeUserID::SetValue( const Standard_GUID&  guid)
56 {
57   CheckLocked();
58   if(myID == guid) return;
59
60   Backup();
61   myID = guid;
62   
63   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
64 }        
65
66 //=======================================================================
67 //function : NewEmpty
68 //purpose  :
69 //=======================================================================
70 Handle(TDF_Attribute) SALOMEDSImpl_AttributeUserID::NewEmpty () const
71 {
72   Handle(SALOMEDSImpl_AttributeUserID) A = new SALOMEDSImpl_AttributeUserID();
73   A->SetValue(myID);
74   return A;
75 }
76
77 //=======================================================================
78 //function : Restore
79 //purpose  :
80 //=======================================================================
81 void SALOMEDSImpl_AttributeUserID::Restore(const Handle(TDF_Attribute)& with)
82 {
83   Handle(SALOMEDSImpl_AttributeUserID) A = Handle(SALOMEDSImpl_AttributeUserID)::DownCast(with);
84   SetValue( A->ID() );
85 }
86
87 //=======================================================================
88 //function : Paste
89 //purpose  :
90 //=======================================================================
91 void SALOMEDSImpl_AttributeUserID::Paste (const Handle(TDF_Attribute)& into,
92                                           const Handle(TDF_RelocationTable)& RT) const
93 {
94   Handle(SALOMEDSImpl_AttributeUserID) A = Handle(SALOMEDSImpl_AttributeUserID)::DownCast(into);
95   A->SetValue( myID );
96 }    
97
98 TCollection_AsciiString SALOMEDSImpl_AttributeUserID::Type() 
99 {
100
101   char* aUAttrName = new char[60];
102   char aGUID[40];
103   ID().ToCString(aGUID);
104   sprintf(aUAttrName, "AttributeUserID_%s",aGUID);
105
106   TCollection_AsciiString ret(aUAttrName);
107   delete aUAttrName;
108
109   return ret;
110 }