Salome HOME
Migration to OCCT 7.0
[modules/geom.git] / src / GEOM / GEOM_BaseDriver.cxx
1 // Copyright (C) 2007-2016  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      : GEOM_BaseDriver.cxx
24 // Created   : Thu Jun  6 15:44:27 2013
25 // Author    : Edward AGAPOV (eap)
26
27 #include "GEOM_BaseDriver.hxx"
28
29 #include "GEOM_Function.hxx"
30 #include "GEOM_Object.hxx"
31 #include "GEOM_Engine.hxx"
32
33 #include <TDataStd_Name.hxx>
34 #include <TDocStd_Owner.hxx>
35
36 OCCT_IMPLEMENT_STANDARD_RTTIEXT(GEOM_BaseDriver,TFunction_Driver);
37
38 //================================================================================
39 /*!
40  * Returns document id
41  */
42 //================================================================================
43 int GEOM_BaseDriver::GetDocID() const
44 {
45   int docId = 0;
46   if (!Label().IsNull()) {
47     Handle(TDocStd_Document) aDoc = TDocStd_Owner::GetDocument(Label().Data());
48     docId = GEOM_Engine::GetEngine()->GetDocID(aDoc);
49   }
50   return docId;
51 }
52
53 //================================================================================
54 /*!
55  * \brief Returns a name of creation operation and names and values of creation parameters
56  */
57 //================================================================================
58
59 // bool GEOM_BaseDriver::GetCreationInformation(std::string&             theOperationName,
60 //                                              std::vector<GEOM_Param>& theParams) = 0;
61
62 //================================================================================
63 /*!
64  * \brief Adds GEOM_Param to params and sets its name
65  *
66  * This method is safer than resizing the params vector and accessing to its items
67  */
68 //================================================================================
69
70 GEOM_Param& GEOM_BaseDriver::AddParam(std::vector<GEOM_Param>& params,
71                                       const char*              name)
72 {
73   GEOM_Param p;
74   p.Set( name );
75   params.push_back( p );
76   return params.back();
77 }
78
79 //================================================================================
80 /*!
81  * \brief Appends a GEOM_Function value
82  */
83 //================================================================================
84
85 GEOM_Param & GEOM_Param::operator<<( const Handle(Standard_Transient)& fun )
86 {
87   return *this << Handle(GEOM_Function)::DownCast( fun );
88 }
89
90 //================================================================================
91 /*!
92  * \brief Appends a GEOM_Function value
93  */
94 //================================================================================
95
96 GEOM_Param & GEOM_Param::operator<<( const Handle(GEOM_Function)& fun )
97 {
98   if ( !fun.IsNull() )
99   {
100     TDF_Label label = fun->GetOwnerEntry();
101     Handle(GEOM_Object) obj = GEOM_Object::GetObject( label );
102     if ( !obj.IsNull() )
103     {
104       TopoDS_Shape s = obj->GetValue();
105       (*this) << ( s.IsNull() ? TopAbs_SHAPE : s.ShapeType() );
106
107       TCollection_AsciiString entry = obj->GetAuxData();
108       TCollection_ExtendedString name;
109       {
110         Handle(TDataStd_Name) aNameAttr;
111         if( obj->GetEntry().FindAttribute(TDataStd_Name::GetID(), aNameAttr))
112           name = aNameAttr->Get();
113       }
114       if ( name.Length() > 0 && entry.Length() > 0 )
115         (*this) << "('" <<  name << "'," << entry << ")";
116       else if ( name.Length() > 0 )
117         (*this) << "('" << name << "')";
118       else if ( entry.Length() > 0 )
119         (*this) << "(" << entry << ")";
120     }
121   }
122   return *this;
123 }
124
125 //================================================================================
126 /*!
127  * \brief Appends several GEOM_Function's to the value
128  */
129 //================================================================================
130
131 GEOM_Param & GEOM_Param::operator<<( const Handle(TColStd_HSequenceOfTransient)& funs )
132 {
133   if ( !funs.IsNull() )
134   {
135     if ( funs->Length() > 1 )
136       (*this) << funs->Length() << " objects: ";
137     for ( int i = 1; i <= funs->Length(); ++i )
138       (*this) << funs->Value( i ) << " ";
139   }
140   return *this;
141 }
142
143 template <class HSEQ> void appendSeq( GEOM_Param& param,
144                                       const HSEQ& seq,
145                                       int         iLow,
146                                       int         iUp)
147 {
148   int len = 1 + iUp - iLow;
149   if ( len > 1 )
150     param << len << " items: ";
151   for ( ; iLow <= iUp; ++iLow )
152     param << seq->Value( iLow ) << " ";
153 }
154
155 //================================================================================
156 /*!
157  * \brief Appends several int's to the value
158  */
159 //================================================================================
160
161 GEOM_Param & GEOM_Param::operator<<( const Handle(TColStd_HArray1OfInteger)& vals )
162 {
163   if ( !vals.IsNull() )
164     appendSeq( *this, vals, vals->Lower(), vals->Upper() );
165   return *this;
166 }
167
168 //================================================================================
169 /*!
170  * \brief Appends TopAbs_ShapeEnum to the value
171  */
172 //================================================================================
173
174 GEOM_Param & GEOM_Param::operator<<( TopAbs_ShapeEnum type )
175 {
176   const char* str[] = {
177     "Compound","Compsolid","Solid","Shell","Face","Wire","Edge","Vertex","Shape"
178   };
179   if ( 0 <= type && type <= TopAbs_SHAPE )
180     (*this) << str[type];
181   else
182     (*this) << "TopAbs_ShapeEnum(" << type << ")";
183   return *this;
184 }
185
186 //================================================================================
187 /*!
188  * \brief Appends TopAbs_State to the value
189  */
190 //================================================================================
191
192 GEOM_Param & GEOM_Param::operator<<( TopAbs_State state )
193 {
194   const char* str[] = {"IN","OUT","ON","UNKNOWN"};
195   if ( 0 <= state && state <= TopAbs_UNKNOWN )
196     (*this) << str[state];
197   else
198     (*this) << "TopAbs_State(" << state << ")";
199   return *this;
200 }