1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/XSControl/XSControl_SignTransferStatus.cxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

118 lines
3.8 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <Interface_Check.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <Transfer_Binder.hxx>
#include <Transfer_TransientProcess.hxx>
#include <XSControl_SignTransferStatus.hxx>
#include <XSControl_TransferReader.hxx>
IMPLEMENT_STANDARD_RTTIEXT(XSControl_SignTransferStatus,IFSelect_Signature)
//#include <stdio.h>
static TCollection_AsciiString& themes()
{
static TCollection_AsciiString tm;
return tm;
}
// si resultat avec type: a exploiter tout de suite !
XSControl_SignTransferStatus::XSControl_SignTransferStatus ()
: IFSelect_Signature("Transfer Status") { }
XSControl_SignTransferStatus::XSControl_SignTransferStatus
(const Handle(XSControl_TransferReader)& TR)
: IFSelect_Signature("Transfer Status") ,
theTR (TR) { }
void XSControl_SignTransferStatus::SetReader
(const Handle(XSControl_TransferReader)& TR)
{ theTR = TR; }
void XSControl_SignTransferStatus::SetMap
(const Handle(Transfer_TransientProcess)& TP)
{ theTP = TP; }
Handle(Transfer_TransientProcess) XSControl_SignTransferStatus::Map () const
{ return theTP; }
Handle(XSControl_TransferReader) XSControl_SignTransferStatus::Reader () const
{ return theTR; }
// BinderStatus retourne une valeur :
// 0 Binder Null. 1 void 2 Warning seul 3 Fail seul
// 11 Resultat OK. 12 Resultat+Warning. 13 Resultat+Fail
// 20 Abnormal (Interrupted)
static Standard_Integer BinderStatus (const Handle(Transfer_Binder)& binder)
{
Standard_Integer stat = 0;
if (binder.IsNull()) return 0;
Interface_CheckStatus cst = binder->Check()->Status();
Transfer_StatusExec est = binder->StatusExec ();
Standard_Boolean res = binder->HasResult();
if (est == Transfer_StatusRun || est == Transfer_StatusLoop) return 20;
if (cst == Interface_CheckOK) stat = (res ? 11 : 1);
else if (cst == Interface_CheckWarning) stat = (res ? 12 : 2);
else if (cst == Interface_CheckFail) stat = (res ? 13 : 3);
return stat;
}
Standard_CString XSControl_SignTransferStatus::Value
(const Handle(Standard_Transient)& ent,
const Handle(Interface_InterfaceModel)& /*model*/) const
{
if (ent.IsNull()) return "";
Handle(Transfer_TransientProcess) TP = theTP;
if (TP.IsNull() && !theTR.IsNull()) TP = theTR->TransientProcess();
if (TP.IsNull()) return "";
Handle(Transfer_Binder) binder = TP->Find(ent);
Standard_Integer stat = BinderStatus (binder);
if (stat <= 1) return "";
if (stat == 2) return "Warning";
if (stat == 3) return "Fail";
if (stat == 20) return "Fail on run";
themes().Clear();
if (stat > 10) {
// Y a un resultat : donner son type
Handle(Transfer_Binder) bnd = binder;
Standard_Integer hasres = Standard_False;
while (!bnd.IsNull()) {
if (bnd->Status() != Transfer_StatusVoid) {
if (!hasres) themes().AssignCat("Result:");
else themes().AssignCat(",");
themes().AssignCat(bnd->ResultTypeName());
hasres = Standard_True;
}
bnd = bnd->NextResult();
}
// if (stat == 11) sprintf(themes,"Result:%s",binder->ResultTypeName());
if (stat == 12) themes().AssignCat("/Warning");
if (stat == 13) themes().AssignCat("/Fail");
}
return themes().ToCString();
}