Salome HOME
Merge branch 'omu/SalomeLauncher'
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_SComponent.cxx
1 // Copyright (C) 2007-2015  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_SComponent.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_SComponent.hxx"
28 #include "SALOMEDSImpl_AttributeComment.hxx"
29 #include "SALOMEDSImpl_AttributeIOR.hxx" 
30
31 //============================================================================
32 /*! Function : Empty constructor
33  *  Purpose  : 
34  */
35 //============================================================================
36 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent()
37 {
38 }
39
40 //============================================================================
41 /*! Function : Copy constructor
42  *  Purpose  : 
43  */
44 //============================================================================
45 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent(const SALOMEDSImpl_SComponent& theSCO)
46 {
47   _lab   = theSCO._lab;
48   _value = theSCO._value;
49   _type  = theSCO._type;
50   _name  = theSCO._name;
51 }
52
53 //============================================================================
54 /*! Function : constructor
55  *  Purpose  : 
56  */
57 //============================================================================
58 SALOMEDSImpl_SComponent::SALOMEDSImpl_SComponent(const DF_Label& theLabel)
59   :SALOMEDSImpl_SObject(theLabel)
60 {
61 }
62   
63 //============================================================================
64 /*! Function : destructor
65  *  Purpose  : 
66  */
67 //============================================================================
68 SALOMEDSImpl_SComponent::~SALOMEDSImpl_SComponent()
69 {
70 }
71   
72   
73 //============================================================================
74 /*! Function : ComponentDataType
75  *  Purpose  : 
76  */
77 //============================================================================
78 std::string SALOMEDSImpl_SComponent::ComponentDataType()
79 {
80   std::string res = "";
81   SALOMEDSImpl_AttributeComment* type;
82   if ( (type = (SALOMEDSImpl_AttributeComment*)_lab.FindAttribute(SALOMEDSImpl_AttributeComment::GetID())) ) {
83     res = type->Value();
84   }
85
86   return res;
87 }
88   
89
90 //============================================================================
91 /*! Function : ComponentIOR
92  *  Purpose  : 
93  */
94 //============================================================================
95 bool SALOMEDSImpl_SComponent::ComponentIOR(std::string& IOR)
96 {
97   SALOMEDSImpl_AttributeIOR* ior;
98   if (!(ior = (SALOMEDSImpl_AttributeIOR*)_lab.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID())) )
99       return false;
100   IOR = ior->Value();
101   return true;
102 }
103
104
105 //============================================================================
106 /*! Function : IsA
107  *  Purpose  : 
108  */
109 //============================================================================
110 bool SALOMEDSImpl_SComponent::IsA(const DF_Label& theLabel)
111 {
112   // scomponent must contain comment and belong to the 2th depth label
113   if ( theLabel.IsAttribute(SALOMEDSImpl_AttributeComment::GetID()) && theLabel.Depth() == 2) {
114     return true;
115   }
116   return false;
117 }
118
119 //============================================================================
120 /*! Function :  GetPersistentCopy
121  *  Purpose  : 
122  */
123 //============================================================================
124 SALOMEDSImpl_SComponent* SALOMEDSImpl_SComponent::GetPersistentCopy() const
125 {
126   SALOMEDSImpl_SComponent* sco = new SALOMEDSImpl_SComponent;
127   sco->_lab = _lab;
128   sco->_name = _name;
129   sco->_type = _type;
130   sco->_value = _value; 
131   return sco;
132 }