mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- STEP low-level parser is converted to C++; required minimal version of flex is elevated to 2.5.37. - Added possibility to import STEP from stream, see new method XSControl_Reader::ReadStream() (now implemented in STEP only). - Parsers ported to win_flex_bison 2.5.23 (flex 2.6.4, bison 3.7.1) - Added support of C++ flex and bison scanners in in CMake scripts - Some code clean-up in StepFile and around (unused files and functions are eliminated) - Option to read from stream is added in DRAW command testreadstep for testing ReadStream() function - Added test bugs step bug27342
492 lines
16 KiB
C++
492 lines
16 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.
|
|
|
|
// pdn 26.02.99 added initializing of compound in function OneShape
|
|
//: gka 14.04.99: S4136: apply scaling
|
|
|
|
#include <BRep_Builder.hxx>
|
|
#include <IFSelect_Functions.hxx>
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_InterfaceModel.hxx>
|
|
#include <Interface_ShareFlags.hxx>
|
|
#include <Interface_Static.hxx>
|
|
#include <Message.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
#include <Message_ProgressScope.hxx>
|
|
#include <ShapeExtend_Explorer.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <TopoDS_Compound.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <Transfer_Binder.hxx>
|
|
#include <Transfer_IteratorOfProcessForTransient.hxx>
|
|
#include <Transfer_TransientProcess.hxx>
|
|
#include <XSControl_Controller.hxx>
|
|
#include <XSControl_Reader.hxx>
|
|
#include <XSControl_TransferReader.hxx>
|
|
#include <XSControl_WorkSession.hxx>
|
|
|
|
//#include <ShapeCustom.hxx>
|
|
//#include <ShapeAlgo.hxx>
|
|
//#include <ShapeAlgo_AlgoContainer.hxx>
|
|
//=======================================================================
|
|
//function : XSControl_Reader
|
|
//purpose :
|
|
//=======================================================================
|
|
XSControl_Reader::XSControl_Reader ()
|
|
{
|
|
SetWS (new XSControl_WorkSession);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : XSControl_Reader
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
XSControl_Reader::XSControl_Reader (const Standard_CString norm)
|
|
{
|
|
SetNorm (norm);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : XSControl_Reader
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
XSControl_Reader::XSControl_Reader(const Handle(XSControl_WorkSession)& WS,
|
|
const Standard_Boolean scratch)
|
|
{
|
|
SetWS (WS,scratch);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetNorm
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean XSControl_Reader::SetNorm (const Standard_CString norm)
|
|
{
|
|
if (thesession.IsNull()) SetWS (new XSControl_WorkSession);
|
|
Standard_Boolean stat = thesession->SelectNorm (norm);
|
|
if (stat) {
|
|
thesession->InitTransferReader(0);
|
|
thesession->InitTransferReader(4);
|
|
}
|
|
return stat;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetWS
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void XSControl_Reader::SetWS(const Handle(XSControl_WorkSession)& WS,
|
|
const Standard_Boolean scratch)
|
|
{
|
|
therootsta = Standard_False;
|
|
theroots.Clear();
|
|
thesession = WS;
|
|
// Il doit y avoir un Controller ... Sinon onverra plus tard (apres SetNorm)
|
|
if (thesession->NormAdaptor().IsNull()) return;
|
|
Handle(Interface_InterfaceModel) model = thesession->Model ();
|
|
if (scratch || model.IsNull()) model = thesession->NewModel ();
|
|
thesession->InitTransferReader(0);
|
|
thesession->InitTransferReader(4);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : WS
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(XSControl_WorkSession) XSControl_Reader::WS () const
|
|
{
|
|
return thesession;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : ReadFile
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
IFSelect_ReturnStatus XSControl_Reader::ReadFile (const Standard_CString filename)
|
|
{
|
|
IFSelect_ReturnStatus stat = thesession->ReadFile(filename);
|
|
thesession->InitTransferReader(4);
|
|
return stat;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ReadStream
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
IFSelect_ReturnStatus XSControl_Reader::ReadStream(const Standard_CString theName,
|
|
std::istream& theIStream)
|
|
{
|
|
IFSelect_ReturnStatus stat = thesession->ReadStream(theName, theIStream);
|
|
thesession->InitTransferReader(4);
|
|
return stat;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Model
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Interface_InterfaceModel) XSControl_Reader::Model () const
|
|
{
|
|
return thesession->Model();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GiveList
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TColStd_HSequenceOfTransient) XSControl_Reader::GiveList
|
|
(const Standard_CString first, const Standard_CString second)
|
|
{
|
|
if (first && first[0] != '\0') {
|
|
return thesession->GiveList (first,second);
|
|
}
|
|
|
|
Handle(TColStd_HSequenceOfTransient) list = new TColStd_HSequenceOfTransient();
|
|
Standard_Integer i,nbr = NbRootsForTransfer();
|
|
for (i = 1; i <= nbr; i ++) list->Append (RootForTransfer(i));
|
|
return list;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GiveList
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TColStd_HSequenceOfTransient) XSControl_Reader::GiveList
|
|
(const Standard_CString first, const Handle(Standard_Transient)& list)
|
|
{
|
|
return thesession->GiveListFromList (first,list);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : NbRootsForTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer XSControl_Reader::NbRootsForTransfer ()
|
|
{
|
|
if (therootsta) return theroots.Length();
|
|
therootsta = Standard_True;
|
|
Interface_ShareFlags sf (thesession->Graph());
|
|
Standard_Integer i, nbr = sf.NbRoots();
|
|
for (i = 1; i <= nbr; i ++) {
|
|
// on filtre les racines qu on sait transferer
|
|
Handle(Standard_Transient) start = sf.Root(i);
|
|
if (thesession->TransferReader()->Recognize(start)) theroots.Append(start);
|
|
}
|
|
return theroots.Length();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : RootForTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Standard_Transient) XSControl_Reader::RootForTransfer
|
|
(const Standard_Integer num)
|
|
{
|
|
Handle(Standard_Transient) voidroot;
|
|
Standard_Integer nbr = NbRootsForTransfer();
|
|
if (num < 1 || num > nbr) return voidroot;
|
|
return theroots.Value(num);
|
|
}
|
|
|
|
|
|
// #### TRANSFERT ####
|
|
|
|
|
|
//=======================================================================
|
|
//function : TransferOneRoot
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean XSControl_Reader::TransferOneRoot(const Standard_Integer num,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
return TransferEntity (RootForTransfer (num), theProgress);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : TransferOne
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean XSControl_Reader::TransferOne(const Standard_Integer num,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
return TransferEntity (thesession->StartingEntity (num), theProgress);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : TransferEntity
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean XSControl_Reader::TransferEntity
|
|
(const Handle(Standard_Transient)& start, const Message_ProgressRange& theProgress)
|
|
{
|
|
if (start.IsNull()) return Standard_False;
|
|
const Handle(XSControl_TransferReader) &TR = thesession->TransferReader();
|
|
TR->BeginTransfer();
|
|
if (TR->TransferOne (start, Standard_True, theProgress) == 0) return Standard_False;
|
|
TopoDS_Shape sh = TR->ShapeResult(start);
|
|
//ShapeExtend_Explorer STU;
|
|
//SMH May 00: allow empty shapes (STEP CAX-IF, external references)
|
|
//if (STU.ShapeType(sh,Standard_True) == TopAbs_SHAPE) return Standard_False; // nulle-vide
|
|
theshapes.Append(sh);
|
|
return Standard_True;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : TransferList
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer XSControl_Reader::TransferList
|
|
(const Handle(TColStd_HSequenceOfTransient)& list,
|
|
const Message_ProgressRange& theProgress)
|
|
{
|
|
if (list.IsNull()) return 0;
|
|
Standard_Integer nbt = 0;
|
|
Standard_Integer i, nb = list->Length();
|
|
const Handle(XSControl_TransferReader) &TR = thesession->TransferReader();
|
|
TR->BeginTransfer();
|
|
ClearShapes();
|
|
ShapeExtend_Explorer STU;
|
|
Message_ProgressScope PS(theProgress, NULL, nb);
|
|
for (i = 1; i <= nb && PS.More(); i++) {
|
|
Handle(Standard_Transient) start = list->Value(i);
|
|
if (TR->TransferOne (start, Standard_True, PS.Next()) == 0) continue;
|
|
TopoDS_Shape sh = TR->ShapeResult(start);
|
|
if (STU.ShapeType(sh,Standard_True) == TopAbs_SHAPE) continue; // nulle-vide
|
|
theshapes.Append(sh);
|
|
nbt ++;
|
|
}
|
|
return nbt;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : TransferRoots
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer XSControl_Reader::TransferRoots (const Message_ProgressRange& theProgress)
|
|
{
|
|
NbRootsForTransfer();
|
|
Standard_Integer nbt = 0;
|
|
Standard_Integer i, nb = theroots.Length();
|
|
const Handle(XSControl_TransferReader) &TR = thesession->TransferReader();
|
|
|
|
TR->BeginTransfer();
|
|
ClearShapes();
|
|
ShapeExtend_Explorer STU;
|
|
Message_ProgressScope PS (theProgress, "Root", nb);
|
|
for (i = 1; i <= nb && PS.More(); i ++) {
|
|
Handle(Standard_Transient) start = theroots.Value(i);
|
|
if (TR->TransferOne (start, Standard_True, PS.Next()) == 0) continue;
|
|
TopoDS_Shape sh = TR->ShapeResult(start);
|
|
if (STU.ShapeType(sh,Standard_True) == TopAbs_SHAPE) continue; // nulle-vide
|
|
theshapes.Append(sh);
|
|
nbt ++;
|
|
}
|
|
return nbt;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : ClearShapes
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void XSControl_Reader::ClearShapes ()
|
|
{
|
|
theshapes.Clear();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : NbShapes
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer XSControl_Reader::NbShapes () const
|
|
{
|
|
return theshapes.Length();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Shapes
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopTools_SequenceOfShape& XSControl_Reader::Shapes()
|
|
{
|
|
return theshapes;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Shape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Shape XSControl_Reader::Shape (const Standard_Integer num) const
|
|
{
|
|
return theshapes.Value(num);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : OneShape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Shape XSControl_Reader::OneShape () const
|
|
{
|
|
TopoDS_Shape sh;
|
|
Standard_Integer i,nb = theshapes.Length();
|
|
if (nb == 0) return sh;
|
|
if (nb == 1) return theshapes.Value(1);
|
|
TopoDS_Compound C;
|
|
BRep_Builder B;
|
|
//pdn 26.02.99 testing S4133
|
|
B.MakeCompound(C);
|
|
for (i = 1; i <= nb; i ++) B.Add (C,theshapes.Value(i));
|
|
return C;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintCheckLoad
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintCheckLoad (Standard_OStream& theStream,
|
|
const Standard_Boolean failsonly,
|
|
const IFSelect_PrintCount mode) const
|
|
{
|
|
thesession->PrintCheckList (theStream, thesession->ModelCheckList(),failsonly, mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintCheckLoad
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintCheckLoad (const Standard_Boolean failsonly,
|
|
const IFSelect_PrintCount mode) const
|
|
{
|
|
Message_Messenger::StreamBuffer aBuffer = Message::SendInfo();
|
|
PrintCheckLoad (aBuffer, failsonly, mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintCheckTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintCheckTransfer(Standard_OStream& theStream,
|
|
const Standard_Boolean failsonly,
|
|
const IFSelect_PrintCount mode) const
|
|
{
|
|
thesession->PrintCheckList (theStream, thesession->TransferReader()->LastCheckList(), failsonly, mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintCheckTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintCheckTransfer(const Standard_Boolean failsonly,
|
|
const IFSelect_PrintCount mode) const
|
|
{
|
|
Message_Messenger::StreamBuffer aBuffer = Message::SendInfo();
|
|
PrintCheckTransfer(aBuffer, failsonly, mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintStatsTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintStatsTransfer (Standard_OStream& theStream,
|
|
const Standard_Integer what,
|
|
const Standard_Integer mode) const
|
|
{
|
|
thesession->TransferReader()->PrintStats (theStream, what,mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PrintStatsTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
void XSControl_Reader::PrintStatsTransfer (const Standard_Integer what,
|
|
const Standard_Integer mode) const
|
|
{
|
|
Message_Messenger::StreamBuffer aBuffer = Message::SendInfo();
|
|
PrintStatsTransfer (aBuffer, what, mode);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetStatsTransfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void XSControl_Reader::GetStatsTransfer (const Handle(TColStd_HSequenceOfTransient)& list,
|
|
Standard_Integer& nbMapped,
|
|
Standard_Integer& nbWithResult,
|
|
Standard_Integer& nbWithFail) const
|
|
{
|
|
const Handle(Transfer_TransientProcess) &TP = thesession->TransferReader()->TransientProcess();
|
|
Transfer_IteratorOfProcessForTransient itrp(Standard_True);
|
|
itrp = TP->CompleteResult(Standard_True);
|
|
if(!list.IsNull()) itrp.Filter (list);
|
|
nbMapped = nbWithFail = nbWithResult = 0;
|
|
|
|
for (itrp.Start(); itrp.More(); itrp.Next()) {
|
|
Handle(Transfer_Binder) binder = itrp.Value();
|
|
Handle(Standard_Transient) ent = itrp.Starting();
|
|
nbMapped++;
|
|
if (binder.IsNull()) nbWithFail++;
|
|
else
|
|
if(!binder->HasResult()) nbWithFail++;
|
|
else
|
|
{
|
|
Interface_CheckStatus cst = binder->Check()->Status();
|
|
if ((cst == Interface_CheckOK)||(cst == Interface_CheckWarning))
|
|
nbWithResult++;
|
|
else
|
|
nbWithFail++;
|
|
}
|
|
}
|
|
}
|
|
|