Salome HOME
Merge branch 'occ/psutil'
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeIOR.cxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, 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_AttributeIOR.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeIOR.hxx"
28 #include "SALOMEDSImpl_Study.hxx"
29
30 //=======================================================================
31 //function : GetID
32 //purpose  : 
33 //=======================================================================
34
35 const std::string& SALOMEDSImpl_AttributeIOR::GetID () 
36 {
37   static std::string SALOMEDSImpl_AttributeIORID ("92888E01-7074-11d5-A690-0800369C8A03");
38   return SALOMEDSImpl_AttributeIORID;
39 }
40
41 //=======================================================================
42 //function : Set
43 //purpose  : 
44 //=======================================================================
45
46 SALOMEDSImpl_AttributeIOR* SALOMEDSImpl_AttributeIOR::Set (const DF_Label&    L,
47                                                            const std::string& S) 
48 {
49   SALOMEDSImpl_AttributeIOR* A = NULL;
50   if (!(A=(SALOMEDSImpl_AttributeIOR*)L.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID()))) {
51     A = new  SALOMEDSImpl_AttributeIOR(); 
52     L.AddAttribute(A);
53   }
54
55   A->SetValue(S); 
56   return A;
57 }
58
59 //=======================================================================
60 //function : SetValue
61 //purpose  : 
62 //=======================================================================
63 void SALOMEDSImpl_AttributeIOR::SetValue(const std::string& theValue)
64 {
65   CheckLocked();
66
67   Backup();
68   //remove IOR entry in study
69   if(theValue != myString)
70     {
71       SALOMEDSImpl_Study* study=SALOMEDSImpl_Study::GetStudyImpl(Label());
72       study->RegisterGenObj(theValue, Label());
73       study->UnRegisterGenObj(myString, Label());
74       study->DeleteIORLabelMapItem(myString);
75     }
76
77   myString = theValue;
78
79   //add IOR entry in study
80   SALOMEDSImpl_Study::IORUpdated(this);
81   
82   //Reason = 5 means that IOR attribute updated
83   //Used in the gui module to detect that IOR attribure was assigned to the object
84   SetModifyFlag(5);
85 }
86
87 //=======================================================================
88 //function : Value
89 //purpose  : 
90 //=======================================================================
91 std::string SALOMEDSImpl_AttributeIOR::Value() const
92 {
93   return myString;
94 }
95
96 //=======================================================================
97 //function : constructor
98 //purpose  : 
99 //=======================================================================
100 SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
101 :SALOMEDSImpl_GenericAttribute("AttributeIOR")
102 {
103 }
104
105 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
106 {
107   SALOMEDSImpl_Study::UnRegisterGenObj(myString, Label());
108 }
109
110 //=======================================================================
111 //function : ID
112 //purpose  : 
113 //=======================================================================
114
115 const std::string& SALOMEDSImpl_AttributeIOR::ID () const { return GetID(); }
116
117
118 //=======================================================================
119 //function : NewEmpty
120 //purpose  : 
121 //=======================================================================
122
123 DF_Attribute* SALOMEDSImpl_AttributeIOR::NewEmpty () const
124 {  
125   return new SALOMEDSImpl_AttributeIOR(); 
126 }
127
128 //=======================================================================
129 //function : Restore
130 //purpose  : 
131 //=======================================================================
132
133 void SALOMEDSImpl_AttributeIOR::Restore( DF_Attribute* with) 
134 {
135   myString = dynamic_cast<SALOMEDSImpl_AttributeIOR*>(with)->Value();
136   return;
137 }
138
139 //=======================================================================
140 //function : Paste
141 //purpose  : 
142 //=======================================================================
143
144 void SALOMEDSImpl_AttributeIOR::Paste (DF_Attribute* into)
145 {
146   dynamic_cast<SALOMEDSImpl_AttributeIOR*>(into)->SetValue(myString);
147 }
148