Files
OCCT/src/XSControl/XSControl_SignTransferStatus.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

110 lines
3.6 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 <XSControl_SignTransferStatus.ixx>
#include <Transfer_Binder.hxx>
#include <TCollection_AsciiString.hxx>
#include <Interface_Check.hxx>
//#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();
}