1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #ifndef _GEOM_Function_HeaderFile
23 #define _GEOM_Function_HeaderFile
25 #ifndef _Standard_TypeMismatch_HeaderFile
26 #include <Standard_TypeMismatch.hxx>
28 #ifndef _Standard_HeaderFile
29 #include <Standard.hxx>
31 #ifndef _Standard_Macro_HeaderFile
32 #include <Standard_Macro.hxx>
34 #ifndef _Handle_MMgt_TShared_HeaderFile
35 #include <Handle_MMgt_TShared.hxx>
37 #ifndef _MMgt_TShared_HeaderFile
38 #include <MMgt_TShared.hxx>
40 #ifndef _Standard_GUID_HeaderFile
41 #include <Standard_GUID.hxx>
43 #ifndef _TopoDS_Shape_HeaderFile
44 #include <TopoDS_Shape.hxx>
46 #ifndef _TDF_Label_HeaderFile
47 #include <TDF_Label.hxx>
49 #ifndef _TDF_LabelSequence_HeaderFile
50 #include <TDF_LabelSequence.hxx>
52 #ifndef _TColStd_HArray1OfExtendedString_HeaderFile
53 #include <TColStd_HArray1OfExtendedString.hxx>
56 class Handle_TColStd_HArray1OfReal;
57 class Handle_TColStd_HArray1OfInteger;
58 class Handle_TColStd_HSequenceOfTransient;
59 class Handle_TColStd_HArray1OfExtendedString;
61 class Standard_Transient;
62 class Handle_Standard_Type;
63 class Handle(MMgt_TShared);
66 #include <TCollection_AsciiString.hxx>
69 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(GEOM_Function);
71 class Handle(GEOM_Function) : public Handle(MMgt_TShared) {
73 inline void* operator new(size_t,void* anAddress)
77 inline void* operator new(size_t size)
79 return Standard::Allocate(size);
81 inline void operator delete(void *anAddress)
83 if (anAddress) Standard::Free((Standard_Address&)anAddress);
86 Handle(GEOM_Function)():Handle(MMgt_TShared)() {}
87 Handle(GEOM_Function)(const Handle(GEOM_Function)& aHandle) : Handle(MMgt_TShared)(aHandle)
91 Handle(GEOM_Function)(const GEOM_Function* anItem) : Handle(MMgt_TShared)((MMgt_TShared *)anItem)
95 Handle(GEOM_Function)& operator=(const Handle(GEOM_Function)& aHandle)
97 Assign(aHandle.Access());
101 Handle(GEOM_Function)& operator=(const GEOM_Function* anItem)
103 Assign((Standard_Transient *)anItem);
107 GEOM_Function* operator->()
109 return (GEOM_Function *)ControlAccess();
112 GEOM_Function* operator->() const
114 return (GEOM_Function *)ControlAccess();
117 Standard_EXPORT ~Handle(GEOM_Function)() {};
119 Standard_EXPORT static const Handle(GEOM_Function) DownCast(const Handle(Standard_Transient)& AnObject);
122 class GEOM_Function : public MMgt_TShared
127 inline void* operator new(size_t,void* anAddress)
131 inline void* operator new(size_t size)
133 return Standard::Allocate(size);
135 inline void operator delete(void *anAddress)
137 if (anAddress) Standard::Free((Standard_Address&)anAddress);
142 Standard_EXPORT friend Handle_Standard_Type& GEOM_Function_Type_();
143 Standard_EXPORT const Handle(Standard_Type)& DynamicType() const { return STANDARD_TYPE(GEOM_Function) ; }
144 Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)& AType) const { return (STANDARD_TYPE(GEOM_Function) == AType || MMgt_TShared::IsKind(AType)); }
148 GEOM_Function(const TDF_Label& theEntry) { _label = theEntry; }
152 //Returns a GUID for a function tree
153 Standard_EXPORT static const Standard_GUID& GetFunctionTreeID();
155 //Returns the ID which is associated with a reference to another function
156 Standard_EXPORT static const Standard_GUID& GetDependencyID();
158 //Finds and returns a function located on a label theEntry
159 Standard_EXPORT static Handle(GEOM_Function) GetFunction(const TDF_Label& theEntry);
162 Standard_EXPORT GEOM_Function(const TDF_Label& theEntry, const Standard_GUID& theGUID, int theType);
163 Standard_EXPORT ~GEOM_Function() {;}
165 Standard_EXPORT TDF_Label GetOwnerEntry();
167 //Access to properties
169 //Returns a result of the function built by the function Driver
170 Standard_EXPORT TopoDS_Shape GetValue();
172 //Sets the function result
173 Standard_EXPORT void SetValue(TopoDS_Shape& theShape);
175 //Returns a function entry in the OCAF document
176 Standard_EXPORT TDF_Label& GetEntry() { return _label; }
178 //Returns the type of the function
179 Standard_EXPORT int GetType();
181 //Returns a function Driver GUID
182 Standard_EXPORT Standard_GUID GetDriverGUID();
184 //Returns aPython description of the function
185 Standard_EXPORT TCollection_AsciiString GetDescription();
187 //Sets aPython description of the function
188 Standard_EXPORT void SetDescription(const TCollection_AsciiString& theDescription);
190 //Access to arguments
192 //Sets a real argument at position thePosition
193 Standard_EXPORT void SetReal(int thePosition, double theValue);
195 //Returns a real argument at position thePosition
196 Standard_EXPORT double GetReal(int thePosition);
198 //Sets a real array argument at position thePosition
199 Standard_EXPORT void SetRealArray(int thePosition, const Handle(TColStd_HArray1OfReal)& theArray);
201 //Returns a real array argument at position thePosition
202 Standard_EXPORT Handle(TColStd_HArray1OfReal) GetRealArray(int thePosition);
204 //Sets an integer argument at position thePosition
205 Standard_EXPORT void SetInteger(int thePosition, int theValue);
207 //Returns an integer argument at position thePosition
208 Standard_EXPORT int GetInteger(int thePosition);
210 //Sets an integer array argument at position thePosition
211 Standard_EXPORT void SetIntegerArray(int thePosition, const Handle(TColStd_HArray1OfInteger)& theArray);
213 //Returns an integer array argument at position thePosition
214 Standard_EXPORT Handle(TColStd_HArray1OfInteger) GetIntegerArray(int thePosition);
216 //Sets a reference to other function argument at position thePosition
217 Standard_EXPORT void SetReference(int thePosition, Handle(GEOM_Function) theReference);
219 //Sets a string argument at position thePosition
220 Standard_EXPORT void SetString(int thePosition, const TCollection_AsciiString& theValue);
222 //Returns a string argument at position thePosition
223 Standard_EXPORT TCollection_AsciiString GetString(int thePosition);
225 //Returns a reference to other function argument at position thePosition
226 Standard_EXPORT Handle(GEOM_Function) GetReference(int thePosition);
228 //Set an array of ExtendedString
229 Standard_EXPORT void SetStringArray(int thePosition, const Handle(TColStd_HArray1OfExtendedString)& theArray);
231 //Returns the array of ExtendedString
232 Standard_EXPORT Handle(TColStd_HArray1OfExtendedString) GetStringArray(int thePosition);
234 //Returns a GUID for a references tree
235 Standard_EXPORT static const Standard_GUID& GetReferencesTreeID();
237 //Sets a list of references to other function arguments at position thePosition
238 Standard_EXPORT void SetReferenceList (int thePosition,
239 const Handle(TColStd_HSequenceOfTransient)& theRefList);
241 //Returns a list of references to other function arguments at position thePosition
242 Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetReferenceList (int thePosition);
244 //Sets a TopoDS_Shape argument at position thePosition
245 //void SetShape(int thePosition, const TopoDS_Shape& theShape);
247 //Returns a TopoDS_Shape argument at position thePosition
248 //TopoDS_Shape GetShape(int thePosition);
250 //Returns true if the last method succided
251 Standard_EXPORT bool IsDone() { return _isDone; }
253 //Returns a sequence of the external dependencies of this function
254 Standard_EXPORT void GetDependency(TDF_LabelSequence& theSeq);
256 //Returns top label of this function's history tree
257 Standard_EXPORT TDF_Label GetHistoryEntry (const Standard_Boolean create = Standard_True);
259 //Returns history label, corresponding to the label,
260 //on which a reference on argument is stored
261 Standard_EXPORT TDF_Label GetArgumentHistoryEntry (const TDF_Label& theArgumentRefEntry,
262 const Standard_Boolean create = Standard_True);