0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / ShapeProcessAPI / ShapeProcessAPI_ApplySequence.cxx
1 // Created on: 1999-06-22
2 // Created by: data exchange team
3 // Copyright (c) 1999-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <Message_Messenger.hxx>
19 #include <Message_Msg.hxx>
20 #include <Resource_Manager.hxx>
21 #include <ShapeProcess.hxx>
22 #include <ShapeProcess_OperLibrary.hxx>
23 #include <ShapeProcess_ShapeContext.hxx>
24 #include <ShapeProcessAPI_ApplySequence.hxx>
25 #include <TCollection_AsciiString.hxx>
26 #include <TopoDS_Iterator.hxx>
27 #include <TopoDS_Shape.hxx>
28 #include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
29
30 //=======================================================================
31 //function : ShapeProcessAPI_ApplySequence
32 //purpose  : 
33 //=======================================================================
34 ShapeProcessAPI_ApplySequence::ShapeProcessAPI_ApplySequence(const Standard_CString rscName, 
35                                                              const Standard_CString seqName)
36 {
37
38   myContext = new ShapeProcess_ShapeContext(rscName);
39   myContext->SetDetalisation ( TopAbs_FACE );
40   TCollection_AsciiString str ( seqName );
41
42   // initialize operators
43   ShapeProcess_OperLibrary::Init ();
44   
45   mySeq = str;
46 }
47
48 //=======================================================================
49 //function : Context
50 //purpose  : 
51 //=======================================================================
52
53 Handle(ShapeProcess_ShapeContext)& ShapeProcessAPI_ApplySequence::Context()
54 {
55   return myContext;
56 }
57
58 //=======================================================================
59 //function : PrepareShape
60 //purpose  : 
61 //=======================================================================
62
63 TopoDS_Shape ShapeProcessAPI_ApplySequence::PrepareShape(const TopoDS_Shape& shape,
64                                                          const Standard_Boolean /*fillmap*/,
65                                                          const TopAbs_ShapeEnum /*until*/)
66 {
67   Handle(Resource_Manager) rsc = myContext->ResourceManager();
68   myContext->Init(shape);
69   
70   TCollection_AsciiString str(mySeq);
71   str += ".exec.op";
72   if ( rsc->Find ( str.ToCString() ) ) {
73     ShapeProcess::Perform ( myContext, mySeq.ToCString() );
74   }
75   
76   return myContext->Result();
77 }
78
79 //=======================================================================
80 //function : ClearMap
81 //purpose  : 
82 //=======================================================================
83
84  void ShapeProcessAPI_ApplySequence::ClearMap() 
85 {
86   //myContext->Map().Clear();
87 }
88
89 //=======================================================================
90 //function : Map
91 //purpose  : 
92 //=======================================================================
93
94 const TopTools_DataMapOfShapeShape& ShapeProcessAPI_ApplySequence::Map() const
95 {
96   return myContext->Map();
97 }
98
99 //=======================================================================
100 //function : PrintPreparationResult
101 //purpose  : 
102 //=======================================================================
103
104 void ShapeProcessAPI_ApplySequence::PrintPreparationResult () const
105 {
106   Standard_Integer SS = 0, SN = 0, FF = 0, FS = 0, FN = 0;
107   for (TopTools_DataMapIteratorOfDataMapOfShapeShape It (myContext->Map()); It.More(); It.Next()) {
108     TopoDS_Shape keyshape = It.Key(), valueshape = It.Value();
109     if (keyshape.ShapeType() == TopAbs_SHELL) {
110       if (valueshape.IsNull()) SN++;
111       else SS++;
112     }
113     else if (keyshape.ShapeType() == TopAbs_FACE) {
114       if (valueshape.IsNull()) FN++;
115       else if (valueshape.ShapeType() == TopAbs_SHELL) FS++;
116       else FF++;
117     }
118   }
119   
120   Handle(Message_Messenger) aMessenger = myContext->Messenger();
121
122   // mapping
123   Message_Msg EPMSG100 ("PrResult.Print.MSG100"); //Mapping:
124   aMessenger->Send (EPMSG100, Message_Info, Standard_True);
125   Message_Msg TPMSG50 ("PrResult.Print.MSG50"); //  Shells:
126   aMessenger->Send (TPMSG50, Message_Info, Standard_True);
127   Message_Msg EPMSG110 ("PrResult.Print.MSG110"); //    Result is Shell                 : %d
128   EPMSG110.Arg (SS);
129   aMessenger->Send (EPMSG110, Message_Info, Standard_True);
130   Message_Msg EPMSG150 ("PrResult.Print.MSG150"); //    No Result                       : %d
131   EPMSG150.Arg (SN);
132   aMessenger->Send (EPMSG150, Message_Info, Standard_True);
133   
134   TCollection_AsciiString tmp110 (EPMSG110.Original()), tmp150  (EPMSG150.Original());
135   EPMSG110.Set (tmp110.ToCString());
136   EPMSG150.Set (tmp150.ToCString());
137
138   Message_Msg TPMSG55 ("PrResult.Print.MSG55"); //  Faces:
139   aMessenger->Send (TPMSG55, Message_Info, Standard_True);
140   Message_Msg EPMSG115 ("PrResult.Print.MSG115"); //    Result is Face                  : %d
141   EPMSG115.Arg (FF);
142   aMessenger->Send (EPMSG115, Message_Info, Standard_True);
143   EPMSG110.Arg (FS);
144   aMessenger->Send (EPMSG110, Message_Info, Standard_True);
145   EPMSG150.Arg (FN);
146   aMessenger->Send (EPMSG150, Message_Info, Standard_True);
147   
148   // preparation ratio
149   Standard_Real SPR = 1, FPR = 1;
150   Standard_Integer STotalR = SS, FTotalR  = FF + FS;
151   Standard_Integer NbS = STotalR + SN, NbF = FTotalR + FN;
152   if (NbS > 0) SPR = 1. * (NbS - SN) / NbS;
153   if (NbF > 0) FPR = 1. * (NbF - FN) / NbF;
154   Message_Msg PMSG200 ("PrResult.Print.MSG200"); //Preparation ratio:
155   aMessenger->Send (PMSG200, Message_Info, Standard_True);
156   Message_Msg PMSG205 ("PrResult.Print.MSG205"); //  Shells: %d per cent
157   PMSG205.Arg ((Standard_Integer) (100 * SPR));
158   aMessenger->Send (PMSG205, Message_Info, Standard_True);
159   Message_Msg PMSG210 ("PrResult.Print.MSG210"); //  Faces : %d per cent
160   PMSG210.Arg ((Standard_Integer) (100 * FPR));
161   aMessenger->Send (PMSG210, Message_Info, Standard_True);
162 }
163