0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[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 IMPLEMENT_STANDARD_RTTIEXT(BRepCheck_Result,Standard_Transient)
25
26 //=======================================================================
27 //function : BRepCheck_Result
28 //purpose  : 
29 //=======================================================================
30 BRepCheck_Result::BRepCheck_Result() :
31    myMin(Standard_False),myBlind(Standard_False)
32 {
33 }
34
35
36 //=======================================================================
37 //function : Init
38 //purpose  : 
39 //=======================================================================
40
41 void BRepCheck_Result::Init(const TopoDS_Shape& S)
42 {
43   myShape = S;
44   myMin = Standard_False;
45   myBlind = Standard_False;
46   myMap.Clear();
47   Minimum();
48 }
49
50 //=======================================================================
51 //function : SetFailStatus
52 //purpose  : 
53 //=======================================================================
54 void BRepCheck_Result::SetFailStatus(const TopoDS_Shape& S) 
55 {
56   if(!myMap.IsBound(S)) {
57     BRepCheck_ListOfStatus thelist;
58     myMap.Bind(S, thelist);
59   }
60   BRepCheck::Add(myMap(S), BRepCheck_CheckFail);
61 }
62
63
64 //=======================================================================
65 //function : StatusOnShape
66 //purpose  : 
67 //=======================================================================
68
69 const BRepCheck_ListOfStatus& BRepCheck_Result::StatusOnShape
70    (const TopoDS_Shape& S)
71 {
72   if (!myMap.IsBound(S)) {
73     InContext(S);
74   }
75   return myMap(S);
76 }
77
78
79 //=======================================================================
80 //function : InitContextIterator
81 //purpose  : 
82 //=======================================================================
83
84 void BRepCheck_Result::InitContextIterator()
85 {
86   myIter.Initialize(myMap);
87   // At least 1 element : the Shape itself
88   if (myIter.Key().IsSame(myShape)) {
89     myIter.Next();
90   }
91 }
92
93
94 //=======================================================================
95 //function : NextShapeInContext
96 //purpose  : 
97 //=======================================================================
98
99 void BRepCheck_Result::NextShapeInContext()
100 {
101   myIter.Next();
102   if (myIter.More() && myIter.Key().IsSame(myShape)) {
103     myIter.Next();
104   }
105 }