0029915: Porting to VC 2017 : Regressions in Modeling Algorithms on VC 2017
[occt.git] / src / IFSelect / IFSelect_SignValidity.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14
42cf5bc1 15#include <IFSelect_SignValidity.hxx>
16#include <Interface_Check.hxx>
17#include <Interface_InterfaceModel.hxx>
18#include <Standard_Transient.hxx>
19#include <Standard_Type.hxx>
7fd59977 20
92efcf78 21IMPLEMENT_STANDARD_RTTIEXT(IFSelect_SignValidity,IFSelect_Signature)
22
7fd59977 23static Standard_CString nulsign = "";
24
25
26//=======================================================================
27//function : IFSelect_SignValidity
28//purpose :
29//=======================================================================
30
31IFSelect_SignValidity::IFSelect_SignValidity() : IFSelect_Signature ("Validity")
32{
33 AddCase ("UNKNOWN");
34 AddCase ("UNLOADED");
35 AddCase ("Load-Error");
36 AddCase ("Data-Error");
37 AddCase ("Load-Warning");
38 AddCase ("Data-Warning");
39 AddCase ("OK");
40}
41
42
43//=======================================================================
44//function : CVal
45//purpose :
46//=======================================================================
47
48Standard_CString IFSelect_SignValidity::CVal(const Handle(Standard_Transient)& ent,
49 const Handle(Interface_InterfaceModel)& model)
50{
51 if (ent.IsNull() || model.IsNull()) return nulsign;
52 Standard_Integer num = model->Number(ent);
53 Standard_Integer cas = 0;
54 if (model->IsUnknownEntity(num)) return "UNKNOWN";
55 if (model->IsRedefinedContent(num)) return "UNLOADED";
56
57 const Handle(Interface_Check) ch1 = model->Check(num,Standard_True);
58 const Handle(Interface_Check) ch2 = model->Check(num,Standard_False);
59 if (ch1->NbFails() > 0) return "Load-Error";
60 else if (ch1->NbWarnings() > 0) cas = 1;
61
62 if (ch2->NbFails() > 0) return "Data-Error";
63 else if (cas == 1) return "Load-Warning";
64 else if (ch2->NbWarnings() > 0) return "Data-Warning";
65
66 return "OK";
67}
68
69
70//=======================================================================
71//function : Value
72//purpose :
73//=======================================================================
74
75Standard_CString IFSelect_SignValidity::Value
76 (const Handle(Standard_Transient)& ent,
77 const Handle(Interface_InterfaceModel)& model) const
78{
79 return IFSelect_SignValidity::CVal(ent,model);
80}