Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / GEOMImpl / GEOMImpl_CopyDriver.cxx
1
2 using namespace std;
3 #include "GEOMImpl_CopyDriver.hxx"
4 #include "GEOMImpl_ICopy.hxx"
5 #include "GEOMImpl_Types.hxx"
6 #include "GEOM_Function.hxx"
7
8 #include <BRep_Tool.hxx>
9 #include <gp_Pnt.hxx>
10 #include <TopoDS.hxx>
11 #include <TopoDS_Shape.hxx>
12 #include <TopoDS_Vertex.hxx>
13 #include <TopAbs.hxx>
14 #include <TNaming_CopyShape.hxx>
15 #include <TColStd_IndexedDataMapOfTransientTransient.hxx>
16
17 //=======================================================================
18 //function : GetID
19 //purpose  :
20 //======================================================================= 
21 const Standard_GUID& GEOMImpl_CopyDriver::GetID()
22 {
23   static Standard_GUID aCopyDriver("FF1BBB53-5D14-4df2-980B-3A668264EA16");
24   return aCopyDriver; 
25 }
26
27
28 //=======================================================================
29 //function : GEOMImpl_CopyDriver
30 //purpose  : 
31 //=======================================================================
32 GEOMImpl_CopyDriver::GEOMImpl_CopyDriver() 
33 {
34 }
35
36 //=======================================================================
37 //function : Execute
38 //purpose  :
39 //======================================================================= 
40 Standard_Integer GEOMImpl_CopyDriver::Execute(TFunction_Logbook& log) const
41 {
42   if (Label().IsNull()) return 0;    
43   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
44
45   Standard_Integer aType = aFunction->GetType();
46
47   GEOMImpl_ICopy aCI (aFunction);
48   TopoDS_Shape aCopy;
49   
50   if(aType == COPY_WITH_REF) {
51   
52     Handle(GEOM_Function) aRefFunction = aCI.GetOriginal();
53     if (aRefFunction.IsNull()) return 0;
54     TopoDS_Shape anOriginal = aRefFunction->GetValue();
55
56     TColStd_IndexedDataMapOfTransientTransient aMap;
57   
58     TNaming_CopyShape::CopyTool(anOriginal, aMap, aCopy);
59   }
60   else if(aType == COPY_WITHOUT_REF) {
61     aCopy = aFunction->GetValue();
62   }
63   
64   if (aCopy.IsNull()) return 0;
65
66   aFunction->SetValue(aCopy);
67
68   log.SetTouched(Label()); 
69
70   return 1;    
71 }
72
73
74 //=======================================================================
75 //function :  GEOMImpl_CopyDriver_Type_
76 //purpose  :
77 //======================================================================= 
78 Standard_EXPORT Handle_Standard_Type& GEOMImpl_CopyDriver_Type_()
79 {
80
81   static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
82   if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
83   static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
84   if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared); 
85   static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
86   if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
87  
88
89   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
90   static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_CopyDriver",
91                                                          sizeof(GEOMImpl_CopyDriver),
92                                                          1,
93                                                          (Standard_Address)_Ancestors,
94                                                          (Standard_Address)NULL);
95
96   return _aType;
97 }
98
99 //=======================================================================
100 //function : DownCast
101 //purpose  :
102 //======================================================================= 
103 const Handle(GEOMImpl_CopyDriver) Handle(GEOMImpl_CopyDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
104 {
105   Handle(GEOMImpl_CopyDriver) _anOtherObject;
106
107   if (!AnObject.IsNull()) {
108      if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_CopyDriver))) {
109        _anOtherObject = Handle(GEOMImpl_CopyDriver)((Handle(GEOMImpl_CopyDriver)&)AnObject);
110      }
111   }
112
113   return _anOtherObject ;
114 }