mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
282 lines
8.9 KiB
C++
282 lines
8.9 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_EntityIterator.hxx>
|
|
#include <Interface_HGraph.hxx>
|
|
#include <Interface_InterfaceModel.hxx>
|
|
#include <Interface_MSG.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TColStd_HSequenceOfTransient.hxx>
|
|
#include <Transfer_TransientProcess.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(Transfer_TransientProcess,Transfer_ProcessForTransient)
|
|
|
|
//=======================================================================
|
|
//function : Transfer_TransientProcess
|
|
//purpose :
|
|
//=======================================================================
|
|
Transfer_TransientProcess::Transfer_TransientProcess
|
|
(const Standard_Integer nb) : Transfer_ProcessForTransient (nb)
|
|
{
|
|
thetrroots = new TColStd_HSequenceOfTransient;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetModel
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Transfer_TransientProcess::SetModel
|
|
(const Handle(Interface_InterfaceModel)& model)
|
|
{
|
|
themodel = model;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Model
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Interface_InterfaceModel) Transfer_TransientProcess::Model () const
|
|
{
|
|
return themodel;
|
|
}
|
|
|
|
|
|
void Transfer_TransientProcess::SetGraph(const Handle(Interface_HGraph)& HG)
|
|
{
|
|
thegraph = HG;
|
|
if (!thegraph.IsNull())
|
|
SetModel(thegraph->Graph().Model());
|
|
else
|
|
themodel.Nullify();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : HasGraph
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Transfer_TransientProcess::HasGraph () const
|
|
{
|
|
return !thegraph.IsNull();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : HGraph
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Interface_HGraph) Transfer_TransientProcess::HGraph () const
|
|
{
|
|
return thegraph;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Graph
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Interface_Graph& Transfer_TransientProcess::Graph () const
|
|
{
|
|
return thegraph->Graph();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetContext
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Transfer_TransientProcess::SetContext(const Standard_CString name,
|
|
const Handle(Standard_Transient)& ctx)
|
|
{
|
|
thectx.Bind(name,ctx);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GetContext
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Transfer_TransientProcess::GetContext
|
|
(const Standard_CString name, const Handle(Standard_Type)& type,
|
|
Handle(Standard_Transient)& ctx) const
|
|
{
|
|
if (thectx.IsEmpty()) return Standard_False;
|
|
if (!thectx.Find(name, ctx))
|
|
ctx.Nullify();
|
|
|
|
if (ctx.IsNull()) return Standard_False;
|
|
if (type.IsNull()) return Standard_True;
|
|
if (!ctx->IsKind(type)) ctx.Nullify();
|
|
return !ctx.IsNull();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Context
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
NCollection_DataMap<TCollection_AsciiString, Handle(Standard_Transient)>& Transfer_TransientProcess::Context ()
|
|
{
|
|
return thectx;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : PrintTrace
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Transfer_TransientProcess::PrintTrace
|
|
(const Handle(Standard_Transient)& start, Standard_OStream& S) const
|
|
{
|
|
if (!start.IsNull()) {
|
|
if (!themodel.IsNull()) {
|
|
S << "Entity ";
|
|
themodel->Print (start, S, 1);
|
|
// S<<"id "; themodel->Print (start,S);
|
|
// S<<" Type:"<<themodel->TypeName (start);
|
|
}
|
|
else S<<"Entity Type:"<< Interface_InterfaceModel::ClassName(start->DynamicType()->Name());
|
|
// << start (handle) ??
|
|
}
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : CheckNum
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer Transfer_TransientProcess::CheckNum
|
|
(const Handle(Standard_Transient)& start) const
|
|
{
|
|
return (themodel.IsNull() ? 0 : themodel->Number(start));
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : TypedSharings
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Interface_EntityIterator Transfer_TransientProcess::TypedSharings
|
|
(const Handle(Standard_Transient)& start,
|
|
const Handle(Standard_Type)& type) const
|
|
{
|
|
Interface_EntityIterator iter;
|
|
if (thegraph.IsNull()) return iter;
|
|
return thegraph->Graph().TypedSharings (start,type);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsDataLoaded
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Transfer_TransientProcess::IsDataLoaded
|
|
(const Handle(Standard_Transient)& start) const
|
|
{
|
|
if (themodel.IsNull()) return Standard_True;
|
|
Standard_Integer num = themodel->Number(start);
|
|
if (num == 0) return Standard_True;
|
|
if (themodel->IsUnknownEntity(num)) return Standard_False;
|
|
return !themodel->IsRedefinedContent(num);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsDataFail
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Transfer_TransientProcess::IsDataFail
|
|
(const Handle(Standard_Transient)& start) const
|
|
{
|
|
if (themodel.IsNull()) return Standard_False;
|
|
Standard_Integer num = themodel->Number(start);
|
|
if (num == 0) return Standard_False;
|
|
if (themodel->IsErrorEntity(num)) return Standard_True;
|
|
const Handle(Interface_Check) ach = themodel->Check(num,Standard_False); // semantic
|
|
return ach->HasFailed();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : PrintStats
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Transfer_TransientProcess::PrintStats(const Standard_Integer /*mode*/,
|
|
Standard_OStream& S) const
|
|
{
|
|
S<<"\n*******************************************************************\n";
|
|
// if (mode == 1) { // Statistiques de base
|
|
S<< "******** Basic Statistics ********"<<std::endl;
|
|
|
|
Handle(Interface_InterfaceModel) model = Model();
|
|
if (model.IsNull()) S<<"**** Model unknown"<<std::endl;
|
|
else
|
|
S<<"**** Nb Entities : "<<model->NbEntities()<<std::endl;
|
|
|
|
Standard_Integer nbr = 0, nbe = 0, nbw = 0;
|
|
Standard_Integer i, max = NbMapped(), nbroots = NbRoots();
|
|
S<< "**** Nb Final Results : "<<nbroots<<std::endl;
|
|
|
|
for (i = 1; i <= max; i ++) {
|
|
const Handle(Transfer_Binder)& binder = MapItem(i);
|
|
if (binder.IsNull()) continue;
|
|
const Handle(Interface_Check) ach = binder->Check();
|
|
Transfer_StatusExec stat = binder->StatusExec();
|
|
if (stat != Transfer_StatusInitial && stat != Transfer_StatusDone)
|
|
nbe ++;
|
|
else {
|
|
if (ach->NbWarnings() > 0) nbw ++;
|
|
if (binder->HasResult()) nbr ++;
|
|
}
|
|
}
|
|
if (nbr > nbroots)
|
|
S<<"**** ( Itermediate Results : "<<nbr-nbroots<<" )\n";
|
|
if (nbe > 0)
|
|
S<<"**** Errors on : "<<Interface_MSG::Blanks(nbe,4)<<nbe<<" Entities\n";
|
|
if (nbw > 0)
|
|
S<<"**** Warnings on : "<<Interface_MSG::Blanks(nbw,4)<<nbw<<" Entities\n";
|
|
S<<"*******************************************************************";
|
|
// }
|
|
S<<std::endl;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : RootsForTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TColStd_HSequenceOfTransient) Transfer_TransientProcess::RootsForTransfer()
|
|
{
|
|
return thetrroots;
|
|
}
|