c699d5689bec9cdc33bbedf4427555f095a08a43
[occt.git] / src / BRepCheck / BRepCheck_Result.cxx
1 // Created on: 1995-12-07
2 // Created by: Jacques GOUSSARD
3 // Copyright (c) 1995-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 <BRepCheck.hxx>
19 #include <BRepCheck_Result.hxx>
20 #include <Standard_NoSuchObject.hxx>
21 #include <Standard_Type.hxx>
22 #include <TopoDS_Shape.hxx>
23
24 //=======================================================================
25 //function : BRepCheck_Result
26 //purpose  : 
27 //=======================================================================
28 BRepCheck_Result::BRepCheck_Result() :
29    myMin(Standard_False),myBlind(Standard_False)
30 {
31 }
32
33
34 //=======================================================================
35 //function : Init
36 //purpose  : 
37 //=======================================================================
38
39 void BRepCheck_Result::Init(const TopoDS_Shape& S)
40 {
41   myShape = S;
42   myMin = Standard_False;
43   myBlind = Standard_False;
44   myMap.Clear();
45   Minimum();
46 }
47
48 //=======================================================================
49 //function : SetFailStatus
50 //purpose  : 
51 //=======================================================================
52 void BRepCheck_Result::SetFailStatus(const TopoDS_Shape& S) 
53 {
54   if(!myMap.IsBound(S)) {
55     BRepCheck_ListOfStatus thelist;
56     myMap.Bind(S, thelist);
57   }
58   BRepCheck::Add(myMap(S), BRepCheck_CheckFail);
59 }
60
61
62 //=======================================================================
63 //function : StatusOnShape
64 //purpose  : 
65 //=======================================================================
66
67 const BRepCheck_ListOfStatus& BRepCheck_Result::StatusOnShape
68    (const TopoDS_Shape& S)
69 {
70   if (!myMap.IsBound(S)) {
71     InContext(S);
72   }
73   return myMap(S);
74 }
75
76
77 //=======================================================================
78 //function : InitContextIterator
79 //purpose  : 
80 //=======================================================================
81
82 void BRepCheck_Result::InitContextIterator()
83 {
84   myIter.Initialize(myMap);
85   // At least 1 element : the Shape itself
86   if (myIter.Key().IsSame(myShape)) {
87     myIter.Next();
88   }
89 }
90
91
92 //=======================================================================
93 //function : NextShapeInContext
94 //purpose  : 
95 //=======================================================================
96
97 void BRepCheck_Result::NextShapeInContext()
98 {
99   myIter.Next();
100   if (myIter.More() && myIter.Key().IsSame(myShape)) {
101     myIter.Next();
102   }
103 }