Salome HOME
846cd180e02348a78d67794b60251783d3077255
[modules/geom.git] / src / ShHealOper / ShHealOper_ShapeProcess.cxx
1 // Copyright (C) 2007-2023  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:      ShHealOper_ShapeProcess.cxx
24 // Created:   14.04.04 10:58:04
25 // Author:    Galina KULIKOVA
26 //
27 #include <ShHealOper_ShapeProcess.hxx>
28 #include <ShapeProcessAPI_ApplySequence.hxx>
29 #include <ShapeProcess_Context.hxx>
30 #include <TCollection_AsciiString.hxx>
31 #include <Resource_Manager.hxx>
32 #include <TopoDS_Shape.hxx>
33 #include <TopAbs_ShapeEnum.hxx>
34 #include <TopTools_DataMapOfShapeShape.hxx>
35 #include <ShapeProcess_ShapeContext.hxx>
36 #include <ShapeAnalysis_ShapeTolerance.hxx>
37 #include <Precision.hxx>
38 #include <BRep_Builder.hxx>
39 #include <TopoDS_Iterator.hxx>
40 #include <TColStd_IndexedDataMapOfTransientTransient.hxx>
41 #include <TNaming_CopyShape.hxx>
42 #include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
43 #include <ShapeExtend_MsgRegistrator.hxx>
44 #include <ShapeExtend_DataMapOfShapeListOfMsg.hxx>
45 #include <ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx>
46 #include <Message_ListOfMsg.hxx>
47 #include <Message_ListIteratorOfListOfMsg.hxx>
48 #include <Message_Msg.hxx>
49
50 //=======================================================================
51 //function : ShHealOper_ShapeProcess()
52 //purpose  : Constructor
53 //=======================================================================
54
55 ShHealOper_ShapeProcess::ShHealOper_ShapeProcess (  ) :
56        myOperations(TCollection_AsciiString("ShHealing").ToCString(),
57                     TCollection_AsciiString("ShapeProcess").ToCString())
58 {
59    //myResource = new Resource_Manager("ShHealing");
60    myPrefix = "ShapeProcess";
61    mySaveHistoryMode = Standard_False;
62    myLevel = TopAbs_EDGE;
63    myDone = Standard_False;
64    myOperations.Context()->SetDetalisation ( TopAbs_EDGE );
65 }
66
67 //=======================================================================
68 //function : ShHealOper_ShapeProcess
69 //purpose  : 
70 //=======================================================================
71
72 ShHealOper_ShapeProcess::ShHealOper_ShapeProcess (const TCollection_AsciiString& theNameResource,
73                                                   const TCollection_AsciiString& thePrefix ) :
74   myOperations(theNameResource.ToCString(),thePrefix.ToCString())
75 {
76   //myResource = new Resource_Manager(theNameResource);
77   myPrefix = thePrefix;
78   mySaveHistoryMode = Standard_False;
79   myLevel = TopAbs_EDGE;
80   myDone = Standard_False;
81 }
82
83 //=======================================================================
84 //function : Perform
85 //purpose  :
86 //=======================================================================
87 void ShHealOper_ShapeProcess::Perform(const TopoDS_Shape& theOldShape,
88                                       TopoDS_Shape&       theNewShape)
89 {
90   myMapModifications.Clear();
91   //ShapeProcessAPI_ApplySequence aOperations(myResource,myPrefix.ToCString());
92   //myDone = Standard_False;
93   myOperations.ClearMap();
94   ShapeAnalysis_ShapeTolerance aSatol;
95   Standard_Real ainitTol = aSatol.Tolerance(theOldShape,0);
96
97   // PAL6487: san -- preserve the original shape from being modified
98   TopoDS_Shape anOldShape;
99   TColStd_IndexedDataMapOfTransientTransient aMap;
100   TNaming_CopyShape::CopyTool(theOldShape, aMap, anOldShape);
101   // PAL6487: san -- preserve the original shape from being modified
102
103   theNewShape = myOperations.PrepareShape(anOldShape,mySaveHistoryMode,myLevel);
104   if(mySaveHistoryMode)
105     myMapModifications = myOperations.Map();
106   myDone = !anOldShape.IsSame(theNewShape);
107   if(!myDone) {
108     Standard_Real aendTol =aSatol.Tolerance(theNewShape,0);
109     myDone = (fabs(ainitTol - aendTol) > Precision::Confusion());
110     if ( myDone ) {
111       if ( ainitTol > aendTol )
112         myStatistics.AddModif( "Tolerance fixed (decreased)" );
113       else
114         myStatistics.AddModif( "Tolerance fixed (increased)" );
115     }
116   }
117
118   // fill myStatistics with messages
119   Handle(ShapeExtend_MsgRegistrator) msg = myOperations.Context()->Messages();
120   const ShapeExtend_DataMapOfShapeListOfMsg& shape2msg = msg->MapShape();
121   ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg s2msg( shape2msg );
122   for ( ; s2msg.More(); s2msg.Next() )
123   {
124     const Message_ListOfMsg & msgList = s2msg.Value();
125     Message_ListIteratorOfListOfMsg mIt( msgList );
126     for ( ; mIt.More(); mIt.Next() )
127     {
128       Message_Msg& m = mIt.Value();
129       TCollection_AsciiString txt = m.Get();
130       myStatistics.AddModif( txt.ToCString() );
131     }
132   }
133 }
134
135 //=======================================================================
136 //function : SetOperators
137 //purpose  :
138 //=======================================================================
139
140 void ShHealOper_ShapeProcess::SetOperators(const TColStd_SequenceOfAsciiString& theSeqOperators)
141 {
142   
143   TCollection_AsciiString anameParam(myPrefix);
144   anameParam += ".";
145   anameParam += "exec.op";
146   TCollection_AsciiString aseq;
147   Standard_Integer i =1;
148   for( ; i <= theSeqOperators.Length(); i++) {
149     aseq += theSeqOperators.Value(i);
150     aseq += " ";
151   }
152     
153   myOperations.Context()->ResourceManager()->SetResource(anameParam.ToCString(),aseq.ToCString());
154 }
155 //=======================================================================
156 //function : SetParameter
157 //purpose  : 
158 //=======================================================================
159
160 void ShHealOper_ShapeProcess::SetParameter(const TCollection_AsciiString& theNameParam,
161                                            const TCollection_AsciiString& theVal)
162 {
163   TCollection_AsciiString anameParam(myPrefix);
164   anameParam += ".";
165   anameParam+= theNameParam;
166   if(theVal.IsRealValue())
167     myOperations.Context()->ResourceManager()->
168       SetResource(anameParam.ToCString(),theVal.RealValue());
169   else if(theVal.IsIntegerValue())
170     myOperations.Context()->ResourceManager()->
171       SetResource(anameParam.ToCString(),theVal.IntegerValue());
172   else
173     myOperations.Context()->ResourceManager()->
174       SetResource(anameParam.ToCString(),theVal.ToCString());
175
176 }
177 //=======================================================================
178 //function : GetOperators
179 //purpose  : 
180 //=======================================================================
181
182 Standard_Boolean ShHealOper_ShapeProcess::GetOperators(TColStd_SequenceOfAsciiString& theSeqOperators)
183 {
184   TCollection_AsciiString nameSeq(myPrefix);
185   nameSeq +=".exec.op";
186   if(!myOperations.Context()->ResourceManager()->Find(nameSeq.ToCString()))
187     return Standard_False;
188   
189   TCollection_AsciiString seqoper = myOperations.Context()->ResourceManager()->Value(nameSeq.ToCString());
190   Standard_Integer i;
191   for ( i=1; ; i++ ) {
192     TCollection_AsciiString anOper = seqoper.Token ( " \t,;", i );
193     if ( anOper.Length() <=0 ) break;
194     theSeqOperators.Append(anOper);
195   }
196   return (theSeqOperators.Length());
197 }
198 //=======================================================================
199 //function : GetParameter
200 //purpose  : 
201 //=======================================================================
202
203 Standard_Boolean ShHealOper_ShapeProcess::GetParameter(const TCollection_AsciiString& theNameParam,
204                                                        TCollection_AsciiString& theVal)
205 {
206   TCollection_AsciiString namePar(myPrefix);
207   namePar += ".";
208   namePar += theNameParam;
209   if(!myOperations.Context()->ResourceManager()->Find(namePar.ToCString()))
210     return Standard_False;
211
212   theVal = myOperations.Context()->ResourceManager()->Value(namePar.ToCString());
213   return Standard_True;
214 }