1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0031353: TDocStd_Application does not have api to set progress indicator

Add support of Message_ProgressIndicator in BinTools classes.

Add support of Message_ProgressIndicator with possibility of user break in methods of opening and saving TDocStd_Application.

Add tests of ProgressIndicator in TDocStd_Applacation.
This commit is contained in:
akaftasev 2020-03-02 15:29:34 +03:00 committed by bugmaster
parent d27293d9bf
commit 6d8f9f4a49
75 changed files with 1364 additions and 1094 deletions

View File

@ -36,7 +36,6 @@
#include <Geom_Surface.hxx> #include <Geom_Surface.hxx>
#include <gp_Lin2d.hxx> #include <gp_Lin2d.hxx>
#include <gp_Vec2d.hxx> #include <gp_Vec2d.hxx>
#include <Message_ProgressIndicator.hxx>
#include <OSD_OpenFile.hxx> #include <OSD_OpenFile.hxx>
#include <Poly_PolygonOnTriangulation.hxx> #include <Poly_PolygonOnTriangulation.hxx>
#include <Poly_Triangulation.hxx> #include <Poly_Triangulation.hxx>
@ -668,12 +667,11 @@ void BRepTools::Dump(const TopoDS_Shape& Sh, Standard_OStream& S)
//======================================================================= //=======================================================================
void BRepTools::Write(const TopoDS_Shape& Sh, Standard_OStream& S, void BRepTools::Write(const TopoDS_Shape& Sh, Standard_OStream& S,
const Handle(Message_ProgressIndicator)& PR) const Handle(Message_ProgressIndicator)& theProgress)
{ {
BRepTools_ShapeSet SS; BRepTools_ShapeSet SS;
SS.SetProgress(PR);
SS.Add(Sh); SS.Add(Sh);
SS.Write(S); SS.Write(S, theProgress);
SS.Write(Sh,S); SS.Write(Sh,S);
} }
@ -686,11 +684,10 @@ void BRepTools::Write(const TopoDS_Shape& Sh, Standard_OStream& S,
void BRepTools::Read(TopoDS_Shape& Sh, void BRepTools::Read(TopoDS_Shape& Sh,
std::istream& S, std::istream& S,
const BRep_Builder& B, const BRep_Builder& B,
const Handle(Message_ProgressIndicator)& PR) const Handle(Message_ProgressIndicator)& theProgress)
{ {
BRepTools_ShapeSet SS(B); BRepTools_ShapeSet SS(B);
SS.SetProgress(PR); SS.Read(S, theProgress);
SS.Read(S);
SS.Read(Sh,S); SS.Read(Sh,S);
} }
@ -701,7 +698,7 @@ void BRepTools::Read(TopoDS_Shape& Sh,
Standard_Boolean BRepTools::Write(const TopoDS_Shape& Sh, Standard_Boolean BRepTools::Write(const TopoDS_Shape& Sh,
const Standard_CString File, const Standard_CString File,
const Handle(Message_ProgressIndicator)& PR) const Handle(Message_ProgressIndicator)& theProgress)
{ {
std::ofstream os; std::ofstream os;
OSD_OpenStream(os, File, std::ios::out); OSD_OpenStream(os, File, std::ios::out);
@ -713,11 +710,10 @@ Standard_Boolean BRepTools::Write(const TopoDS_Shape& Sh,
return isGood; return isGood;
BRepTools_ShapeSet SS; BRepTools_ShapeSet SS;
SS.SetProgress(PR);
SS.Add(Sh); SS.Add(Sh);
os << "DBRep_DrawableShape\n"; // for easy Draw read os << "DBRep_DrawableShape\n"; // for easy Draw read
SS.Write(os); SS.Write(os, theProgress);
isGood = os.good(); isGood = os.good();
if(isGood ) if(isGood )
SS.Write(Sh,os); SS.Write(Sh,os);
@ -739,7 +735,7 @@ Standard_Boolean BRepTools::Write(const TopoDS_Shape& Sh,
Standard_Boolean BRepTools::Read(TopoDS_Shape& Sh, Standard_Boolean BRepTools::Read(TopoDS_Shape& Sh,
const Standard_CString File, const Standard_CString File,
const BRep_Builder& B, const BRep_Builder& B,
const Handle(Message_ProgressIndicator)& PR) const Handle(Message_ProgressIndicator)& theProgress)
{ {
std::filebuf fic; std::filebuf fic;
std::istream in(&fic); std::istream in(&fic);
@ -747,8 +743,7 @@ Standard_Boolean BRepTools::Read(TopoDS_Shape& Sh,
if(!fic.is_open()) return Standard_False; if(!fic.is_open()) return Standard_False;
BRepTools_ShapeSet SS(B); BRepTools_ShapeSet SS(B);
SS.SetProgress(PR); SS.Read(in, theProgress);
SS.Read(in);
if(!SS.NbShapes()) return Standard_False; if(!SS.NbShapes()) return Standard_False;
SS.Read(Sh,in); SS.Read(Sh,in);
return Standard_True; return Standard_True;

View File

@ -40,7 +40,6 @@ class TopoDS_Solid;
class TopoDS_CompSolid; class TopoDS_CompSolid;
class TopoDS_Compound; class TopoDS_Compound;
class TopoDS_Shape; class TopoDS_Shape;
class Message_ProgressIndicator;
class BRep_Builder; class BRep_Builder;
class BRepTools_WireExplorer; class BRepTools_WireExplorer;
class BRepTools_Modification; class BRepTools_Modification;
@ -207,18 +206,24 @@ public:
Standard_EXPORT static void Dump (const TopoDS_Shape& Sh, Standard_OStream& S); Standard_EXPORT static void Dump (const TopoDS_Shape& Sh, Standard_OStream& S);
//! Writes <Sh> on <S> in an ASCII format. //! Writes <Sh> on <S> in an ASCII format.
Standard_EXPORT static void Write (const TopoDS_Shape& Sh, Standard_OStream& S, const Handle(Message_ProgressIndicator)& PR = NULL); Standard_EXPORT static void Write (const TopoDS_Shape& Sh, Standard_OStream& S,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Reads a Shape from <S> in returns it in <Sh>. //! Reads a Shape from <S> in returns it in <Sh>.
//! <B> is used to build the shape. //! <B> is used to build the shape.
Standard_EXPORT static void Read (TopoDS_Shape& Sh, Standard_IStream& S, const BRep_Builder& B, const Handle(Message_ProgressIndicator)& PR = NULL); Standard_EXPORT static void Read (TopoDS_Shape& Sh, Standard_IStream& S, const BRep_Builder& B,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes <Sh> in <File>. //! Writes <Sh> in <File>.
Standard_EXPORT static Standard_Boolean Write (const TopoDS_Shape& Sh, const Standard_CString File, const Handle(Message_ProgressIndicator)& PR = NULL); Standard_EXPORT static Standard_Boolean Write
(const TopoDS_Shape& Sh, const Standard_CString File,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Reads a Shape from <File>, returns it in <Sh>. //! Reads a Shape from <File>, returns it in <Sh>.
//! <B> is used to build the shape. //! <B> is used to build the shape.
Standard_EXPORT static Standard_Boolean Read (TopoDS_Shape& Sh, const Standard_CString File, const BRep_Builder& B, const Handle(Message_ProgressIndicator)& PR = NULL); Standard_EXPORT static Standard_Boolean Read
(TopoDS_Shape& Sh, const Standard_CString File, const BRep_Builder& B,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Evals real tolerance of edge <theE>. //! Evals real tolerance of edge <theE>.
//! <theC3d>, <theC2d>, <theS>, <theF>, <theL> are //! <theC3d>, <theC2d>, <theS>, <theF>, <theL> are
@ -248,18 +253,8 @@ public:
Standard_EXPORT static void RemoveInternals (TopoDS_Shape& theS, Standard_EXPORT static void RemoveInternals (TopoDS_Shape& theS,
const Standard_Boolean theForce = Standard_False); const Standard_Boolean theForce = Standard_False);
protected:
private: private:
friend class BRepTools_WireExplorer; friend class BRepTools_WireExplorer;
friend class BRepTools_Modification; friend class BRepTools_Modification;
friend class BRepTools_Modifier; friend class BRepTools_Modifier;
@ -273,10 +268,4 @@ friend class BRepTools_ReShape;
}; };
#endif // _BRepTools_HeaderFile #endif // _BRepTools_HeaderFile

View File

@ -230,7 +230,7 @@ void BRepTools_ShapeSet::AddGeometry(const TopoDS_Shape& S)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::DumpGeometry(Standard_OStream& OS)const void BRepTools_ShapeSet::DumpGeometry (Standard_OStream& OS)const
{ {
myCurves2d.Dump(OS); myCurves2d.Dump(OS);
myCurves.Dump(OS); myCurves.Dump(OS);
@ -246,65 +246,32 @@ void BRepTools_ShapeSet::DumpGeometry(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::WriteGeometry(Standard_OStream& OS) void BRepTools_ShapeSet::WriteGeometry (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
//OCC19559 //OCC19559
myCurves2d.SetProgress(GetProgress()); Message_ProgressSentry aPS(theProgress, "Writing geometry", 0, 6, 1);
myCurves.SetProgress(GetProgress()); myCurves2d.Write (OS, theProgress);
mySurfaces.SetProgress(GetProgress()); if (!aPS.More())
return;
if ( !GetProgress().IsNull()) { aPS.Next();
if(GetProgress()->UserBreak() ) return; myCurves.Write (OS, theProgress);
GetProgress()->NewScope ( 15, "2D Curves" ); if (!aPS.More())
} return;
myCurves2d.Write(OS); aPS.Next();
WritePolygon3D (OS, true, theProgress);
if ( !GetProgress().IsNull()) { if (!aPS.More())
if( GetProgress()->UserBreak() ) return; return;
GetProgress()->EndScope(); aPS.Next();
GetProgress()->Show(); WritePolygonOnTriangulation (OS, true, theProgress);
if (!aPS.More())
GetProgress()->NewScope ( 15, "3D Curves" ); return;
} aPS.Next();
myCurves.Write(OS); mySurfaces.Write (OS, theProgress);
if (!aPS.More())
if ( !GetProgress().IsNull()) { return;
if( GetProgress()->UserBreak() ) return; aPS.Next();
GetProgress()->EndScope(); WriteTriangulation (OS, true, theProgress);
GetProgress()->Show();
GetProgress()->NewScope ( 10, "3D Polygons" );
}
WritePolygon3D(OS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 10, "Polygons On Triangulation" );
}
WritePolygonOnTriangulation(OS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 10, "Surfaces" );
}
mySurfaces.Write(OS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 15, "Triangulations" );
}
WriteTriangulation(OS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
}
} }
@ -313,65 +280,35 @@ void BRepTools_ShapeSet::WriteGeometry(Standard_OStream& OS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::ReadGeometry(Standard_IStream& IS) void BRepTools_ShapeSet::ReadGeometry (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress)
{ {
//OCC19559 //OCC19559
myCurves2d.SetProgress(GetProgress()); Message_ProgressSentry aPS(theProgress, "Reading geometry", 0, 6, 1);
myCurves.SetProgress(GetProgress()); myCurves2d.Read(IS, theProgress);
mySurfaces.SetProgress(GetProgress()); if (!aPS.More())
return;
if ( !GetProgress().IsNull()) { aPS.Next();
if( GetProgress()->UserBreak() ) return; myCurves.Read(IS, theProgress);
GetProgress()->NewScope ( 15, "2D Curves" ); if (!aPS.More())
} return;
myCurves2d.Read(IS); aPS.Next();
ReadPolygon3D(IS, theProgress);
if ( !GetProgress().IsNull()) { if (!aPS.More())
if( GetProgress()->UserBreak() ) return; return;
GetProgress()->EndScope(); aPS.Next();
GetProgress()->Show(); ReadPolygonOnTriangulation(IS, theProgress);
if (!aPS.More())
GetProgress()->NewScope ( 15, "3D Curves" ); return;
} aPS.Next();
myCurves.Read(IS); mySurfaces.Read(IS, theProgress);
if (!aPS.More())
if ( !GetProgress().IsNull()) { return;
if( GetProgress()->UserBreak() ) return; aPS.Next();
GetProgress()->EndScope(); ReadTriangulation(IS, theProgress);
GetProgress()->Show(); if (!aPS.More())
return;
GetProgress()->NewScope ( 10, "3D Polygons" ); aPS.Next();
}
ReadPolygon3D(IS);
if ( !GetProgress().IsNull() ) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 10, "Polygons On Triangulation" );
}
ReadPolygonOnTriangulation(IS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 10, "Surfaces" );
}
mySurfaces.Read(IS);
if ( !GetProgress().IsNull() ) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
GetProgress()->NewScope ( 15, "Triangulations" );
}
ReadTriangulation(IS);
if ( !GetProgress().IsNull()) {
if( GetProgress()->UserBreak() ) return;
GetProgress()->EndScope();
GetProgress()->Show();
}
} }
//======================================================================= //=======================================================================
@ -582,8 +519,7 @@ void BRepTools_ShapeSet::DumpGeometry(const TopoDS_Shape& S,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::WriteGeometry(const TopoDS_Shape& S, void BRepTools_ShapeSet::WriteGeometry (const TopoDS_Shape& S, Standard_OStream& OS)const
Standard_OStream& OS)const
{ {
// Write the geometry // Write the geometry
@ -814,9 +750,9 @@ static GeomAbs_Shape ReadRegularity(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::ReadGeometry(const TopAbs_ShapeEnum T, void BRepTools_ShapeSet::ReadGeometry (const TopAbs_ShapeEnum T,
Standard_IStream& IS, Standard_IStream& IS,
TopoDS_Shape& S) TopoDS_Shape& S)
{ {
// Read the geometry // Read the geometry
@ -1232,13 +1168,13 @@ void BRepTools_ShapeSet::Check(const TopAbs_ShapeEnum T,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::WritePolygonOnTriangulation(Standard_OStream& OS, void BRepTools_ShapeSet::WritePolygonOnTriangulation (Standard_OStream& OS,
const Standard_Boolean Compact)const const Standard_Boolean Compact,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
Standard_Integer i, j, nbpOntri = myNodes.Extent(); Standard_Integer i, j, nbpOntri = myNodes.Extent();
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Polygons On Triangulation", 0, nbpOntri, 1);
Message_ProgressSentry PS(progress, "Polygons On Triangulation", 0, nbpOntri, 1);
if (Compact) if (Compact)
OS << "PolygonOnTriangulations " << nbpOntri << "\n"; OS << "PolygonOnTriangulations " << nbpOntri << "\n";
else { else {
@ -1297,7 +1233,8 @@ void BRepTools_ShapeSet::DumpPolygonOnTriangulation(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS) void BRepTools_ShapeSet::ReadPolygonOnTriangulation (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -1309,8 +1246,7 @@ void BRepTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS)
Handle(Poly_PolygonOnTriangulation) Poly; Handle(Poly_PolygonOnTriangulation) Poly;
IS >> nbpol; IS >> nbpol;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Polygons On Triangulation", 0, nbpol, 1);
Message_ProgressSentry PS(progress, "Polygons On Triangulation", 0, nbpol, 1);
for (i=1; i<=nbpol&& PS.More(); i++, PS.Next()) { for (i=1; i<=nbpol&& PS.More(); i++, PS.Next()) {
IS >> nbnodes; IS >> nbnodes;
TColStd_Array1OfInteger Nodes(1, nbnodes); TColStd_Array1OfInteger Nodes(1, nbnodes);
@ -1351,13 +1287,13 @@ void BRepTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::WritePolygon3D(Standard_OStream& OS, void BRepTools_ShapeSet::WritePolygon3D (Standard_OStream& OS,
const Standard_Boolean Compact)const const Standard_Boolean Compact,
const Handle(Message_ProgressIndicator) &theProgress)const
{ {
Standard_Integer i, j, nbpol = myPolygons3D.Extent(); Standard_Integer i, j, nbpol = myPolygons3D.Extent();
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "3D Polygons", 0, nbpol, 1);
Message_ProgressSentry PS(progress, "3D Poligons", 0, nbpol, 1);
if (Compact) if (Compact)
OS << "Polygon3D " << nbpol << "\n"; OS << "Polygon3D " << nbpol << "\n";
@ -1429,7 +1365,8 @@ void BRepTools_ShapeSet::DumpPolygon3D(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS) void BRepTools_ShapeSet::ReadPolygon3D (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
// Standard_Integer i, j, p, val, nbpol, nbnodes, hasparameters; // Standard_Integer i, j, p, val, nbpol, nbnodes, hasparameters;
@ -1441,8 +1378,7 @@ void BRepTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS)
Handle(Poly_Polygon3D) P; Handle(Poly_Polygon3D) P;
IS >> nbpol; IS >> nbpol;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "3D Polygons", 0, nbpol, 1);
Message_ProgressSentry PS(progress, "3D Polygons", 0, nbpol, 1);
for (i=1; i<=nbpol && PS.More(); i++, PS.Next()) { for (i=1; i<=nbpol && PS.More(); i++, PS.Next()) {
IS >> nbnodes; IS >> nbnodes;
IS >> hasparameters; IS >> hasparameters;
@ -1475,13 +1411,13 @@ void BRepTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS)
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::WriteTriangulation(Standard_OStream& OS, void BRepTools_ShapeSet::WriteTriangulation(Standard_OStream& OS,
const Standard_Boolean Compact)const const Standard_Boolean Compact,
const Handle(Message_ProgressIndicator) &theProgress)const
{ {
Standard_Integer i, j, nbNodes, nbtri = myTriangulations.Extent(); Standard_Integer i, j, nbNodes, nbtri = myTriangulations.Extent();
Standard_Integer nbTriangles = 0, n1, n2, n3; Standard_Integer nbTriangles = 0, n1, n2, n3;
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Triangulations", 0, nbtri, 1);
Message_ProgressSentry PS(progress, "Triangulations", 0, nbtri, 1);
if (Compact) if (Compact)
OS << "Triangulations " << nbtri << "\n"; OS << "Triangulations " << nbtri << "\n";
@ -1578,7 +1514,8 @@ void BRepTools_ShapeSet::DumpTriangulation(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BRepTools_ShapeSet::ReadTriangulation(Standard_IStream& IS) void BRepTools_ShapeSet::ReadTriangulation (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress)
{ {
char buffer[255]; char buffer[255];
// Standard_Integer i, j, val, nbtri; // Standard_Integer i, j, val, nbtri;
@ -1594,8 +1531,7 @@ void BRepTools_ShapeSet::ReadTriangulation(Standard_IStream& IS)
IS >> nbtri; IS >> nbtri;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Triangulations", 0, nbtri, 1);
Message_ProgressSentry PS(progress, "Triangulations", 0, nbtri, 1);
for (i=1; i<=nbtri && PS.More();i++, PS.Next()) { for (i=1; i<=nbtri && PS.More();i++, PS.Next()) {
IS >> nbNodes >> nbTriangles >> hasUV; IS >> nbNodes >> nbTriangles >> hasUV;

View File

@ -31,6 +31,7 @@
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <TopAbs_ShapeEnum.hxx> #include <TopAbs_ShapeEnum.hxx>
class BRep_Builder; class BRep_Builder;
class TopoDS_Shape; class TopoDS_Shape;
@ -48,11 +49,12 @@ public:
//! Builds an empty ShapeSet. //! Builds an empty ShapeSet.
//! Parameter <isWithTriangles> is added for XML Persistence //! Parameter <isWithTriangles> is added for XML Persistence
Standard_EXPORT BRepTools_ShapeSet(const Standard_Boolean isWithTriangles = Standard_True); Standard_EXPORT BRepTools_ShapeSet (const Standard_Boolean isWithTriangles = Standard_True);
//! Builds an empty ShapeSet. //! Builds an empty ShapeSet.
//! Parameter <isWithTriangles> is added for XML Persistence //! Parameter <isWithTriangles> is added for XML Persistence
Standard_EXPORT BRepTools_ShapeSet(const BRep_Builder& B, const Standard_Boolean isWithTriangles = Standard_True); Standard_EXPORT BRepTools_ShapeSet (const BRep_Builder& B,
const Standard_Boolean isWithTriangles = Standard_True);
//! Clears the content of the set. //! Clears the content of the set.
Standard_EXPORT virtual void Clear() Standard_OVERRIDE; Standard_EXPORT virtual void Clear() Standard_OVERRIDE;
@ -65,21 +67,28 @@ public:
//! Writes the geometry of me on the stream <OS> in a //! Writes the geometry of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT virtual void WriteGeometry (Standard_OStream& OS) Standard_OVERRIDE; Standard_EXPORT virtual void WriteGeometry
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress = NULL) Standard_OVERRIDE;
//! Reads the geometry of me from the stream <IS>. //! Reads the geometry of me from the stream <IS>.
Standard_EXPORT virtual void ReadGeometry (Standard_IStream& IS) Standard_OVERRIDE; Standard_EXPORT virtual void ReadGeometry
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL) Standard_OVERRIDE;
//! Dumps the geometry of <S> on the stream <OS>. //! Dumps the geometry of <S> on the stream <OS>.
Standard_EXPORT virtual void DumpGeometry (const TopoDS_Shape& S, Standard_OStream& OS) const Standard_OVERRIDE; Standard_EXPORT virtual void DumpGeometry
(const TopoDS_Shape& S, Standard_OStream& OS) const Standard_OVERRIDE;
//! Writes the geometry of <S> on the stream <OS> in a //! Writes the geometry of <S> on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT virtual void WriteGeometry (const TopoDS_Shape& S, Standard_OStream& OS) const Standard_OVERRIDE; Standard_EXPORT virtual void WriteGeometry
(const TopoDS_Shape& S, Standard_OStream& OS) const Standard_OVERRIDE;
//! Reads the geometry of a shape of type <T> from the //! Reads the geometry of a shape of type <T> from the
//! stream <IS> and returns it in <S>. //! stream <IS> and returns it in <S>.
Standard_EXPORT virtual void ReadGeometry (const TopAbs_ShapeEnum T, Standard_IStream& IS, TopoDS_Shape& S) Standard_OVERRIDE; Standard_EXPORT virtual void ReadGeometry
(const TopAbs_ShapeEnum T, Standard_IStream& IS, TopoDS_Shape& S) Standard_OVERRIDE;
//! Inserts the shape <S2> in the shape <S1>. This //! Inserts the shape <S2> in the shape <S1>. This
//! method must be redefined to use the correct //! method must be redefined to use the correct
@ -90,12 +99,17 @@ public:
//! Reads the 3d polygons of me //! Reads the 3d polygons of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadPolygon3D (Standard_IStream& IS); Standard_EXPORT void ReadPolygon3D
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Writes the 3d polygons //! Writes the 3d polygons
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WritePolygon3D (Standard_OStream& OS, const Standard_Boolean Compact = Standard_True) const; Standard_EXPORT void WritePolygon3D
(Standard_OStream& OS,
const Standard_Boolean Compact = Standard_True,
const Handle(Message_ProgressIndicator) &theProgress = NULL) const;
//! Dumps the 3d polygons //! Dumps the 3d polygons
//! on the stream <OS>. //! on the stream <OS>.
@ -103,12 +117,17 @@ public:
//! Reads the triangulation of me //! Reads the triangulation of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadTriangulation (Standard_IStream& IS); Standard_EXPORT void ReadTriangulation
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Writes the triangulation //! Writes the triangulation
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WriteTriangulation (Standard_OStream& OS, const Standard_Boolean Compact = Standard_True) const; Standard_EXPORT void WriteTriangulation
(Standard_OStream& OS,
const Standard_Boolean Compact = Standard_True,
const Handle(Message_ProgressIndicator) &theProgress = NULL) const;
//! Dumps the triangulation //! Dumps the triangulation
//! on the stream <OS>. //! on the stream <OS>.
@ -116,30 +135,24 @@ public:
//! Reads the polygons on triangulation of me //! Reads the polygons on triangulation of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadPolygonOnTriangulation (Standard_IStream& IS); Standard_EXPORT void ReadPolygonOnTriangulation
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Writes the polygons on triangulation //! Writes the polygons on triangulation
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WritePolygonOnTriangulation (Standard_OStream& OS, const Standard_Boolean Compact = Standard_True) const; Standard_EXPORT void WritePolygonOnTriangulation
(Standard_OStream& OS,
const Standard_Boolean Compact = Standard_True,
const Handle(Message_ProgressIndicator) &theProgress = NULL) const;
//! Dumps the polygons on triangulation //! Dumps the polygons on triangulation
//! on the stream <OS>. //! on the stream <OS>.
Standard_EXPORT void DumpPolygonOnTriangulation (Standard_OStream& OS) const; Standard_EXPORT void DumpPolygonOnTriangulation (Standard_OStream& OS) const;
protected:
private: private:
BRep_Builder myBuilder; BRep_Builder myBuilder;
GeomTools_SurfaceSet mySurfaces; GeomTools_SurfaceSet mySurfaces;
GeomTools_CurveSet myCurves; GeomTools_CurveSet myCurves;
@ -150,13 +163,6 @@ private:
TColStd_IndexedMapOfTransient myNodes; TColStd_IndexedMapOfTransient myNodes;
Standard_Boolean myWithTriangles; Standard_Boolean myWithTriangles;
}; };
#endif // _BRepTools_ShapeSet_HeaderFile #endif // _BRepTools_ShapeSet_HeaderFile

View File

@ -58,7 +58,8 @@ Handle(BinMDF_ADriverTable) BinDrivers_DocumentRetrievalDriver::AttributeDrivers
void BinDrivers_DocumentRetrievalDriver::ReadShapeSection void BinDrivers_DocumentRetrievalDriver::ReadShapeSection
(BinLDrivers_DocumentSection& /*theSection*/, (BinLDrivers_DocumentSection& /*theSection*/,
Standard_IStream& theIS, Standard_IStream& theIS,
const Standard_Boolean /*isMess*/) const Standard_Boolean /*isMess*/,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
// Read Shapes // Read Shapes
@ -69,7 +70,7 @@ void BinDrivers_DocumentRetrievalDriver::ReadShapeSection
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Handle(BinMNaming_NamedShapeDriver) aNamedShapeDriver = Handle(BinMNaming_NamedShapeDriver) aNamedShapeDriver =
Handle(BinMNaming_NamedShapeDriver)::DownCast (aDriver); Handle(BinMNaming_NamedShapeDriver)::DownCast (aDriver);
aNamedShapeDriver->ReadShapeSection (theIS); aNamedShapeDriver->ReadShapeSection (theIS, theProgress);
} }
catch(Standard_Failure const& anException) { catch(Standard_Failure const& anException) {
const TCollection_ExtendedString aMethStr const TCollection_ExtendedString aMethStr

View File

@ -42,11 +42,17 @@ public:
//! Constructor //! Constructor
Standard_EXPORT BinDrivers_DocumentRetrievalDriver(); Standard_EXPORT BinDrivers_DocumentRetrievalDriver();
Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE; Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers
(const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
Standard_EXPORT virtual void ReadShapeSection (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS, const Standard_Boolean isMess = Standard_False) Standard_OVERRIDE; Standard_EXPORT virtual void ReadShapeSection
(BinLDrivers_DocumentSection& theSection,
Standard_IStream& theIS,
const Standard_Boolean isMess = Standard_False,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS) Standard_OVERRIDE; Standard_EXPORT virtual void CheckShapeSection
(const Storage_Position& thePos, Standard_IStream& theIS) Standard_OVERRIDE;
//! Clears the NamedShape driver //! Clears the NamedShape driver
Standard_EXPORT virtual void Clear() Standard_OVERRIDE; Standard_EXPORT virtual void Clear() Standard_OVERRIDE;
@ -54,22 +60,6 @@ public:
DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentRetrievalDriver,BinLDrivers_DocumentRetrievalDriver) DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentRetrievalDriver,BinLDrivers_DocumentRetrievalDriver)
protected:
private:
}; };
#endif // _BinDrivers_DocumentRetrievalDriver_HeaderFile #endif // _BinDrivers_DocumentRetrievalDriver_HeaderFile

View File

@ -99,7 +99,8 @@ void BinDrivers_DocumentStorageDriver::SetWithTriangles (const Handle(Message_Me
//======================================================================= //=======================================================================
void BinDrivers_DocumentStorageDriver::WriteShapeSection void BinDrivers_DocumentStorageDriver::WriteShapeSection
(BinLDrivers_DocumentSection& theSection, (BinLDrivers_DocumentSection& theSection,
Standard_OStream& theOS) Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
const Standard_Size aShapesSectionOffset = (Standard_Size) theOS.tellp(); const Standard_Size aShapesSectionOffset = (Standard_Size) theOS.tellp();
@ -110,7 +111,7 @@ void BinDrivers_DocumentStorageDriver::WriteShapeSection
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Handle(BinMNaming_NamedShapeDriver) aNamedShapeDriver = Handle(BinMNaming_NamedShapeDriver) aNamedShapeDriver =
Handle(BinMNaming_NamedShapeDriver)::DownCast (aDriver); Handle(BinMNaming_NamedShapeDriver)::DownCast (aDriver);
aNamedShapeDriver->WriteShapeSection (theOS); aNamedShapeDriver->WriteShapeSection (theOS, theProgress);
} }
catch(Standard_Failure const& anException) { catch(Standard_Failure const& anException) {
TCollection_ExtendedString anErrorStr ("BinDrivers_DocumentStorageDriver, Shape Section :"); TCollection_ExtendedString anErrorStr ("BinDrivers_DocumentStorageDriver, Shape Section :");

View File

@ -39,10 +39,14 @@ public:
//! Constructor //! Constructor
Standard_EXPORT BinDrivers_DocumentStorageDriver(); Standard_EXPORT BinDrivers_DocumentStorageDriver();
Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE; Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers
(const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
//! implements the procedure of writing a shape section to file //! implements the procedure of writing a shape section to file
Standard_EXPORT virtual void WriteShapeSection (BinLDrivers_DocumentSection& theDocSection, Standard_OStream& theOS) Standard_OVERRIDE; Standard_EXPORT virtual void WriteShapeSection
(BinLDrivers_DocumentSection& theDocSection,
Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
//! Return true if shape should be stored with triangles. //! Return true if shape should be stored with triangles.
Standard_EXPORT Standard_Boolean IsWithTriangles() const; Standard_EXPORT Standard_Boolean IsWithTriangles() const;
@ -53,22 +57,6 @@ public:
DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentStorageDriver,BinLDrivers_DocumentStorageDriver) DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentStorageDriver,BinLDrivers_DocumentStorageDriver)
protected:
private:
}; };
#endif // _BinDrivers_DocumentStorageDriver_HeaderFile #endif // _BinDrivers_DocumentStorageDriver_HeaderFile

View File

@ -42,6 +42,8 @@
#include <TDF_Label.hxx> #include <TDF_Label.hxx>
#include <TDocStd_Document.hxx> #include <TDocStd_Document.hxx>
#include <TDocStd_Owner.hxx> #include <TDocStd_Owner.hxx>
#include <Message_ProgressSentry.hxx>
IMPLEMENT_STANDARD_RTTIEXT(BinLDrivers_DocumentRetrievalDriver,PCDM_RetrievalDriver) IMPLEMENT_STANDARD_RTTIEXT(BinLDrivers_DocumentRetrievalDriver,PCDM_RetrievalDriver)
@ -77,7 +79,8 @@ Handle(CDM_Document) BinLDrivers_DocumentRetrievalDriver::CreateDocument()
void BinLDrivers_DocumentRetrievalDriver::Read void BinLDrivers_DocumentRetrievalDriver::Read
(const TCollection_ExtendedString& theFileName, (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication) const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
std::ifstream aFileStream; std::ifstream aFileStream;
OSD_OpenStream (aFileStream, theFileName, std::ios::in | std::ios::binary); OSD_OpenStream (aFileStream, theFileName, std::ios::in | std::ios::binary);
@ -87,7 +90,12 @@ void BinLDrivers_DocumentRetrievalDriver::Read
Handle(Storage_Data) dData; Handle(Storage_Data) dData;
TCollection_ExtendedString aFormat = PCDM_ReadWriter::FileFormat (aFileStream, dData); TCollection_ExtendedString aFormat = PCDM_ReadWriter::FileFormat (aFileStream, dData);
Read (aFileStream, dData, theNewDocument, theApplication); Read(aFileStream, dData, theNewDocument, theApplication, theProgress);
if (theProgress->UserBreak())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
} }
else else
{ {
@ -108,7 +116,8 @@ void BinLDrivers_DocumentRetrievalDriver::Read
void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& theIStream, void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& theStorageData, const Handle(Storage_Data)& theStorageData,
const Handle(CDM_Document)& theDoc, const Handle(CDM_Document)& theDoc,
const Handle(CDM_Application)& theApplication) const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
myReaderStatus = PCDM_RS_DriverFailure; myReaderStatus = PCDM_RS_DriverFailure;
myMsgDriver = theApplication -> MessageDriver(); myMsgDriver = theApplication -> MessageDriver();
@ -224,6 +233,8 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
Handle(TDF_Data) aData = new TDF_Data(); Handle(TDF_Data) aData = new TDF_Data();
std::streampos aDocumentPos = -1; std::streampos aDocumentPos = -1;
Message_ProgressSentry aPS(theProgress, "Reading data", 0, 3, 1);
// 2b. Read the TOC of Sections // 2b. Read the TOC of Sections
if (aFileVer >= 3) { if (aFileVer >= 3) {
BinLDrivers_DocumentSection aSection; BinLDrivers_DocumentSection aSection;
@ -246,10 +257,18 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
BinLDrivers_DocumentSection& aCurSection = anIterS.ChangeValue(); BinLDrivers_DocumentSection& aCurSection = anIterS.ChangeValue();
if (aCurSection.IsPostRead() == Standard_False) { if (aCurSection.IsPostRead() == Standard_False) {
theIStream.seekg ((std::streampos) aCurSection.Offset()); theIStream.seekg ((std::streampos) aCurSection.Offset());
if (aCurSection.Name().IsEqual ((Standard_CString)SHAPESECTION_POS)) if (aCurSection.Name().IsEqual ((Standard_CString)SHAPESECTION_POS))
ReadShapeSection (aCurSection, theIStream); {
ReadShapeSection (aCurSection, theIStream, false, theProgress);
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
}
else else
ReadSection (aCurSection, theDoc, theIStream); ReadSection (aCurSection, theDoc, theIStream);
} }
} }
} else { //aFileVer < 3 } else { //aFileVer < 3
@ -287,7 +306,13 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
CheckShapeSection(aShapeSectionPos, theIStream); CheckShapeSection(aShapeSectionPos, theIStream);
// Read Shapes // Read Shapes
BinLDrivers_DocumentSection aCurSection; BinLDrivers_DocumentSection aCurSection;
ReadShapeSection (aCurSection, theIStream, Standard_False); ReadShapeSection (aCurSection, theIStream, Standard_False, theProgress);
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
} }
} }
} // end of reading Sections or shape section } // end of reading Sections or shape section
@ -300,8 +325,20 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
theIStream.read ((char*)&aTag, sizeof(Standard_Integer)); theIStream.read ((char*)&aTag, sizeof(Standard_Integer));
// read sub-tree of the root label // read sub-tree of the root label
Standard_Integer nbRead = ReadSubTree (theIStream, aData->Root()); Standard_Integer nbRead = ReadSubTree (theIStream, aData->Root(), theProgress);
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
Clear(); Clear();
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
if (nbRead > 0) { if (nbRead > 0) {
// attach data to the document // attach data to the document
@ -331,17 +368,27 @@ void BinLDrivers_DocumentRetrievalDriver::Read (Standard_IStream&
Standard_Integer BinLDrivers_DocumentRetrievalDriver::ReadSubTree Standard_Integer BinLDrivers_DocumentRetrievalDriver::ReadSubTree
(Standard_IStream& theIS, (Standard_IStream& theIS,
const TDF_Label& theLabel) const TDF_Label& theLabel,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Standard_Integer nbRead = 0; Standard_Integer nbRead = 0;
TCollection_ExtendedString aMethStr TCollection_ExtendedString aMethStr
("BinLDrivers_DocumentRetrievalDriver: "); ("BinLDrivers_DocumentRetrievalDriver: ");
Message_ProgressSentry aPS(theProgress, "Reading sub tree", 0, 2, 1, true);
// Read attributes: // Read attributes:
theIS >> myPAtt; theIS >> myPAtt;
while (theIS && myPAtt.TypeId() > 0 && // not an end marker ? while (theIS && myPAtt.TypeId() > 0 && // not an end marker ?
myPAtt.Id() > 0 && // not a garbage ? myPAtt.Id() > 0 && // not a garbage ?
!theIS.eof()) { !theIS.eof())
{
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return -1;
}
// get a driver according to TypeId // get a driver according to TypeId
Handle(BinMDF_ADriver) aDriver = myDrivers->GetDriver (myPAtt.TypeId()); Handle(BinMDF_ADriver) aDriver = myDrivers->GetDriver (myPAtt.TypeId());
if (!aDriver.IsNull()) { if (!aDriver.IsNull()) {
@ -407,12 +454,19 @@ Standard_Integer BinLDrivers_DocumentRetrievalDriver::ReadSubTree
#if DO_INVERSE #if DO_INVERSE
aTag = InverseInt (aTag); aTag = InverseInt (aTag);
#endif #endif
while (theIS && aTag >= 0 && !theIS.eof()) { // not an end marker ? while (theIS && aTag >= 0 && !theIS.eof()) { // not an end marker ?
// create sub-label // create sub-label
TDF_Label aLab = theLabel.FindChild (aTag, Standard_True); TDF_Label aLab = theLabel.FindChild (aTag, Standard_True);
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return -1;
}
aPS.Next();
// read sub-tree // read sub-tree
Standard_Integer nbSubRead = ReadSubTree(theIS, aLab); Standard_Integer nbSubRead = ReadSubTree (theIS, aLab, theProgress);
// check for error // check for error
if (nbSubRead == -1) if (nbSubRead == -1)
return -1; return -1;
@ -424,6 +478,7 @@ Standard_Integer BinLDrivers_DocumentRetrievalDriver::ReadSubTree
aTag = InverseInt (aTag); aTag = InverseInt (aTag);
#endif #endif
} }
if (aTag != BinLDrivers_ENDLABEL) { if (aTag != BinLDrivers_ENDLABEL) {
// invalid end label marker // invalid end label marker
myMsgDriver->Send (aMethStr + "error: invalid end label marker", Message_Fail); myMsgDriver->Send (aMethStr + "error: invalid end label marker", Message_Fail);
@ -465,8 +520,9 @@ void BinLDrivers_DocumentRetrievalDriver::ReadSection
void BinLDrivers_DocumentRetrievalDriver::ReadShapeSection void BinLDrivers_DocumentRetrievalDriver::ReadShapeSection
(BinLDrivers_DocumentSection& theSection, (BinLDrivers_DocumentSection& theSection,
Standard_IStream& /*theIS*/, Standard_IStream& /*theIS*/,
const Standard_Boolean isMess) const Standard_Boolean isMess,
const Handle(Message_ProgressIndicator) &/*theProgress*/)
{ {
if(isMess && theSection.Length()) { if(isMess && theSection.Length()) {

View File

@ -59,12 +59,16 @@ public:
Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE; Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE;
//! retrieves the content of the file into a new Document. //! retrieves the content of the file into a new Document.
Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName, const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual void Read (Standard_IStream& theIStream, Standard_EXPORT virtual void Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& theStorageData, const Handle(Storage_Data)& theStorageData,
const Handle(CDM_Document)& theDoc, const Handle(CDM_Document)& theDoc,
const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver); Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
@ -77,14 +81,24 @@ protected:
//! Read the tree from the stream <theIS> to <theLabel> //! Read the tree from the stream <theIS> to <theLabel>
Standard_EXPORT virtual Standard_Integer ReadSubTree (Standard_IStream& theIS, const TDF_Label& theData); Standard_EXPORT virtual Standard_Integer ReadSubTree
(Standard_IStream& theIS,
const TDF_Label& theData,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! define the procedure of reading a section to file. //! define the procedure of reading a section to file.
Standard_EXPORT virtual void ReadSection (BinLDrivers_DocumentSection& theSection, const Handle(CDM_Document)& theDoc, Standard_IStream& theIS); Standard_EXPORT virtual void ReadSection
(BinLDrivers_DocumentSection& theSection,
const Handle(CDM_Document)& theDoc,
Standard_IStream& theIS);
//! define the procedure of reading a shapes section to file. //! define the procedure of reading a shapes section to file.
Standard_EXPORT virtual void ReadShapeSection (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS, const Standard_Boolean isMess = Standard_False); Standard_EXPORT virtual void ReadShapeSection
(BinLDrivers_DocumentSection& theSection,
Standard_IStream& theIS,
const Standard_Boolean isMess = Standard_False,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! checks the shapes section can be correctly retreived. //! checks the shapes section can be correctly retreived.
Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS); Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS);

View File

@ -24,6 +24,8 @@
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Message_ProgressIndicator.hxx>
class TCollection_AsciiString; class TCollection_AsciiString;

View File

@ -42,6 +42,7 @@
#include <TDF_Label.hxx> #include <TDF_Label.hxx>
#include <TDF_Tool.hxx> #include <TDF_Tool.hxx>
#include <TDocStd_Document.hxx> #include <TDocStd_Document.hxx>
#include <Message_ProgressSentry.hxx>
IMPLEMENT_STANDARD_RTTIEXT(BinLDrivers_DocumentStorageDriver,PCDM_StorageDriver) IMPLEMENT_STANDARD_RTTIEXT(BinLDrivers_DocumentStorageDriver,PCDM_StorageDriver)
@ -63,7 +64,8 @@ BinLDrivers_DocumentStorageDriver::BinLDrivers_DocumentStorageDriver ()
void BinLDrivers_DocumentStorageDriver::Write void BinLDrivers_DocumentStorageDriver::Write
(const Handle(CDM_Document)& theDocument, (const Handle(CDM_Document)& theDocument,
const TCollection_ExtendedString& theFileName) const TCollection_ExtendedString& theFileName,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
SetIsError(Standard_False); SetIsError(Standard_False);
SetStoreStatus(PCDM_SS_OK); SetStoreStatus(PCDM_SS_OK);
@ -75,7 +77,7 @@ void BinLDrivers_DocumentStorageDriver::Write
if (aFileStream.is_open() && aFileStream.good()) if (aFileStream.is_open() && aFileStream.good())
{ {
Write (theDocument, aFileStream); Write(theDocument, aFileStream, theProgress);
} }
else else
{ {
@ -89,7 +91,9 @@ void BinLDrivers_DocumentStorageDriver::Write
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDoc, Standard_OStream& theOStream) void BinLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDoc,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
myMsgDriver = theDoc->Application()->MessageDriver(); myMsgDriver = theDoc->Application()->MessageDriver();
myMapUnsupported.Clear(); myMapUnsupported.Clear();
@ -136,12 +140,26 @@ void BinLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDo
myRelocTable.Clear(); myRelocTable.Clear();
myPAtt.Init(); myPAtt.Init();
Message_ProgressSentry aPS(theProgress, "Writing document", 0, 3, 1);
// Write Doc structure // Write Doc structure
WriteSubTree (aData->Root(), theOStream); // Doc is written WriteSubTree (aData->Root(), theOStream, theProgress); // Doc is written
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return;
}
aPS.Next();
// 4. Write Shapes section // 4. Write Shapes section
WriteShapeSection (aShapesSection, theOStream); WriteShapeSection (aShapesSection, theOStream, theProgress);
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return;
}
aPS.Next();
// Write application-defined sections // Write application-defined sections
for (anIterS.Init (mySections); anIterS.More(); anIterS.Next()) { for (anIterS.Init (mySections); anIterS.More(); anIterS.Next()) {
BinLDrivers_DocumentSection& aSection = anIterS.ChangeValue(); BinLDrivers_DocumentSection& aSection = anIterS.ChangeValue();
@ -164,7 +182,13 @@ void BinLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDo
SetStoreStatus(PCDM_SS_No_Obj); SetStoreStatus(PCDM_SS_No_Obj);
} }
myRelocTable.Clear(); myRelocTable.Clear();
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return;
}
aPS.Next();
if (!theOStream) { if (!theOStream) {
// A problem with the stream // A problem with the stream
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
@ -205,14 +229,15 @@ void BinLDrivers_DocumentStorageDriver::UnsupportedAttrMsg
void BinLDrivers_DocumentStorageDriver::WriteSubTree void BinLDrivers_DocumentStorageDriver::WriteSubTree
(const TDF_Label& theLabel, (const TDF_Label& theLabel,
Standard_OStream& theOS) Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
// Skip empty labels // Skip empty labels
if (!myEmptyLabels.IsEmpty() && myEmptyLabels.First() == theLabel) { if (!myEmptyLabels.IsEmpty() && myEmptyLabels.First() == theLabel) {
myEmptyLabels.RemoveFirst(); myEmptyLabels.RemoveFirst();
return; return;
} }
Message_ProgressSentry aPS(theProgress, "Writing sub tree", 0, 2, 1, 1);
// Write label header: tag // Write label header: tag
Standard_Integer aTag = theLabel.Tag(); Standard_Integer aTag = theLabel.Tag();
#if DO_INVERSE #if DO_INVERSE
@ -222,7 +247,7 @@ void BinLDrivers_DocumentStorageDriver::WriteSubTree
// Write attributes // Write attributes
TDF_AttributeIterator itAtt (theLabel); TDF_AttributeIterator itAtt (theLabel);
for ( ; itAtt.More() && theOS; itAtt.Next()) { for ( ; itAtt.More() && theOS && aPS.More(); itAtt.Next()) {
const Handle(TDF_Attribute) tAtt = itAtt.Value(); const Handle(TDF_Attribute) tAtt = itAtt.Value();
const Handle(Standard_Type)& aType = tAtt->DynamicType(); const Handle(Standard_Type)& aType = tAtt->DynamicType();
// Get type ID and driver // Get type ID and driver
@ -249,7 +274,12 @@ void BinLDrivers_DocumentStorageDriver::WriteSubTree
// Problem with the stream // Problem with the stream
return; return;
} }
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return;
}
// Write the end attributes list marker // Write the end attributes list marker
BinLDrivers_Marker anEndAttr = BinLDrivers_ENDATTRLIST; BinLDrivers_Marker anEndAttr = BinLDrivers_ENDATTRLIST;
#if DO_INVERSE #if DO_INVERSE
@ -262,7 +292,14 @@ void BinLDrivers_DocumentStorageDriver::WriteSubTree
for ( ; itChld.More(); itChld.Next()) for ( ; itChld.More(); itChld.Next())
{ {
const TDF_Label& aChildLab = itChld.Value(); const TDF_Label& aChildLab = itChld.Value();
WriteSubTree (aChildLab, theOS); if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return;
}
aPS.Next();
WriteSubTree (aChildLab, theOS, theProgress);
} }
// Write the end label marker // Write the end label marker
@ -509,7 +546,8 @@ void BinLDrivers_DocumentStorageDriver::WriteSection
//======================================================================= //=======================================================================
void BinLDrivers_DocumentStorageDriver::WriteShapeSection void BinLDrivers_DocumentStorageDriver::WriteShapeSection
(BinLDrivers_DocumentSection& theSection, (BinLDrivers_DocumentSection& theSection,
Standard_OStream& theOS) Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
const Standard_Size aShapesSectionOffset = (Standard_Size) theOS.tellp(); const Standard_Size aShapesSectionOffset = (Standard_Size) theOS.tellp();
theSection.Write (theOS, aShapesSectionOffset); theSection.Write (theOS, aShapesSectionOffset);

View File

@ -52,10 +52,14 @@ public:
Standard_EXPORT BinLDrivers_DocumentStorageDriver(); Standard_EXPORT BinLDrivers_DocumentStorageDriver();
//! Write <theDocument> to the binary file <theFileName> //! Write <theDocument> to the binary file <theFileName>
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, const TCollection_ExtendedString& theFileName) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
const TCollection_ExtendedString& theFileName,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
//! Write <theDocument> to theOStream //! Write <theDocument> to theOStream
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver); Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
@ -71,13 +75,19 @@ protected:
//! Write the tree under <theLabel> to the stream <theOS> //! Write the tree under <theLabel> to the stream <theOS>
Standard_EXPORT void WriteSubTree (const TDF_Label& theData, Standard_OStream& theOS); Standard_EXPORT void WriteSubTree (const TDF_Label& theData,
Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! define the procedure of writing a section to file. //! define the procedure of writing a section to file.
Standard_EXPORT virtual void WriteSection (const TCollection_AsciiString& theName, const Handle(CDM_Document)& theDoc, Standard_OStream& theOS); Standard_EXPORT virtual void WriteSection (const TCollection_AsciiString& theName,
const Handle(CDM_Document)& theDoc,
Standard_OStream& theOS);
//! defines the procedure of writing a shape section to file //! defines the procedure of writing a shape section to file
Standard_EXPORT virtual void WriteShapeSection (BinLDrivers_DocumentSection& theDocSection, Standard_OStream& theOS); Standard_EXPORT virtual void WriteShapeSection (BinLDrivers_DocumentSection& theDocSection,
Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Handle(BinMDF_ADriverTable) myDrivers; Handle(BinMDF_ADriverTable) myDrivers;
BinObjMgt_SRelocationTable myRelocTable; BinObjMgt_SRelocationTable myRelocTable;
@ -85,7 +95,6 @@ protected:
private: private:
Standard_EXPORT void FirstPass (const TDF_Label& theRoot); Standard_EXPORT void FirstPass (const TDF_Label& theRoot);
//! Returns true if <L> and its sub-labels do not contain //! Returns true if <L> and its sub-labels do not contain
@ -104,13 +113,6 @@ private:
BinLDrivers_VectorOfDocumentSection mySections; BinLDrivers_VectorOfDocumentSection mySections;
TCollection_ExtendedString myFileName; TCollection_ExtendedString myFileName;
}; };
#endif // _BinLDrivers_DocumentStorageDriver_HeaderFile #endif // _BinLDrivers_DocumentStorageDriver_HeaderFile

View File

@ -276,11 +276,12 @@ void BinMNaming_NamedShapeDriver::Paste (const Handle(TDF_Attribute)& theSource,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinMNaming_NamedShapeDriver::WriteShapeSection (Standard_OStream& theOS) void BinMNaming_NamedShapeDriver::WriteShapeSection (Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
theOS << SHAPESET; theOS << SHAPESET;
myShapeSet.SetFormatNb(myFormatNb); myShapeSet.SetFormatNb(myFormatNb);
myShapeSet.Write (theOS); myShapeSet.Write (theOS, theProgress);
myShapeSet.Clear(); myShapeSet.Clear();
} }
@ -299,7 +300,8 @@ void BinMNaming_NamedShapeDriver::Clear()
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinMNaming_NamedShapeDriver::ReadShapeSection (Standard_IStream& theIS) void BinMNaming_NamedShapeDriver::ReadShapeSection (Standard_IStream& theIS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
// check section title string; note that some versions of OCCT (up to 6.3.1) // check section title string; note that some versions of OCCT (up to 6.3.1)
// might avoid writing shape section if it is empty // might avoid writing shape section if it is empty
@ -308,7 +310,7 @@ void BinMNaming_NamedShapeDriver::ReadShapeSection (Standard_IStream& theIS)
theIS >> aSectionTitle; theIS >> aSectionTitle;
if(aSectionTitle.Length() > 0 && aSectionTitle == SHAPESET) { if(aSectionTitle.Length() > 0 && aSectionTitle == SHAPESET) {
myShapeSet.Clear(); myShapeSet.Clear();
myShapeSet.Read (theIS); myShapeSet.Read (theIS, theProgress);
SetFormatNb(myShapeSet.FormatNb()); SetFormatNb(myShapeSet.FormatNb());
} }
else else

View File

@ -52,10 +52,12 @@ public:
Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Source, BinObjMgt_Persistent& Target, BinObjMgt_SRelocationTable& RelocTable) const Standard_OVERRIDE; Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Source, BinObjMgt_Persistent& Target, BinObjMgt_SRelocationTable& RelocTable) const Standard_OVERRIDE;
//! Input the shapes from Bin Document file //! Input the shapes from Bin Document file
Standard_EXPORT void ReadShapeSection (Standard_IStream& theIS); Standard_EXPORT void ReadShapeSection (Standard_IStream& theIS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Output the shapes into Bin Document file //! Output the shapes into Bin Document file
Standard_EXPORT void WriteShapeSection (Standard_OStream& theOS); Standard_EXPORT void WriteShapeSection (Standard_OStream& theOS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Clear myShapeSet //! Clear myShapeSet
Standard_EXPORT void Clear(); Standard_EXPORT void Clear();

View File

@ -17,6 +17,7 @@
#include <BinTools.hxx> #include <BinTools.hxx>
#include <BinTools_ShapeSet.hxx> #include <BinTools_ShapeSet.hxx>
#include <FSD_FileHeader.hxx> #include <FSD_FileHeader.hxx>
#include <Message_ProgressIndicator.hxx>
#include <OSD_OpenFile.hxx> #include <OSD_OpenFile.hxx>
#include <Storage_StreamTypeMismatchError.hxx> #include <Storage_StreamTypeMismatchError.hxx>
@ -174,12 +175,13 @@ Standard_IStream& BinTools::GetBool(Standard_IStream& IS, Standard_Boolean& aVal
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools::Write (const TopoDS_Shape& theShape, Standard_OStream& theStream) void BinTools::Write (const TopoDS_Shape& theShape, Standard_OStream& theStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
BinTools_ShapeSet aShapeSet(Standard_True); BinTools_ShapeSet aShapeSet(Standard_True);
aShapeSet.SetFormatNb (3); aShapeSet.SetFormatNb (3);
aShapeSet.Add (theShape); aShapeSet.Add (theShape);
aShapeSet.Write (theStream); aShapeSet.Write (theStream, theProgress);
aShapeSet.Write (theShape, theStream); aShapeSet.Write (theShape, theStream);
} }
@ -188,10 +190,11 @@ void BinTools::Write (const TopoDS_Shape& theShape, Standard_OStream& theStream)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools::Read (TopoDS_Shape& theShape, Standard_IStream& theStream) void BinTools::Read (TopoDS_Shape& theShape, Standard_IStream& theStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
BinTools_ShapeSet aShapeSet(Standard_True); BinTools_ShapeSet aShapeSet(Standard_True);
aShapeSet.Read (theStream); aShapeSet.Read (theStream, theProgress);
aShapeSet.Read (theShape, theStream, aShapeSet.NbShapes()); aShapeSet.Read (theShape, theStream, aShapeSet.NbShapes());
} }
@ -200,7 +203,8 @@ void BinTools::Read (TopoDS_Shape& theShape, Standard_IStream& theStream)
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean BinTools::Write (const TopoDS_Shape& theShape, const Standard_CString theFile) Standard_Boolean BinTools::Write (const TopoDS_Shape& theShape, const Standard_CString theFile,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
std::ofstream aStream; std::ofstream aStream;
aStream.precision (15); aStream.precision (15);
@ -208,7 +212,7 @@ Standard_Boolean BinTools::Write (const TopoDS_Shape& theShape, const Standard_C
if (!aStream.good()) if (!aStream.good())
return Standard_False; return Standard_False;
Write (theShape, aStream); Write (theShape, aStream, theProgress);
aStream.close(); aStream.close();
return aStream.good(); return aStream.good();
} }
@ -218,7 +222,8 @@ Standard_Boolean BinTools::Write (const TopoDS_Shape& theShape, const Standard_C
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean BinTools::Read (TopoDS_Shape& theShape, const Standard_CString theFile) Standard_Boolean BinTools::Read (TopoDS_Shape& theShape, const Standard_CString theFile,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
std::filebuf aBuf; std::filebuf aBuf;
OSD_OpenStream (aBuf, theFile, std::ios::in | std::ios::binary); OSD_OpenStream (aBuf, theFile, std::ios::in | std::ios::binary);
@ -226,6 +231,6 @@ Standard_Boolean BinTools::Read (TopoDS_Shape& theShape, const Standard_CString
return Standard_False; return Standard_False;
Standard_IStream aStream (&aBuf); Standard_IStream aStream (&aBuf);
Read (theShape, aStream); Read (theShape, aStream, theProgress);
return aStream.good(); return aStream.good();
} }

View File

@ -26,6 +26,7 @@
#include <Standard_ExtCharacter.hxx> #include <Standard_ExtCharacter.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Message_ProgressIndicator.hxx>
class TopoDS_Shape; class TopoDS_Shape;
class BinTools_ShapeSet; class BinTools_ShapeSet;
@ -63,16 +64,22 @@ public:
Standard_EXPORT static Standard_IStream& GetExtChar (Standard_IStream& IS, Standard_ExtCharacter& theValue); Standard_EXPORT static Standard_IStream& GetExtChar (Standard_IStream& IS, Standard_ExtCharacter& theValue);
//! Writes <theShape> on <theStream> in binary format. //! Writes <theShape> on <theStream> in binary format.
Standard_EXPORT static void Write (const TopoDS_Shape& theShape, Standard_OStream& theStream); Standard_EXPORT static void Write (const TopoDS_Shape& theShape, Standard_OStream& theStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Reads a shape from <theStream> and returns it in <theShape>. //! Reads a shape from <theStream> and returns it in <theShape>.
Standard_EXPORT static void Read (TopoDS_Shape& theShape, Standard_IStream& theStream); Standard_EXPORT static void Read (TopoDS_Shape& theShape, Standard_IStream& theStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes <theShape> in <theFile>. //! Writes <theShape> in <theFile>.
Standard_EXPORT static Standard_Boolean Write (const TopoDS_Shape& theShape, const Standard_CString theFile); Standard_EXPORT static Standard_Boolean Write
(const TopoDS_Shape& theShape, const Standard_CString theFile,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Reads a shape from <theFile> and returns it in <theShape>. //! Reads a shape from <theFile> and returns it in <theShape>.
Standard_EXPORT static Standard_Boolean Read (TopoDS_Shape& theShape, const Standard_CString theFile); Standard_EXPORT static Standard_Boolean Read
(TopoDS_Shape& theShape, const Standard_CString theFile,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
protected: protected:

View File

@ -38,6 +38,7 @@
#include <TColgp_Array1OfPnt2d.hxx> #include <TColgp_Array1OfPnt2d.hxx>
#include <TColStd_Array1OfInteger.hxx> #include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array1OfReal.hxx> #include <TColStd_Array1OfReal.hxx>
#include <Message_ProgressSentry.hxx>
#define LINE 1 #define LINE 1
#define CIRCLE 2 #define CIRCLE 2
@ -345,11 +346,13 @@ void BinTools_Curve2dSet::WriteCurve2d(const Handle(Geom2d_Curve)& C,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_Curve2dSet::Write(Standard_OStream& OS)const void BinTools_Curve2dSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
Standard_Integer i, aNbCurves = myMap.Extent(); Standard_Integer i, aNbCurves = myMap.Extent();
Message_ProgressSentry aPS(theProgress, "Writing 2D curves", 0, aNbCurves, 1);
OS << "Curve2ds "<< aNbCurves << "\n"; OS << "Curve2ds "<< aNbCurves << "\n";
for (i = 1; i <= aNbCurves; i++) { for (i = 1; i <= aNbCurves && aPS.More(); i++, aPS.Next()) {
WriteCurve2d(Handle(Geom2d_Curve)::DownCast(myMap(i)),OS); WriteCurve2d(Handle(Geom2d_Curve)::DownCast(myMap(i)),OS);
} }
} }
@ -692,7 +695,8 @@ Standard_IStream& BinTools_Curve2dSet::ReadCurve2d(Standard_IStream& IS,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_Curve2dSet::Read(Standard_IStream& IS) void BinTools_Curve2dSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
@ -710,12 +714,10 @@ void BinTools_Curve2dSet::Read(Standard_IStream& IS)
Handle(Geom2d_Curve) C; Handle(Geom2d_Curve) C;
Standard_Integer i, aNbCurves; Standard_Integer i, aNbCurves;
IS >> aNbCurves; IS >> aNbCurves;
IS.get();//remove <lf> Message_ProgressSentry aPS(theProgress, "Reading curves 2d", 0, aNbCurves, 1);
for (i = 1; i <= aNbCurves; i++) { IS.get();//remove <lf>
for (i = 1; i <= aNbCurves && aPS.More(); i++, aPS.Next()) {
BinTools_Curve2dSet::ReadCurve2d(IS,C); BinTools_Curve2dSet::ReadCurve2d(IS,C);
myMap.Add(C); myMap.Add(C);
} }
} }

View File

@ -24,6 +24,9 @@
#include <Standard_Integer.hxx> #include <Standard_Integer.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Message_ProgressIndicator.hxx>
class Standard_OutOfRange; class Standard_OutOfRange;
class Geom2d_Curve; class Geom2d_Curve;
@ -57,42 +60,26 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Dumps the curve on the binary stream, that can be read back. //! Dumps the curve on the binary stream, that can be read back.
Standard_EXPORT static void WriteCurve2d (const Handle(Geom2d_Curve)& C, Standard_OStream& OS); Standard_EXPORT static void WriteCurve2d(const Handle(Geom2d_Curve)& C, Standard_OStream& OS);
//! Reads the curve from the stream. The curve is //! Reads the curve from the stream. The curve is
//! assumed to have been written with the Write //! assumed to have been written with the Write
//! method. //! method.
Standard_EXPORT static Standard_IStream& ReadCurve2d (Standard_IStream& IS, Handle(Geom2d_Curve)& C); Standard_EXPORT static Standard_IStream& ReadCurve2d (Standard_IStream& IS, Handle(Geom2d_Curve)& C);
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
}; };
#endif // _BinTools_Curve2dSet_HeaderFile #endif // _BinTools_Curve2dSet_HeaderFile

View File

@ -37,6 +37,7 @@
#include <TColgp_Array1OfPnt.hxx> #include <TColgp_Array1OfPnt.hxx>
#include <TColStd_Array1OfInteger.hxx> #include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array1OfReal.hxx> #include <TColStd_Array1OfReal.hxx>
#include <Message_ProgressSentry.hxx>
#define LINE 1 #define LINE 1
#define CIRCLE 2 #define CIRCLE 2
@ -358,11 +359,13 @@ void BinTools_CurveSet::WriteCurve(const Handle(Geom_Curve)& C,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_CurveSet::Write(Standard_OStream& OS)const void BinTools_CurveSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
Standard_Integer i, nbsurf = myMap.Extent(); Standard_Integer i, nbcurv = myMap.Extent();
OS << "Curves "<< nbsurf << "\n"; Message_ProgressSentry aPS(theProgress, "Writing curves", 0, nbcurv, 1);
for (i = 1; i <= nbsurf; i++) { OS << "Curves "<< nbcurv << "\n";
for (i = 1; i <= nbcurv &&aPS.More(); i++, aPS.Next()) {
WriteCurve(Handle(Geom_Curve)::DownCast(myMap(i)),OS); WriteCurve(Handle(Geom_Curve)::DownCast(myMap(i)),OS);
} }
} }
@ -711,7 +714,8 @@ Standard_IStream& BinTools_CurveSet::ReadCurve(Standard_IStream& IS,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_CurveSet::Read(Standard_IStream& IS) void BinTools_CurveSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -729,11 +733,11 @@ void BinTools_CurveSet::Read(Standard_IStream& IS)
Standard_Integer i, nbcurve; Standard_Integer i, nbcurve;
IS >> nbcurve; IS >> nbcurve;
Message_ProgressSentry aPS(theProgress, "Reading curves", 0, nbcurve, 1);
IS.get();//remove <lf> IS.get();//remove <lf>
for (i = 1; i <= nbcurve; i++) { for (i = 1; i <= nbcurve && aPS.More(); i++, aPS.Next()) {
BinTools_CurveSet::ReadCurve(IS,C); BinTools_CurveSet::ReadCurve(IS,C);
myMap.Add(C); myMap.Add(C);
} }
} }

View File

@ -24,6 +24,9 @@
#include <Standard_Integer.hxx> #include <Standard_Integer.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Message_ProgressIndicator.hxx>
class Standard_OutOfRange; class Standard_OutOfRange;
class Geom_Curve; class Geom_Curve;
@ -54,11 +57,13 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Dumps the curve on the stream in binary format //! Dumps the curve on the stream in binary format
//! that can be read back. //! that can be read back.
@ -69,28 +74,10 @@ public:
//! method //! method
Standard_EXPORT static Standard_IStream& ReadCurve (Standard_IStream& IS, Handle(Geom_Curve)& C); Standard_EXPORT static Standard_IStream& ReadCurve (Standard_IStream& IS, Handle(Geom_Curve)& C);
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
}; };
#endif // _BinTools_CurveSet_HeaderFile #endif // _BinTools_CurveSet_HeaderFile

View File

@ -51,6 +51,7 @@
#include <TopoDS_Iterator.hxx> #include <TopoDS_Iterator.hxx>
#include <TopoDS_Shape.hxx> #include <TopoDS_Shape.hxx>
#include <TopoDS_Vertex.hxx> #include <TopoDS_Vertex.hxx>
#include <Message_ProgressSentry.hxx>
#include <string.h> #include <string.h>
//#define MDTV_DEB 1 //#define MDTV_DEB 1
@ -294,14 +295,34 @@ void BinTools_ShapeSet::AddGeometry(const TopoDS_Shape& S)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::WriteGeometry(Standard_OStream& OS)const void BinTools_ShapeSet::WriteGeometry (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
myCurves2d.Write(OS); Message_ProgressSentry aPS(theProgress, "Writing geometry", 0, 6, 1);
myCurves.Write(OS); myCurves2d.Write(OS, theProgress);
WritePolygon3D(OS); if (!aPS.More())
WritePolygonOnTriangulation(OS); return;
mySurfaces.Write(OS); aPS.Next();
WriteTriangulation(OS); myCurves.Write(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
WritePolygon3D(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
WritePolygonOnTriangulation(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
mySurfaces.Write(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
WriteTriangulation(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
} }
//======================================================================= //=======================================================================
@ -309,7 +330,8 @@ void BinTools_ShapeSet::WriteGeometry(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::Write(Standard_OStream& OS)const void BinTools_ShapeSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
// write the copyright // write the copyright
@ -330,18 +352,23 @@ void BinTools_ShapeSet::Write(Standard_OStream& OS)const
// write the geometry // write the geometry
//----------------------------------------- //-----------------------------------------
WriteGeometry(OS); Message_ProgressSentry aPS(theProgress, "Writing geometry", 0, 2, 1);
WriteGeometry(OS, theProgress);
if (!aPS.More())
return;
aPS.Next();
//----------------------------------------- //-----------------------------------------
// write the shapes // write the shapes
//----------------------------------------- //-----------------------------------------
Standard_Integer i, nbShapes = myShapes.Extent(); Standard_Integer i, nbShapes = myShapes.Extent();
Message_ProgressSentry aPSinner(theProgress, "Writing shapes", 0, nbShapes, 1);
OS << "\nTShapes " << nbShapes << "\n"; OS << "\nTShapes " << nbShapes << "\n";
// subshapes are written first // subshapes are written first
for (i = 1; i <= nbShapes; i++) { for (i = 1; i <= nbShapes && aPS.More(); i++, aPS.Next()) {
const TopoDS_Shape& S = myShapes(i); const TopoDS_Shape& S = myShapes(i);
@ -369,7 +396,6 @@ void BinTools_ShapeSet::Write(Standard_OStream& OS)const
} }
Write(TopoDS_Shape(),OS); // Null shape to end the list Write(TopoDS_Shape(),OS); // Null shape to end the list
} }
} }
//======================================================================= //=======================================================================
@ -377,7 +403,8 @@ void BinTools_ShapeSet::Write(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::Read(Standard_IStream& IS) void BinTools_ShapeSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Clear(); Clear();
@ -413,9 +440,11 @@ void BinTools_ShapeSet::Read(Standard_IStream& IS)
//----------------------------------------- //-----------------------------------------
// read the geometry // read the geometry
//----------------------------------------- //-----------------------------------------
Message_ProgressSentry aPSouter(theProgress, "Reading", 0, 2, 1);
ReadGeometry(IS); ReadGeometry(IS, theProgress);
if (!aPSouter.More())
return;
aPSouter.Next();
//----------------------------------------- //-----------------------------------------
// read the shapes // read the shapes
//----------------------------------------- //-----------------------------------------
@ -428,12 +457,11 @@ void BinTools_ShapeSet::Read(Standard_IStream& IS)
throw Standard_Failure(aMsg.str().c_str()); throw Standard_Failure(aMsg.str().c_str());
return; return;
} }
Standard_Integer nbShapes = 0; Standard_Integer nbShapes = 0;
IS >> nbShapes; IS >> nbShapes;
IS.get();//remove lf IS.get();//remove lf
Message_ProgressSentry aPSinner(theProgress, "Reading Shapes", 0, nbShapes, 1);
for (int i = 1; i <= nbShapes; i++) { for (int i = 1; i <= nbShapes && aPSinner.More(); i++, aPSinner.Next()) {
TopoDS_Shape S; TopoDS_Shape S;
@ -487,7 +515,8 @@ void BinTools_ShapeSet::Read(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::Write(const TopoDS_Shape& S, Standard_OStream& OS)const void BinTools_ShapeSet::Write (const TopoDS_Shape& S,
Standard_OStream& OS)const
{ {
if (S.IsNull()) if (S.IsNull())
@ -505,8 +534,8 @@ void BinTools_ShapeSet::Write(const TopoDS_Shape& S, Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::Read(TopoDS_Shape& S, Standard_IStream& IS, void BinTools_ShapeSet::Read (TopoDS_Shape& S, Standard_IStream& IS,
const Standard_Integer nbshapes)const const Standard_Integer nbshapes)const
{ {
Standard_Character aChar = '\0'; Standard_Character aChar = '\0';
IS >> aChar; IS >> aChar;
@ -531,14 +560,34 @@ void BinTools_ShapeSet::Read(TopoDS_Shape& S, Standard_IStream& IS,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::ReadGeometry(Standard_IStream& IS) void BinTools_ShapeSet::ReadGeometry (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
myCurves2d.Read(IS); Message_ProgressSentry aPS(theProgress, "Reading geomentry", 0, 6, 1);
myCurves.Read(IS); myCurves2d.Read(IS, theProgress);
ReadPolygon3D(IS); if (!aPS.More())
ReadPolygonOnTriangulation(IS); return;
mySurfaces.Read(IS); aPS.Next();
ReadTriangulation(IS); myCurves.Read(IS, theProgress);
if (!aPS.More())
return;
aPS.Next();
ReadPolygon3D(IS, theProgress);
if (!aPS.More())
return;
aPS.Next();
ReadPolygonOnTriangulation(IS, theProgress);
if (!aPS.More())
return;
aPS.Next();
mySurfaces.Read(IS, theProgress);
if (!aPS.More())
return;
aPS.Next();
ReadTriangulation(IS, theProgress);
if (!aPS.More())
return;
aPS.Next();
} }
//======================================================================= //=======================================================================
@ -546,7 +595,7 @@ void BinTools_ShapeSet::ReadGeometry(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::WriteGeometry(const TopoDS_Shape& S, void BinTools_ShapeSet::WriteGeometry (const TopoDS_Shape& S,
Standard_OStream& OS)const Standard_OStream& OS)const
{ {
// Write the geometry // Write the geometry
@ -1178,14 +1227,17 @@ void BinTools_ShapeSet::AddShapes(TopoDS_Shape& S1,
//function : WritePolygonOnTriangulation //function : WritePolygonOnTriangulation
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::WritePolygonOnTriangulation(Standard_OStream& OS) const void BinTools_ShapeSet::WritePolygonOnTriangulation
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress) const
{ {
const Standard_Integer aNbPol = myNodes.Extent(); const Standard_Integer aNbPol = myNodes.Extent();
OS << "PolygonOnTriangulations " << aNbPol << "\n"; OS << "PolygonOnTriangulations " << aNbPol << "\n";
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol; ++aPolIter) Message_ProgressSentry aPS(theProgress, "Writing polygons on triangulation", 0, aNbPol, 1);
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol && aPS.More(); ++aPolIter, aPS.Next())
{ {
const Handle(Poly_PolygonOnTriangulation)& aPoly = myNodes.FindKey (aPolIter); const Handle(Poly_PolygonOnTriangulation)& aPoly = myNodes.FindKey (aPolIter);
const TColStd_Array1OfInteger& aNodes = aPoly->Nodes(); const TColStd_Array1OfInteger& aNodes = aPoly->Nodes();
@ -1225,7 +1277,9 @@ void BinTools_ShapeSet::WritePolygonOnTriangulation(Standard_OStream& OS) const
//function : ReadPolygonOnTriangulation //function : ReadPolygonOnTriangulation
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS) void BinTools_ShapeSet::ReadPolygonOnTriangulation
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char aHeader[255]; char aHeader[255];
IS >> aHeader; IS >> aHeader;
@ -1240,7 +1294,8 @@ void BinTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS)
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol; ++aPolIter) Message_ProgressSentry aPS(theProgress, "Reading Polygones on triangulation", 0, aNbPol, 1);
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol && aPS.More(); ++aPolIter, aPS.Next())
{ {
Standard_Integer aNbNodes = 0; Standard_Integer aNbNodes = 0;
BinTools::GetInteger(IS, aNbNodes); BinTools::GetInteger(IS, aNbNodes);
@ -1281,14 +1336,16 @@ void BinTools_ShapeSet::ReadPolygonOnTriangulation(Standard_IStream& IS)
//function : WritePolygon3D //function : WritePolygon3D
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::WritePolygon3D(Standard_OStream& OS)const void BinTools_ShapeSet::WritePolygon3D(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
const Standard_Integer aNbPol = myPolygons3D.Extent(); const Standard_Integer aNbPol = myPolygons3D.Extent();
OS << "Polygon3D " << aNbPol << "\n"; OS << "Polygon3D " << aNbPol << "\n";
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol; ++aPolIter) Message_ProgressSentry aPS(theProgress, "Writing polygons 3D", 0, aNbPol, 1);
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol && aPS.More(); ++aPolIter, aPS.Next())
{ {
const Handle(Poly_Polygon3D)& aPoly = myPolygons3D.FindKey (aPolIter); const Handle(Poly_Polygon3D)& aPoly = myPolygons3D.FindKey (aPolIter);
BinTools::PutInteger(OS, aPoly->NbNodes()); BinTools::PutInteger(OS, aPoly->NbNodes());
@ -1328,7 +1385,8 @@ void BinTools_ShapeSet::WritePolygon3D(Standard_OStream& OS)const
//function : ReadPolygon3D //function : ReadPolygon3D
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS) void BinTools_ShapeSet::ReadPolygon3D (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char aHeader[255]; char aHeader[255];
IS >> aHeader; IS >> aHeader;
@ -1347,7 +1405,8 @@ void BinTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS)
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol; ++aPolIter) Message_ProgressSentry aPS(theProgress, "Reading polygones 3D", 0, aNbPol, 1);
for (Standard_Integer aPolIter = 1; aPolIter <= aNbPol && aPS.More(); ++aPolIter, aPS.Next())
{ {
Standard_Integer aNbNodes = 0; Standard_Integer aNbNodes = 0;
Standard_Boolean hasParameters = Standard_False; Standard_Boolean hasParameters = Standard_False;
@ -1392,7 +1451,8 @@ void BinTools_ShapeSet::ReadPolygon3D(Standard_IStream& IS)
//function : WriteTriangulation //function : WriteTriangulation
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::WriteTriangulation(Standard_OStream& OS) const void BinTools_ShapeSet::WriteTriangulation (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress) const
{ {
const Standard_Integer aNbTriangulations = myTriangulations.Extent(); const Standard_Integer aNbTriangulations = myTriangulations.Extent();
OS << "Triangulations " << aNbTriangulations << "\n"; OS << "Triangulations " << aNbTriangulations << "\n";
@ -1400,7 +1460,8 @@ void BinTools_ShapeSet::WriteTriangulation(Standard_OStream& OS) const
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aTriangulationIter = 1; aTriangulationIter <= aNbTriangulations; ++aTriangulationIter) Message_ProgressSentry aPS(theProgress, "Writing triangulation", 0, aNbTriangulations, 1);
for (Standard_Integer aTriangulationIter = 1; aTriangulationIter <= aNbTriangulations && aPS.More(); ++aTriangulationIter, aPS.Next())
{ {
const Handle(Poly_Triangulation)& aTriangulation = myTriangulations.FindKey (aTriangulationIter); const Handle(Poly_Triangulation)& aTriangulation = myTriangulations.FindKey (aTriangulationIter);
const Standard_Integer aNbNodes = aTriangulation->NbNodes(); const Standard_Integer aNbNodes = aTriangulation->NbNodes();
@ -1453,7 +1514,8 @@ void BinTools_ShapeSet::WriteTriangulation(Standard_OStream& OS) const
//function : ReadTriangulation //function : ReadTriangulation
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_ShapeSet::ReadTriangulation (Standard_IStream& IS) void BinTools_ShapeSet::ReadTriangulation (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char aHeader[255]; char aHeader[255];
IS >> aHeader; IS >> aHeader;
@ -1469,7 +1531,8 @@ void BinTools_ShapeSet::ReadTriangulation (Standard_IStream& IS)
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
for (Standard_Integer aTriangulationIter = 1; aTriangulationIter <= aNbTriangulations; ++aTriangulationIter) Message_ProgressSentry aPS(theProgress, "Reading triangulation", 0, aNbTriangulations, 1);
for (Standard_Integer aTriangulationIter = 1; aTriangulationIter <= aNbTriangulations && aPS.More(); ++aTriangulationIter, aPS.Next())
{ {
Standard_Integer aNbNodes = 0, aNbTriangles = 0; Standard_Integer aNbNodes = 0, aNbTriangles = 0;
Standard_Boolean hasUV = Standard_False; Standard_Boolean hasUV = Standard_False;

View File

@ -32,6 +32,7 @@
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <TopAbs_ShapeEnum.hxx> #include <TopAbs_ShapeEnum.hxx>
class TopoDS_Shape; class TopoDS_Shape;
class BinTools_LocationSet; class BinTools_LocationSet;
@ -98,7 +99,9 @@ public:
//! Write the type. //! Write the type.
//! calls WriteGeometry(S). //! calls WriteGeometry(S).
//! Write the flags, the subshapes. //! Write the flags, the subshapes.
Standard_EXPORT virtual void Write (Standard_OStream& OS) const; Standard_EXPORT virtual void Write
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the binary stream <IS>. me //! Reads the content of me from the binary stream <IS>. me
//! is first cleared. //! is first cleared.
@ -112,7 +115,9 @@ public:
//! Reads the type. //! Reads the type.
//! calls ReadGeometry(T,S). //! calls ReadGeometry(T,S).
//! Reads the flag, the subshapes. //! Reads the flag, the subshapes.
Standard_EXPORT virtual void Read (Standard_IStream& IS); Standard_EXPORT virtual void Read
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes on <OS> the shape <S>. Writes the //! Writes on <OS> the shape <S>. Writes the
//! orientation, the index of the TShape and the index //! orientation, the index of the TShape and the index
@ -121,14 +126,20 @@ public:
//! Writes the geometry of me on the stream <OS> in a //! Writes the geometry of me on the stream <OS> in a
//! binary format that can be read back by Read. //! binary format that can be read back by Read.
Standard_EXPORT virtual void WriteGeometry (Standard_OStream& OS) const; Standard_EXPORT virtual void WriteGeometry
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the geometry of me from the stream <IS>. //! Reads the geometry of me from the stream <IS>.
Standard_EXPORT virtual void ReadGeometry (Standard_IStream& IS); Standard_EXPORT virtual void ReadGeometry
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Reads from <IS> a shape and returns it in S. //! Reads from <IS> a shape and returns it in S.
//! <NbShapes> is the number of tshapes in the set. //! <NbShapes> is the number of tshapes in the set.
Standard_EXPORT virtual void Read (TopoDS_Shape& S, Standard_IStream& IS, const Standard_Integer NbShapes) const; Standard_EXPORT virtual void Read
(TopoDS_Shape& S,
Standard_IStream& IS, const Standard_Integer NbShapes) const;
//! Writes the geometry of <S> on the stream <OS> in a //! Writes the geometry of <S> on the stream <OS> in a
//! binary format that can be read back by Read. //! binary format that can be read back by Read.
@ -146,30 +157,42 @@ public:
//! Reads the 3d polygons of me //! Reads the 3d polygons of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadPolygon3D (Standard_IStream& IS); Standard_EXPORT void ReadPolygon3D
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes the 3d polygons //! Writes the 3d polygons
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WritePolygon3D (Standard_OStream& OS) const; Standard_EXPORT void WritePolygon3D
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the triangulation of me //! Reads the triangulation of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadTriangulation (Standard_IStream& IS); Standard_EXPORT void ReadTriangulation
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes the triangulation //! Writes the triangulation
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WriteTriangulation (Standard_OStream& OS) const; Standard_EXPORT void WriteTriangulation
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the polygons on triangulation of me //! Reads the polygons on triangulation of me
//! from the stream <IS>. //! from the stream <IS>.
Standard_EXPORT void ReadPolygonOnTriangulation (Standard_IStream& IS); Standard_EXPORT void ReadPolygonOnTriangulation
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Writes the polygons on triangulation //! Writes the polygons on triangulation
//! on the stream <OS> in a format that can //! on the stream <OS> in a format that can
//! be read back by Read. //! be read back by Read.
Standard_EXPORT void WritePolygonOnTriangulation (Standard_OStream& OS) const; Standard_EXPORT void WritePolygonOnTriangulation
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
private: private:

View File

@ -42,6 +42,7 @@
#include <TColStd_Array1OfInteger.hxx> #include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array1OfReal.hxx> #include <TColStd_Array1OfReal.hxx>
#include <TColStd_Array2OfReal.hxx> #include <TColStd_Array2OfReal.hxx>
#include <Message_ProgressSentry.hxx>
#define PLANE 1 #define PLANE 1
#define CYLINDER 2 #define CYLINDER 2
@ -436,12 +437,14 @@ void BinTools_SurfaceSet::WriteSurface(const Handle(Geom_Surface)& S,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_SurfaceSet::Write(Standard_OStream& OS)const void BinTools_SurfaceSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
Standard_Integer i, nbsurf = myMap.Extent(); Standard_Integer i, nbsurf = myMap.Extent();
Message_ProgressSentry aPS(theProgress, "Writing surfases", 0, nbsurf, 1);
OS << "Surfaces "<< nbsurf << "\n"; OS << "Surfaces "<< nbsurf << "\n";
for (i = 1; i <= nbsurf; i++) { for (i = 1; i <= nbsurf && aPS.More(); i++, aPS.Next()) {
WriteSurface(Handle(Geom_Surface)::DownCast(myMap(i)),OS); WriteSurface(Handle(Geom_Surface)::DownCast(myMap(i)),OS);
} }
@ -873,7 +876,8 @@ Standard_IStream& BinTools_SurfaceSet::ReadSurface(Standard_IStream& IS,
//purpose : //purpose :
//======================================================================= //=======================================================================
void BinTools_SurfaceSet::Read(Standard_IStream& IS) void BinTools_SurfaceSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -890,10 +894,10 @@ void BinTools_SurfaceSet::Read(Standard_IStream& IS)
Handle(Geom_Surface) S; Handle(Geom_Surface) S;
Standard_Integer i, nbsurf; Standard_Integer i, nbsurf;
IS >> nbsurf; IS >> nbsurf;
Message_ProgressSentry aPS(theProgress, "Reading surfaces", 0, nbsurf, 1);
IS.get ();//remove <lf> IS.get ();//remove <lf>
for (i = 1; i <= nbsurf; i++) { for (i = 1; i <= nbsurf && aPS.More(); i++, aPS.Next()) {
BinTools_SurfaceSet::ReadSurface(IS,S); BinTools_SurfaceSet::ReadSurface(IS,S);
myMap.Add(S); myMap.Add(S);
} }
} }

View File

@ -24,6 +24,9 @@
#include <Standard_Integer.hxx> #include <Standard_Integer.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Message_ProgressIndicator.hxx>
class Standard_OutOfRange; class Standard_OutOfRange;
class Geom_Surface; class Geom_Surface;
@ -54,11 +57,13 @@ public:
//! Writes the content of me on the stream <OS> in //! Writes the content of me on the stream <OS> in
//! binary format that can be read back by Read. //! binary format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Dumps the surface on the stream in binary //! Dumps the surface on the stream in binary
//! format that can be read back. //! format that can be read back.
@ -69,28 +74,10 @@ public:
//! method. //! method.
Standard_EXPORT static Standard_IStream& ReadSurface (Standard_IStream& IS, Handle(Geom_Surface)& S); Standard_EXPORT static Standard_IStream& ReadSurface (Standard_IStream& IS, Handle(Geom_Surface)& S);
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
}; };
#endif // _BinTools_SurfaceSet_HeaderFile #endif // _BinTools_SurfaceSet_HeaderFile

View File

@ -33,6 +33,7 @@
#include <Standard_NoSuchObject.hxx> #include <Standard_NoSuchObject.hxx>
#include <Standard_ProgramError.hxx> #include <Standard_ProgramError.hxx>
#include <UTL.hxx> #include <UTL.hxx>
#include <Message_ProgressSentry.hxx>
IMPLEMENT_STANDARD_RTTIEXT(CDF_Application,CDM_Application) IMPLEMENT_STANDARD_RTTIEXT(CDF_Application,CDM_Application)
@ -84,21 +85,24 @@ void CDF_Application::Close(const Handle(CDM_Document)& aDocument) {
//function : Retrieve //function : Retrieve
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(CDM_Document) CDF_Application::Retrieve(const TCollection_ExtendedString& aFolder, Handle(CDM_Document) CDF_Application::Retrieve (const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aName,
const Standard_Boolean UseStorageConfiguration) { const Standard_Boolean UseStorageConfiguration,
const Handle(Message_ProgressIndicator)& theProgress)
{
TCollection_ExtendedString nullVersion; TCollection_ExtendedString nullVersion;
return Retrieve(aFolder,aName,nullVersion,UseStorageConfiguration); return Retrieve(aFolder, aName, nullVersion, UseStorageConfiguration, theProgress);
} }
//======================================================================= //=======================================================================
//function : Retrieve //function : Retrieve
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(CDM_Document) CDF_Application::Retrieve(const TCollection_ExtendedString& aFolder, Handle(CDM_Document) CDF_Application::Retrieve (const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aName,
const TCollection_ExtendedString& aVersion, const TCollection_ExtendedString& aVersion,
const Standard_Boolean UseStorageConfiguration) const Standard_Boolean UseStorageConfiguration,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Handle(CDM_MetaData) theMetaData; Handle(CDM_MetaData) theMetaData;
@ -108,7 +112,8 @@ Handle(CDM_Document) CDF_Application::Retrieve(const TCollection_ExtendedString
theMetaData=theMetaDataDriver->MetaData(aFolder,aName,aVersion); theMetaData=theMetaDataDriver->MetaData(aFolder,aName,aVersion);
CDF_TypeOfActivation theTypeOfActivation=TypeOfActivation(theMetaData); CDF_TypeOfActivation theTypeOfActivation=TypeOfActivation(theMetaData);
Handle(CDM_Document) theDocument=Retrieve(theMetaData,UseStorageConfiguration,Standard_False); Handle(CDM_Document) theDocument = Retrieve(theMetaData, UseStorageConfiguration,
Standard_False, theProgress);
CDF_Session::CurrentSession()->Directory()->Add(theDocument); CDF_Session::CurrentSession()->Directory()->Add(theDocument);
Activate(theDocument,theTypeOfActivation); Activate(theDocument,theTypeOfActivation);
@ -204,15 +209,20 @@ Standard_Boolean CDF_Application::SetDefaultFolder(const Standard_ExtString aFol
//function : Retrieve //function : Retrieve
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMetaData,const Standard_Boolean UseStorageConfiguration) { Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMetaData,
return Retrieve(aMetaData,UseStorageConfiguration,Standard_True); const Standard_Boolean UseStorageConfiguration,
const Handle(Message_ProgressIndicator)& theProgress) {
return Retrieve(aMetaData, UseStorageConfiguration, Standard_True, theProgress);
} }
//======================================================================= //=======================================================================
//function : Retrieve //function : Retrieve
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMetaData,const Standard_Boolean UseStorageConfiguration, const Standard_Boolean IsComponent) { Handle(CDM_Document) CDF_Application::Retrieve (const Handle(CDM_MetaData)& aMetaData,
const Standard_Boolean UseStorageConfiguration,
const Standard_Boolean IsComponent,
const Handle(Message_ProgressIndicator)& theProgress) {
Handle(CDM_Document) theDocumentToReturn; Handle(CDM_Document) theDocumentToReturn;
myRetrievableStatus = PCDM_RS_DriverFailure; myRetrievableStatus = PCDM_RS_DriverFailure;
@ -265,7 +275,7 @@ Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMeta
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
theReader->Read(aMetaData->FileName(),theDocument,this); theReader->Read (aMetaData->FileName(), theDocument, this, theProgress);
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
myRetrievableStatus = theReader->GetStatus(); myRetrievableStatus = theReader->GetStatus();
@ -320,7 +330,8 @@ CDF_TypeOfActivation CDF_Application::TypeOfActivation(const Handle(CDM_MetaData
//function : Read //function : Read
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(CDM_Document) CDF_Application::Read (Standard_IStream& theIStream) Handle(CDM_Document) CDF_Application::Read (Standard_IStream& theIStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Handle(CDM_Document) aDoc; Handle(CDM_Document) aDoc;
Handle(Storage_Data) dData; Handle(Storage_Data) dData;
@ -358,8 +369,7 @@ Handle(CDM_Document) CDF_Application::Read (Standard_IStream& theIStream)
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
aReader->Read (theIStream, dData, aDoc, this, theProgress);
aReader->Read (theIStream, dData, aDoc, this);
} }
catch (Standard_Failure const& anException) catch (Standard_Failure const& anException)
{ {

View File

@ -87,7 +87,11 @@ public:
//! //!
//! Since the version is not specified in this syntax, the latest wil be used. //! Since the version is not specified in this syntax, the latest wil be used.
//! A link is kept with the database through an instance of CDM_MetaData //! A link is kept with the database through an instance of CDM_MetaData
Standard_EXPORT Handle(CDM_Document) Retrieve (const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const Standard_Boolean UseStorageConfiguration = Standard_True); Standard_EXPORT Handle(CDM_Document) Retrieve
(const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName,
const Standard_Boolean UseStorageConfiguration = Standard_True,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! This method retrieves a document from the database. //! This method retrieves a document from the database.
//! If the Document references other documents which have //! If the Document references other documents which have
@ -103,18 +107,28 @@ public:
//! Handle(CDM_Document) theDocument=myApplication->Retrieve("|user|cascade","box","2"); //! Handle(CDM_Document) theDocument=myApplication->Retrieve("|user|cascade","box","2");
//! A link is kept with the database through an instance //! A link is kept with the database through an instance
//! of CDM_MetaData //! of CDM_MetaData
Standard_EXPORT Handle(CDM_Document) Retrieve (const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aVersion, const Standard_Boolean UseStorageConfiguration = Standard_True); Standard_EXPORT Handle(CDM_Document) Retrieve
(const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName,
const TCollection_ExtendedString& aVersion,
const Standard_Boolean UseStorageConfiguration = Standard_True,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName); Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName);
Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aVersion); Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const TCollection_ExtendedString& aFolder,
const TCollection_ExtendedString& aName,
const TCollection_ExtendedString& aVersion);
//! Checks status after Retrieve //! Checks status after Retrieve
PCDM_ReaderStatus GetRetrieveStatus() const { return myRetrievableStatus; } PCDM_ReaderStatus GetRetrieveStatus() const { return myRetrievableStatus; }
//! Reads aDoc from standard SEEKABLE stream theIStream, //! Reads aDoc from standard SEEKABLE stream theIStream,
//! the stream should support SEEK fuctionality //! the stream should support SEEK fuctionality
Standard_EXPORT Handle(CDM_Document) Read (Standard_IStream& theIStream); Standard_EXPORT Handle(CDM_Document) Read
(Standard_IStream& theIStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Returns instance of read driver for specified format. //! Returns instance of read driver for specified format.
//! //!
@ -147,7 +161,8 @@ public:
//! try to retrieve a Format directly in the file or in //! try to retrieve a Format directly in the file or in
//! application resource by using extension. returns //! application resource by using extension. returns
//! True if found; //! True if found;
Standard_EXPORT Standard_Boolean Format (const TCollection_ExtendedString& aFileName, TCollection_ExtendedString& theFormat); Standard_EXPORT Standard_Boolean Format (const TCollection_ExtendedString& aFileName,
TCollection_ExtendedString& theFormat);
Standard_EXPORT Standard_ExtString DefaultFolder(); Standard_EXPORT Standard_ExtString DefaultFolder();
@ -158,15 +173,6 @@ friend class CDF_Session;
DEFINE_STANDARD_RTTIEXT(CDF_Application,CDM_Application) DEFINE_STANDARD_RTTIEXT(CDF_Application,CDM_Application)
protected:
Standard_EXPORT CDF_Application();
PCDM_ReaderStatus myRetrievableStatus;
NCollection_IndexedDataMap<TCollection_ExtendedString, Handle(PCDM_RetrievalDriver)> myReaders;
NCollection_IndexedDataMap<TCollection_ExtendedString, Handle(PCDM_StorageDriver)> myWriters;
private: private:
@ -183,11 +189,19 @@ private:
//! retrieved and modified since the previous retrieval. //! retrieved and modified since the previous retrieval.
//! You do not need to call <Activate>, but you should redefine //! You do not need to call <Activate>, but you should redefine
//! this method to implement application specific behavior. //! this method to implement application specific behavior.
Standard_EXPORT virtual void Activate (const Handle(CDM_Document)& aDocument, const CDF_TypeOfActivation aTypeOfActivation); Standard_EXPORT virtual void Activate (const Handle(CDM_Document)& aDocument,
const CDF_TypeOfActivation aTypeOfActivation);
Standard_EXPORT Handle(CDM_Document) Retrieve (const Handle(CDM_MetaData)& aMetaData, const Standard_Boolean UseStorageConfiguration) Standard_OVERRIDE; Standard_EXPORT Handle(CDM_Document) Retrieve
(const Handle(CDM_MetaData)& aMetaData,
const Standard_Boolean UseStorageConfiguration,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT Handle(CDM_Document) Retrieve (const Handle(CDM_MetaData)& aMetaData, const Standard_Boolean UseStorageConfiguration, const Standard_Boolean IsComponent); Standard_EXPORT Handle(CDM_Document) Retrieve
(const Handle(CDM_MetaData)& aMetaData,
const Standard_Boolean UseStorageConfiguration,
const Standard_Boolean IsComponent,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT Standard_Integer DocumentVersion (const Handle(CDM_MetaData)& theMetaData) Standard_OVERRIDE; Standard_EXPORT Standard_Integer DocumentVersion (const Handle(CDM_MetaData)& theMetaData) Standard_OVERRIDE;
@ -195,6 +209,14 @@ private:
Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const Handle(CDM_MetaData)& aMetaData); Standard_EXPORT PCDM_ReaderStatus CanRetrieve (const Handle(CDM_MetaData)& aMetaData);
protected:
Standard_EXPORT CDF_Application();
PCDM_ReaderStatus myRetrievableStatus;
NCollection_IndexedDataMap<TCollection_ExtendedString, Handle(PCDM_RetrievalDriver)> myReaders;
NCollection_IndexedDataMap<TCollection_ExtendedString, Handle(PCDM_StorageDriver)> myWriters;
private: private:
TCollection_ExtendedString myDefaultFolder; TCollection_ExtendedString myDefaultFolder;
}; };

View File

@ -145,11 +145,12 @@ CDF_StoreSetNameStatus CDF_Store::SetName(const Standard_ExtString aName)
return SetName(theName); return SetName(theName);
} }
void CDF_Store::Realize() { void CDF_Store::Realize (const Handle(Message_ProgressIndicator)& theProgress)
{
Standard_ProgramError_Raise_if(!myList->IsConsistent(),"information are missing"); Standard_ProgramError_Raise_if(!myList->IsConsistent(),"information are missing");
Handle(CDM_MetaData) m; Handle(CDM_MetaData) m;
myText = ""; myText = "";
myStatus = myList->Store(m,myText); myStatus = myList->Store(m, myText, theProgress);
if(myStatus==PCDM_SS_OK) myPath = m->Path(); if(myStatus==PCDM_SS_OK) myPath = m->Path();
} }
Standard_ExtString CDF_Store::Path() const { Standard_ExtString CDF_Store::Path() const {

View File

@ -28,6 +28,9 @@
#include <Standard_ExtString.hxx> #include <Standard_ExtString.hxx>
#include <CDF_StoreSetNameStatus.hxx> #include <CDF_StoreSetNameStatus.hxx>
#include <CDF_SubComponentStatus.hxx> #include <CDF_SubComponentStatus.hxx>
#include <Message_ProgressIndicator.hxx>
class CDF_StoreList; class CDF_StoreList;
class CDM_Document; class CDM_Document;
class TCollection_ExtendedString; class TCollection_ExtendedString;
@ -85,7 +88,7 @@ public:
Standard_EXPORT Standard_Boolean SetPreviousVersion (const Standard_ExtString aPreviousVersion); Standard_EXPORT Standard_Boolean SetPreviousVersion (const Standard_ExtString aPreviousVersion);
Standard_EXPORT void Realize(); Standard_EXPORT void Realize (const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! returns the complete path of the created meta-data. //! returns the complete path of the created meta-data.
Standard_EXPORT Standard_ExtString Path() const; Standard_EXPORT Standard_ExtString Path() const;

View File

@ -74,8 +74,10 @@ void CDF_StoreList::Next() {
Handle(CDM_Document) CDF_StoreList::Value() const { Handle(CDM_Document) CDF_StoreList::Value() const {
return myIterator.Key(); return myIterator.Key();
} }
PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData, TCollection_ExtendedString& aStatusAssociatedText) { PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData,
TCollection_ExtendedString& aStatusAssociatedText,
const Handle(Message_ProgressIndicator)& theProgress)
{
Handle(CDF_MetaDataDriver) theMetaDataDriver = CDF_Session::CurrentSession()->MetaDataDriver(); Handle(CDF_MetaDataDriver) theMetaDataDriver = CDF_Session::CurrentSession()->MetaDataDriver();
PCDM_StoreStatus status = PCDM_SS_OK; PCDM_StoreStatus status = PCDM_SS_OK;
@ -112,7 +114,7 @@ PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData, TCollect
} }
TCollection_ExtendedString theName=theMetaDataDriver->BuildFileName(theDocument); TCollection_ExtendedString theName=theMetaDataDriver->BuildFileName(theDocument);
aDocumentStorageDriver->Write(theDocument,theName); aDocumentStorageDriver->Write(theDocument, theName, theProgress);
status = aDocumentStorageDriver->GetStoreStatus(); status = aDocumentStorageDriver->GetStoreStatus();
aMetaData = theMetaDataDriver->CreateMetaData(theDocument,theName); aMetaData = theMetaDataDriver->CreateMetaData(theDocument,theName);
theDocument->SetMetaData(aMetaData); theDocument->SetMetaData(aMetaData);

View File

@ -26,6 +26,8 @@
#include <Standard_Transient.hxx> #include <Standard_Transient.hxx>
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
#include <PCDM_StoreStatus.hxx> #include <PCDM_StoreStatus.hxx>
#include <Message_ProgressIndicator.hxx>
class CDM_Document; class CDM_Document;
class Standard_NoSuchObject; class Standard_NoSuchObject;
class CDM_MetaData; class CDM_MetaData;
@ -48,7 +50,9 @@ public:
//! stores each object of the storelist in the reverse //! stores each object of the storelist in the reverse
//! order of which they had been added. //! order of which they had been added.
Standard_EXPORT PCDM_StoreStatus Store (Handle(CDM_MetaData)& aMetaData, TCollection_ExtendedString& aStatusAssociatedText); Standard_EXPORT PCDM_StoreStatus Store (Handle(CDM_MetaData)& aMetaData,
TCollection_ExtendedString& aStatusAssociatedText,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT void Init(); Standard_EXPORT void Init();

View File

@ -26,6 +26,7 @@
#include <Standard_ExtString.hxx> #include <Standard_ExtString.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>
#include <TCollection_ExtendedString.hxx> #include <TCollection_ExtendedString.hxx>
#include <Message_ProgressIndicator.hxx>
class CDM_Reference; class CDM_Reference;
class CDM_MetaData; class CDM_MetaData;
@ -88,7 +89,10 @@ protected:
private: private:
Standard_EXPORT virtual Handle(CDM_Document) Retrieve (const Handle(CDM_MetaData)& aMetaData, const Standard_Boolean UseStorageConfiguration) = 0; Standard_EXPORT virtual Handle(CDM_Document) Retrieve
(const Handle(CDM_MetaData)& aMetaData,
const Standard_Boolean UseStorageConfiguration,
const Handle(Message_ProgressIndicator)& theProgress = NULL) = 0;
//! returns -1 if the metadata has no modification counter. //! returns -1 if the metadata has no modification counter.
Standard_EXPORT virtual Standard_Integer DocumentVersion (const Handle(CDM_MetaData)& aMetaData) = 0; Standard_EXPORT virtual Standard_Integer DocumentVersion (const Handle(CDM_MetaData)& aMetaData) = 0;

View File

@ -1584,10 +1584,8 @@ static void ssave(const Handle(Draw_Drawable3D)&d, std::ostream& OS)
N = Handle(DBRep_DrawableShape)::DownCast(d); N = Handle(DBRep_DrawableShape)::DownCast(d);
BRep_Builder B; BRep_Builder B;
BRepTools_ShapeSet S(B); BRepTools_ShapeSet S(B);
if(!Draw::GetProgressBar().IsNull()) S.Add (N->Shape());
S.SetProgress(Draw::GetProgressBar()); S.Write (OS, Draw::GetProgressBar());
S.Add(N->Shape());
S.Write(OS);
if(!Draw::GetProgressBar().IsNull() && Draw::GetProgressBar()->UserBreak()) if(!Draw::GetProgressBar().IsNull() && Draw::GetProgressBar()->UserBreak())
return; return;
S.Write(N->Shape(),OS); S.Write(N->Shape(),OS);
@ -1597,9 +1595,7 @@ static Handle(Draw_Drawable3D) srestore (std::istream& IS)
{ {
BRep_Builder B; BRep_Builder B;
BRepTools_ShapeSet S(B); BRepTools_ShapeSet S(B);
if(!Draw::GetProgressBar().IsNull()) S.Read (IS, Draw::GetProgressBar());
S.SetProgress(Draw::GetProgressBar());
S.Read(IS);
Handle(DBRep_DrawableShape) N; Handle(DBRep_DrawableShape) N;
if(!Draw::GetProgressBar().IsNull() && Draw::GetProgressBar()->UserBreak()) if(!Draw::GetProgressBar().IsNull() && Draw::GetProgressBar()->UserBreak())
return N; return N;

View File

@ -17,6 +17,7 @@
#include <Draw.hxx> #include <Draw.hxx>
#include <Draw_Interpretor.hxx> #include <Draw_Interpretor.hxx>
#include <Draw_Viewer.hxx> #include <Draw_Viewer.hxx>
#include <Draw_ProgressIndicator.hxx>
#include <DDocStd_DrawDocument.hxx> #include <DDocStd_DrawDocument.hxx>
#include <TDocStd_Application.hxx> #include <TDocStd_Application.hxx>
#include <TDocStd_Document.hxx> #include <TDocStd_Document.hxx>
@ -126,8 +127,8 @@ static Standard_Integer DDocStd_NewDocument (Draw_Interpretor& di,
//======================================================================= //=======================================================================
static Standard_Integer DDocStd_Open (Draw_Interpretor& di, static Standard_Integer DDocStd_Open (Draw_Interpretor& di,
Standard_Integer nb, Standard_Integer nb,
const char** a) const char** a)
{ {
if (nb >= 3) { if (nb >= 3) {
TCollection_ExtendedString path (a[1]); TCollection_ExtendedString path (a[1]);
@ -151,53 +152,61 @@ static Standard_Integer DDocStd_Open (Draw_Interpretor& di,
} }
} }
Handle(Draw_ProgressIndicator) aProgress = new Draw_ProgressIndicator(di, 1);
if (anUseStream) if (anUseStream)
{ {
std::ifstream aFileStream; std::ifstream aFileStream;
OSD_OpenStream (aFileStream, path, std::ios::in | std::ios::binary); OSD_OpenStream (aFileStream, path, std::ios::in | std::ios::binary);
theStatus = A->Open (aFileStream, D); theStatus = A->Open (aFileStream, D, aProgress);
} }
else else
{ {
theStatus = A->Open(path,D); theStatus = A->Open (path, D, aProgress);
} }
if (theStatus == PCDM_RS_OK && !D.IsNull()) { if (theStatus == PCDM_RS_OK && !D.IsNull())
{
Handle(DDocStd_DrawDocument) DD = new DDocStd_DrawDocument(D); Handle(DDocStd_DrawDocument) DD = new DDocStd_DrawDocument(D);
TDataStd_Name::Set(D->GetData()->Root(),a[2]); TDataStd_Name::Set(D->GetData()->Root(),a[2]);
Draw::Set(a[2],DD); Draw::Set(a[2],DD);
return 0; return 0;
} else { }
else
{
switch ( theStatus ) { switch ( theStatus ) {
case PCDM_RS_UserBreak: {
di << " could not retrieve , user break \n";
break;
}
case PCDM_RS_AlreadyRetrieved: case PCDM_RS_AlreadyRetrieved:
case PCDM_RS_AlreadyRetrievedAndModified: { case PCDM_RS_AlreadyRetrievedAndModified: {
di << " already retrieved \n" ; di << " already retrieved \n" ;
break; break;
} }
case PCDM_RS_NoDriver: { case PCDM_RS_NoDriver: {
di << " could not retrieve , no Driver to make it \n" ; di << " could not retrieve , no Driver to make it \n" ;
break ; break ;
} }
case PCDM_RS_UnknownDocument: case PCDM_RS_UnknownDocument:
case PCDM_RS_NoModel: { case PCDM_RS_NoModel: {
di << " could not retrieve , Unknown Document or No Model \n"; di << " could not retrieve , Unknown Document or No Model \n";
break ; break ;
} }
case PCDM_RS_TypeNotFoundInSchema: case PCDM_RS_TypeNotFoundInSchema:
case PCDM_RS_UnrecognizedFileFormat: { case PCDM_RS_UnrecognizedFileFormat: {
di << " could not retrieve , Type not found or Unrecognized File Format\n"; di << " could not retrieve , Type not found or Unrecognized File Format\n";
break ; break ;
} }
case PCDM_RS_PermissionDenied: { case PCDM_RS_PermissionDenied: {
di << " could not retrieve , permission denied \n" ; di << " could not retrieve , permission denied \n" ;
break; break;
} }
default: default:
di << " could not retrieve \n" ; di << " could not retrieve \n" ;
break; break;
} }
di << "DDocStd_Open : Error\n"; di << "DDocStd_Open : Error\n";
} }
} }
return 1; return 1;
} }
@ -208,8 +217,8 @@ static Standard_Integer DDocStd_Open (Draw_Interpretor& di,
//======================================================================= //=======================================================================
static Standard_Integer DDocStd_Save (Draw_Interpretor& di, static Standard_Integer DDocStd_Save (Draw_Interpretor& di,
Standard_Integer nb, Standard_Integer nb,
const char** a) const char** a)
{ {
if (nb == 2) { if (nb == 2) {
Handle(TDocStd_Document) D; Handle(TDocStd_Document) D;
@ -219,7 +228,9 @@ static Standard_Integer DDocStd_Save (Draw_Interpretor& di,
di << "this document has never been saved\n"; di << "this document has never been saved\n";
return 0; return 0;
} }
A->Save(D);
Handle(Draw_ProgressIndicator) aProgress = new Draw_ProgressIndicator(di, 1);
A->Save (D, aProgress);
return 0; return 0;
} }
di << "DDocStd_Save : Error\n"; di << "DDocStd_Save : Error\n";
@ -255,15 +266,17 @@ static Standard_Integer DDocStd_SaveAs (Draw_Interpretor& di,
D->SetEmptyLabelsSavingMode(isSaveEmptyLabels); D->SetEmptyLabelsSavingMode(isSaveEmptyLabels);
} }
} }
Handle(Draw_ProgressIndicator) aProgress = new Draw_ProgressIndicator(di, 1);
if (anUseStream) if (anUseStream)
{ {
std::ofstream aFileStream; std::ofstream aFileStream;
OSD_OpenStream (aFileStream, path, std::ios::out | std::ios::binary); OSD_OpenStream (aFileStream, path, std::ios::out | std::ios::binary);
theStatus = A->SaveAs (D, aFileStream); theStatus = A->SaveAs (D, aFileStream, aProgress);
} }
else else
{ {
theStatus = A->SaveAs(D,path); theStatus = A->SaveAs(D,path, aProgress);
} }
if (theStatus != PCDM_SS_OK ) { if (theStatus != PCDM_SS_OK ) {
@ -292,6 +305,10 @@ static Standard_Integer DDocStd_SaveAs (Draw_Interpretor& di,
di << "Error saving document: Write info section failure\n" ; di << "Error saving document: Write info section failure\n" ;
break; break;
} }
case PCDM_SS_UserBreak: {
di << "Error saving document: User break \n" ;
break;
}
default: default:
break; break;
} }

View File

@ -496,15 +496,15 @@ void GeomTools_Curve2dSet::Dump(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_Curve2dSet::Write(Standard_OStream& OS)const void GeomTools_Curve2dSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress)const
{ {
std::streamsize prec = OS.precision(17); std::streamsize prec = OS.precision(17);
Standard_Integer i, nbsurf = myMap.Extent(); Standard_Integer i, nbsurf = myMap.Extent();
OS << "Curve2ds "<< nbsurf << "\n"; OS << "Curve2ds "<< nbsurf << "\n";
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "2D Curves", 0, nbsurf, 1);
Message_ProgressSentry PS(progress, "2D Curves", 0, nbsurf, 1);
for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) {
PrintCurve2d(Handle(Geom2d_Curve)::DownCast(myMap(i)),OS,Standard_True); PrintCurve2d(Handle(Geom2d_Curve)::DownCast(myMap(i)),OS,Standard_True);
} }
@ -840,7 +840,8 @@ Handle(Geom2d_Curve) GeomTools_Curve2dSet::ReadCurve2d(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_Curve2dSet::Read(Standard_IStream& IS) void GeomTools_Curve2dSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -852,32 +853,9 @@ void GeomTools_Curve2dSet::Read(Standard_IStream& IS)
Standard_Integer i, nbcurve; Standard_Integer i, nbcurve;
IS >> nbcurve; IS >> nbcurve;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "2D Curves", 0, nbcurve, 1);
Message_ProgressSentry PS(progress, "2D Curves", 0, nbcurve, 1);
for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) {
Handle(Geom2d_Curve) C = GeomTools_Curve2dSet::ReadCurve2d (IS); Handle(Geom2d_Curve) C = GeomTools_Curve2dSet::ReadCurve2d (IS);
myMap.Add(C); myMap.Add(C);
} }
} }
//=======================================================================
//function : GetProgress
//purpose :
//=======================================================================
Handle(Message_ProgressIndicator) GeomTools_Curve2dSet::GetProgress() const
{
return myProgress;
}
//=======================================================================
//function : SetProgress
//purpose :
//=======================================================================
void GeomTools_Curve2dSet::SetProgress(const Handle(Message_ProgressIndicator)& PR)
{
myProgress = PR;
}

View File

@ -60,48 +60,29 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Dumps the curve on the stream, if compact is True //! Dumps the curve on the stream, if compact is True
//! use the compact format that can be read back. //! use the compact format that can be read back.
Standard_EXPORT static void PrintCurve2d (const Handle(Geom2d_Curve)& C, Standard_OStream& OS, const Standard_Boolean compact = Standard_False); Standard_EXPORT static void PrintCurve2d (const Handle(Geom2d_Curve)& C,
Standard_OStream& OS,
const Standard_Boolean compact = Standard_False);
//! Reads the curve from the stream. The curve is //! Reads the curve from the stream. The curve is
//! assumed to have been written with the Print //! assumed to have been written with the Print
//! method (compact = True). //! method (compact = True).
Standard_EXPORT static Handle(Geom2d_Curve) ReadCurve2d (Standard_IStream& IS); Standard_EXPORT static Handle(Geom2d_Curve) ReadCurve2d (Standard_IStream& IS);
Standard_EXPORT void SetProgress (const Handle(Message_ProgressIndicator)& PR);
Standard_EXPORT Handle(Message_ProgressIndicator) GetProgress() const;
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
Handle(Message_ProgressIndicator) myProgress;
}; };
#endif // _GeomTools_Curve2dSet_HeaderFile #endif // _GeomTools_Curve2dSet_HeaderFile

View File

@ -513,15 +513,15 @@ void GeomTools_CurveSet::Dump(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_CurveSet::Write(Standard_OStream& OS)const void GeomTools_CurveSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
std::streamsize prec = OS.precision(17); std::streamsize prec = OS.precision(17);
Standard_Integer i, nbcurve = myMap.Extent(); Standard_Integer i, nbcurve = myMap.Extent();
OS << "Curves "<< nbcurve << "\n"; OS << "Curves "<< nbcurve << "\n";
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "3D Curves", 0, nbcurve, 1);
Message_ProgressSentry PS(progress, "3D Curves", 0, nbcurve, 1);
for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) {
PrintCurve(Handle(Geom_Curve)::DownCast(myMap(i)),OS,Standard_True); PrintCurve(Handle(Geom_Curve)::DownCast(myMap(i)),OS,Standard_True);
} }
@ -861,7 +861,8 @@ Handle(Geom_Curve) GeomTools_CurveSet::ReadCurve (Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_CurveSet::Read(Standard_IStream& IS) void GeomTools_CurveSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -873,32 +874,9 @@ void GeomTools_CurveSet::Read(Standard_IStream& IS)
Standard_Integer i, nbcurve; Standard_Integer i, nbcurve;
IS >> nbcurve; IS >> nbcurve;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "3D Curves", 0, nbcurve, 1);
Message_ProgressSentry PS(progress, "3D Curves", 0, nbcurve, 1);
for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbcurve && PS.More(); i++, PS.Next()) {
Handle(Geom_Curve) C = GeomTools_CurveSet::ReadCurve (IS); Handle(Geom_Curve) C = GeomTools_CurveSet::ReadCurve (IS);
myMap.Add(C); myMap.Add(C);
} }
} }
//=======================================================================
//function : GetProgress
//purpose :
//=======================================================================
Handle(Message_ProgressIndicator) GeomTools_CurveSet::GetProgress() const
{
return myProgress;
}
//=======================================================================
//function : SetProgress
//purpose :
//=======================================================================
void GeomTools_CurveSet::SetProgress(const Handle(Message_ProgressIndicator)& PR)
{
myProgress = PR;
}

View File

@ -60,48 +60,29 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Dumps the curve on the stream, if compact is True //! Dumps the curve on the stream, if compact is True
//! use the compact format that can be read back. //! use the compact format that can be read back.
Standard_EXPORT static void PrintCurve (const Handle(Geom_Curve)& C, Standard_OStream& OS, const Standard_Boolean compact = Standard_False); Standard_EXPORT static void PrintCurve (const Handle(Geom_Curve)& C,
Standard_OStream& OS,
const Standard_Boolean compact = Standard_False);
//! Reads the curve from the stream. The curve is //! Reads the curve from the stream. The curve is
//! assumed to have been written with the Print //! assumed to have been written with the Print
//! method (compact = True). //! method (compact = True).
Standard_EXPORT static Handle(Geom_Curve) ReadCurve (Standard_IStream& IS); Standard_EXPORT static Handle(Geom_Curve) ReadCurve (Standard_IStream& IS);
Standard_EXPORT void SetProgress (const Handle(Message_ProgressIndicator)& PR);
Standard_EXPORT Handle(Message_ProgressIndicator) GetProgress() const;
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
Handle(Message_ProgressIndicator) myProgress;
}; };
#endif // _GeomTools_CurveSet_HeaderFile #endif // _GeomTools_CurveSet_HeaderFile

View File

@ -633,15 +633,15 @@ void GeomTools_SurfaceSet::Dump(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_SurfaceSet::Write(Standard_OStream& OS)const void GeomTools_SurfaceSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress)const
{ {
std::streamsize prec = OS.precision(17); std::streamsize prec = OS.precision(17);
Standard_Integer i, nbsurf = myMap.Extent(); Standard_Integer i, nbsurf = myMap.Extent();
OS << "Surfaces "<< nbsurf << "\n"; OS << "Surfaces "<< nbsurf << "\n";
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Surfaces", 0, nbsurf, 1);
Message_ProgressSentry PS(progress, "Surfaces", 0, nbsurf, 1);
for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) {
PrintSurface(Handle(Geom_Surface)::DownCast(myMap(i)),OS,Standard_True); PrintSurface(Handle(Geom_Surface)::DownCast(myMap(i)),OS,Standard_True);
} }
@ -930,7 +930,7 @@ static Standard_IStream& operator>>(Standard_IStream& IS,
//purpose : //purpose :
//======================================================================= //=======================================================================
Handle(Geom_Surface) GeomTools_SurfaceSet::ReadSurface(Standard_IStream& IS) Handle(Geom_Surface) GeomTools_SurfaceSet::ReadSurface (Standard_IStream& IS)
{ {
Standard_Integer stype; Standard_Integer stype;
@ -1052,7 +1052,8 @@ Handle(Geom_Surface) GeomTools_SurfaceSet::ReadSurface(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void GeomTools_SurfaceSet::Read(Standard_IStream& IS) void GeomTools_SurfaceSet::Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
char buffer[255]; char buffer[255];
IS >> buffer; IS >> buffer;
@ -1064,33 +1065,9 @@ void GeomTools_SurfaceSet::Read(Standard_IStream& IS)
Standard_Integer i, nbsurf; Standard_Integer i, nbsurf;
IS >> nbsurf; IS >> nbsurf;
//OCC19559 //OCC19559
Handle(Message_ProgressIndicator) progress = GetProgress(); Message_ProgressSentry PS(theProgress, "Surfaces", 0, nbsurf, 1);
Message_ProgressSentry PS(progress, "Surfaces", 0, nbsurf, 1);
for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbsurf && PS.More(); i++, PS.Next()) {
Handle(Geom_Surface) S = GeomTools_SurfaceSet::ReadSurface (IS); Handle(Geom_Surface) S = GeomTools_SurfaceSet::ReadSurface (IS);
myMap.Add(S); myMap.Add(S);
} }
} }
//=======================================================================
//function : GetProgress
//purpose :
//=======================================================================
Handle(Message_ProgressIndicator) GeomTools_SurfaceSet::GetProgress() const
{
return myProgress;
}
//=======================================================================
//function : SetProgress
//purpose :
//=======================================================================
void GeomTools_SurfaceSet::SetProgress(const Handle(Message_ProgressIndicator)& PR)
{
myProgress = PR;
}

View File

@ -60,48 +60,29 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Dumps the surface on the stream, if compact is True //! Dumps the surface on the stream, if compact is True
//! use the compact format that can be read back. //! use the compact format that can be read back.
Standard_EXPORT static void PrintSurface (const Handle(Geom_Surface)& S, Standard_OStream& OS, const Standard_Boolean compact = Standard_False); Standard_EXPORT static void PrintSurface (const Handle(Geom_Surface)& S,
Standard_OStream& OS,
const Standard_Boolean compact = Standard_False);
//! Reads the surface from the stream. The surface is //! Reads the surface from the stream. The surface is
//! assumed to have been written with the Print //! assumed to have been written with the Print
//! method (compact = True). //! method (compact = True).
Standard_EXPORT static Handle(Geom_Surface) ReadSurface (Standard_IStream& IS); Standard_EXPORT static Handle(Geom_Surface) ReadSurface (Standard_IStream& IS);
Standard_EXPORT void SetProgress (const Handle(Message_ProgressIndicator)& PR);
Standard_EXPORT Handle(Message_ProgressIndicator) GetProgress() const;
protected:
private: private:
TColStd_IndexedMapOfTransient myMap; TColStd_IndexedMapOfTransient myMap;
Handle(Message_ProgressIndicator) myProgress;
}; };
#endif // _GeomTools_SurfaceSet_HeaderFile #endif // _GeomTools_SurfaceSet_HeaderFile

View File

@ -24,6 +24,7 @@
#include <Standard_Transient.hxx> #include <Standard_Transient.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <Storage_Data.hxx> #include <Storage_Data.hxx>
#include <Message_ProgressIndicator.hxx>
class PCDM_DriverError; class PCDM_DriverError;
class CDM_Document; class CDM_Document;
@ -45,12 +46,16 @@ public:
Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() = 0; Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() = 0;
//! retrieves the content of the file into a new Document. //! retrieves the content of the file into a new Document.
Standard_EXPORT virtual void Read (const TCollection_ExtendedString& aFileName, const Handle(CDM_Document)& aNewDocument, const Handle(CDM_Application)& anApplication) = 0; Standard_EXPORT virtual void Read (const TCollection_ExtendedString& aFileName,
const Handle(CDM_Document)& aNewDocument,
const Handle(CDM_Application)& anApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) = 0;
Standard_EXPORT virtual void Read (Standard_IStream& theIStream, Standard_EXPORT virtual void Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& theStorageData, const Handle(Storage_Data)& theStorageData,
const Handle(CDM_Document)& theDoc, const Handle(CDM_Document)& theDoc,
const Handle(CDM_Application)& theApplication) = 0; const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) = 0;
PCDM_ReaderStatus GetStatus() const; PCDM_ReaderStatus GetStatus() const;

View File

@ -41,7 +41,8 @@ PCDM_RS_AlreadyRetrieved,
PCDM_RS_UnknownDocument, PCDM_RS_UnknownDocument,
PCDM_RS_WrongResource, PCDM_RS_WrongResource,
PCDM_RS_ReaderException, PCDM_RS_ReaderException,
PCDM_RS_NoModel PCDM_RS_NoModel,
PCDM_RS_UserBreak
}; };
#endif // _PCDM_ReaderStatus_HeaderFile #endif // _PCDM_ReaderStatus_HeaderFile

View File

@ -42,7 +42,9 @@ IMPLEMENT_STANDARD_RTTIEXT(PCDM_StorageDriver,PCDM_Writer)
void PCDM_StorageDriver::Write(const Handle(CDM_Document)& aDocument, const TCollection_ExtendedString& aFileName) void PCDM_StorageDriver::Write (const Handle(CDM_Document)& aDocument,
const TCollection_ExtendedString& aFileName,
const Handle(Message_ProgressIndicator) &/*theProgress*/)
{ {
Handle(Storage_Schema) theSchema = new Storage_Schema; Handle(Storage_Schema) theSchema = new Storage_Schema;
@ -105,7 +107,9 @@ void PCDM_StorageDriver::Write(const Handle(CDM_Document)& aDocument, const TCol
//function : Write //function : Write
//purpose : //purpose :
//======================================================================= //=======================================================================
void PCDM_StorageDriver::Write (const Handle(CDM_Document)& /*aDocument*/, Standard_OStream& /*theOStream*/) void PCDM_StorageDriver::Write (const Handle(CDM_Document)& /*aDocument*/,
Standard_OStream& /*theOStream*/,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
} }

View File

@ -70,10 +70,14 @@ public:
//! //!
//! by default Write will use Make method to build a persistent //! by default Write will use Make method to build a persistent
//! document and the Schema method to write the persistent document. //! document and the Schema method to write the persistent document.
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& aDocument, const TCollection_ExtendedString& aFileName) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& aDocument,
const TCollection_ExtendedString& aFileName,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
//! Write <theDocument> to theOStream //! Write <theDocument> to theOStream
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT void SetFormat (const TCollection_ExtendedString& aformat); Standard_EXPORT void SetFormat (const TCollection_ExtendedString& aformat);

View File

@ -26,7 +26,8 @@ PCDM_SS_WriteFailure,
PCDM_SS_Failure, PCDM_SS_Failure,
PCDM_SS_Doc_IsNull, PCDM_SS_Doc_IsNull,
PCDM_SS_No_Obj, PCDM_SS_No_Obj,
PCDM_SS_Info_Section_Error PCDM_SS_Info_Section_Error,
PCDM_SS_UserBreak
}; };
#endif // _PCDM_StoreStatus_HeaderFile #endif // _PCDM_StoreStatus_HeaderFile

View File

@ -21,6 +21,9 @@
#include <Standard_Type.hxx> #include <Standard_Type.hxx>
#include <Standard_Transient.hxx> #include <Standard_Transient.hxx>
#include <Message_ProgressIndicator.hxx>
class PCDM_DriverError; class PCDM_DriverError;
class CDM_Document; class CDM_Document;
class TCollection_ExtendedString; class TCollection_ExtendedString;
@ -32,35 +35,19 @@ DEFINE_STANDARD_HANDLE(PCDM_Writer, Standard_Transient)
class PCDM_Writer : public Standard_Transient class PCDM_Writer : public Standard_Transient
{ {
public: public:
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& aDocument,
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& aDocument, const TCollection_ExtendedString& aFileName) = 0; const TCollection_ExtendedString& aFileName,
const Handle(Message_ProgressIndicator)& theProgress = NULL) = 0;
//! Write <theDocument> to theOStream //! Write <theDocument> to theOStream
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream) = 0; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL) = 0;
DEFINE_STANDARD_RTTIEXT(PCDM_Writer,Standard_Transient) DEFINE_STANDARD_RTTIEXT(PCDM_Writer,Standard_Transient)
protected:
private:
}; };
#endif // _PCDM_Writer_HeaderFile #endif // _PCDM_Writer_HeaderFile

View File

@ -52,7 +52,8 @@ Handle(CDM_Document) StdLDrivers_DocumentRetrievalDriver::CreateDocument()
//======================================================================= //=======================================================================
void StdLDrivers_DocumentRetrievalDriver::Read (const TCollection_ExtendedString& theFileName, void StdLDrivers_DocumentRetrievalDriver::Read (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)&) const Handle(CDM_Application)& ,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
// Read header data and persistent document // Read header data and persistent document
Storage_HeaderData aHeaderData; Storage_HeaderData aHeaderData;
@ -227,7 +228,8 @@ Handle(StdObjMgt_Persistent) StdLDrivers_DocumentRetrievalDriver::read (
void StdLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& /*theIStream*/, void StdLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& /*theIStream*/,
const Handle(Storage_Data)& /*theStorageData*/, const Handle(Storage_Data)& /*theStorageData*/,
const Handle(CDM_Document)& /*theDoc*/, const Handle(CDM_Document)& /*theDoc*/,
const Handle(CDM_Application)& /*theApplication*/) const Handle(CDM_Application)& /*theApplication*/,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
throw Standard_NotImplemented("Reading from stream is not supported by StdLDrivers_DocumentRetrievalDriver"); throw Standard_NotImplemented("Reading from stream is not supported by StdLDrivers_DocumentRetrievalDriver");
} }

View File

@ -30,13 +30,15 @@ public:
//! Retrieve the content of a file into a new document. //! Retrieve the content of a file into a new document.
Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName, Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
//! Override pure virtual method (raises exception Standard_NotImplemented) //! Override pure virtual method (raises exception Standard_NotImplemented)
Standard_EXPORT virtual void Read (Standard_IStream& theIStream, Standard_EXPORT virtual void Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& theStorageData, const Handle(Storage_Data)& theStorageData,
const Handle(CDM_Document)& theDoc, const Handle(CDM_Document)& theDoc,
const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT (StdLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver) DEFINE_STANDARD_RTTIEXT (StdLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver)

View File

@ -35,6 +35,8 @@
#include <TDocStd_Owner.hxx> #include <TDocStd_Owner.hxx>
#include <TDocStd_PathParser.hxx> #include <TDocStd_PathParser.hxx>
#include<Message_ProgressSentry.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TDocStd_Application,CDF_Application) IMPLEMENT_STANDARD_RTTIEXT(TDocStd_Application,CDF_Application)
// TDocStd_Owner attribute have pointer of closed TDocStd_Document // TDocStd_Owner attribute have pointer of closed TDocStd_Document
@ -281,35 +283,46 @@ Standard_Integer TDocStd_Application::IsInSession (const TCollection_ExtendedStr
//purpose : //purpose :
//======================================================================= //=======================================================================
PCDM_ReaderStatus TDocStd_Application::Open(const TCollection_ExtendedString& path,Handle(TDocStd_Document)& aDoc) { PCDM_ReaderStatus TDocStd_Application::Open(const TCollection_ExtendedString& path,
Handle(TDocStd_Document)& aDoc,
const Handle(Message_ProgressIndicator)& theProgress)
{
PCDM_ReaderStatus status = PCDM_RS_DriverFailure; PCDM_ReaderStatus status = PCDM_RS_DriverFailure;
TDocStd_PathParser tool (path); TDocStd_PathParser tool (path);
TCollection_ExtendedString directory = tool.Trek(); TCollection_ExtendedString directory = tool.Trek();
TCollection_ExtendedString file = tool.Name(); TCollection_ExtendedString file = tool.Name();
file+="."; file += ".";
file+=tool.Extension(); file += tool.Extension();
status = CanRetrieve(directory,file); status = CanRetrieve(directory, file);
if (status != PCDM_RS_OK) return status;
try { if (status != PCDM_RS_OK)
{
return status;
}
try
{
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Handle(TDocStd_Document) D = Handle(TDocStd_Document) D =
Handle(TDocStd_Document)::DownCast(Retrieve(directory,file)); Handle(TDocStd_Document)::DownCast(Retrieve(directory, file, Standard_True, theProgress));
CDF_Application::Open(D); CDF_Application::Open(D);
aDoc = D; aDoc = D;
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException)
// status = GetRetrieveStatus(); {
if (!MessageDriver().IsNull()) { // status = GetRetrieveStatus();
// Standard_SStream aMsg; if (!MessageDriver().IsNull())
// aMsg << Standard_Failure::Caught() << std::endl; {
// std::cout << "TDocStd_Application::Open(): " << aMsg.rdbuf()->str() << std::endl; // Standard_SStream aMsg;
// aMsg << Standard_Failure::Caught() << std::endl;
// std::cout << "TDocStd_Application::Open(): " << aMsg.rdbuf()->str() << std::endl;
TCollection_ExtendedString aString (anException.GetMessageString()); TCollection_ExtendedString aString (anException.GetMessageString());
MessageDriver()->Send(aString.ToExtString(), Message_Fail); MessageDriver()->Send(aString.ToExtString(), Message_Fail);
} }
} }
status = GetRetrieveStatus(); status = GetRetrieveStatus();
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
std::cout<<"TDocStd_Application::Open(): The status = "<<status<<std::endl; std::cout << "TDocStd_Application::Open(): The status = " << status << std::endl;
#endif #endif
return status; return status;
} }
@ -318,19 +331,22 @@ PCDM_ReaderStatus TDocStd_Application::Open(const TCollection_ExtendedString& pa
//function : Open //function : Open
//purpose : //purpose :
//======================================================================= //=======================================================================
PCDM_ReaderStatus TDocStd_Application::Open (Standard_IStream& theIStream, Handle(TDocStd_Document)& theDoc) PCDM_ReaderStatus TDocStd_Application::Open(Standard_IStream& theIStream,
Handle(TDocStd_Document)& theDoc,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
Handle(TDocStd_Document) D = Handle(TDocStd_Document)::DownCast(Read(theIStream, theProgress));
Handle(TDocStd_Document) D = Handle(TDocStd_Document)::DownCast (Read (theIStream));
if (!D.IsNull()) if (!D.IsNull())
{ {
CDF_Application::Open(D); CDF_Application::Open(D);
theDoc = D; theDoc = D;
} }
} }
catch (Standard_Failure const& anException) catch (Standard_Failure const& anException)
{ {
if (!MessageDriver().IsNull()) if (!MessageDriver().IsNull())
@ -339,7 +355,6 @@ PCDM_ReaderStatus TDocStd_Application::Open (Standard_IStream& theIStream, Handl
MessageDriver()->Send (aFailureMessage.ToExtString(), Message_Fail); MessageDriver()->Send (aFailureMessage.ToExtString(), Message_Fail);
} }
} }
return GetRetrieveStatus(); return GetRetrieveStatus();
} }
@ -348,7 +363,10 @@ PCDM_ReaderStatus TDocStd_Application::Open (Standard_IStream& theIStream, Handl
//purpose : //purpose :
//======================================================================= //=======================================================================
PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,const TCollection_ExtendedString& path) { PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,
const TCollection_ExtendedString& path,
const Handle(Message_ProgressIndicator)& theProgress)
{
TDocStd_PathParser tool (path); TDocStd_PathParser tool (path);
TCollection_ExtendedString directory = tool.Trek(); TCollection_ExtendedString directory = tool.Trek();
TCollection_ExtendedString file = tool.Name(); TCollection_ExtendedString file = tool.Name();
@ -368,7 +386,7 @@ PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,c
storer.SetName (file); storer.SetName (file);
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
storer.Realize(); storer.Realize (theProgress);
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
if (!MessageDriver().IsNull()) { if (!MessageDriver().IsNull()) {
@ -388,7 +406,9 @@ PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,c
//function : SaveAs //function : SaveAs
//purpose : //purpose :
//======================================================================= //=======================================================================
PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& theDoc, Standard_OStream& theOStream) PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& theDoc,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
try try
{ {
@ -400,7 +420,7 @@ PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& th
} }
aDocStorageDriver->SetFormat(theDoc->StorageFormat()); aDocStorageDriver->SetFormat(theDoc->StorageFormat());
aDocStorageDriver->Write(theDoc, theOStream); aDocStorageDriver->Write(theDoc, theOStream, theProgress);
if (aDocStorageDriver->GetStoreStatus() == PCDM_SS_OK) if (aDocStorageDriver->GetStoreStatus() == PCDM_SS_OK)
{ {
@ -425,13 +445,15 @@ PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& th
//purpose : //purpose :
//======================================================================= //=======================================================================
PCDM_StoreStatus TDocStd_Application::Save (const Handle(TDocStd_Document)& D) { PCDM_StoreStatus TDocStd_Application::Save (const Handle(TDocStd_Document)& D,
const Handle(Message_ProgressIndicator)& theProgress)
{
PCDM_StoreStatus status = PCDM_SS_OK; PCDM_StoreStatus status = PCDM_SS_OK;
if (D->IsSaved()) { if (D->IsSaved()) {
CDF_Store storer (D); CDF_Store storer (D);
try{ try{
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
storer.Realize(); storer.Realize (theProgress);
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
if (!MessageDriver().IsNull()) { if (!MessageDriver().IsNull()) {
@ -462,7 +484,8 @@ PCDM_StoreStatus TDocStd_Application::Save (const Handle(TDocStd_Document)& D) {
PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D, PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,
const TCollection_ExtendedString& path, const TCollection_ExtendedString& path,
TCollection_ExtendedString& theStatusMessage) TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
TDocStd_PathParser tool (path); TDocStd_PathParser tool (path);
PCDM_StoreStatus aStatus = PCDM_SS_Failure; PCDM_StoreStatus aStatus = PCDM_SS_Failure;
@ -476,7 +499,7 @@ PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,
storer.SetName (file); storer.SetName (file);
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
storer.Realize(); storer.Realize (theProgress);
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
if (!MessageDriver().IsNull()) { if (!MessageDriver().IsNull()) {
@ -504,7 +527,8 @@ PCDM_StoreStatus TDocStd_Application::SaveAs(const Handle(TDocStd_Document)& D,
PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& theDoc, PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& theDoc,
Standard_OStream& theOStream, Standard_OStream& theOStream,
TCollection_ExtendedString& theStatusMessage) TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
try try
{ {
@ -516,7 +540,7 @@ PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& th
} }
aDocStorageDriver->SetFormat(theDoc->StorageFormat()); aDocStorageDriver->SetFormat(theDoc->StorageFormat());
aDocStorageDriver->Write(theDoc, theOStream); aDocStorageDriver->Write(theDoc, theOStream, theProgress);
if (aDocStorageDriver->GetStoreStatus() == PCDM_SS_OK) if (aDocStorageDriver->GetStoreStatus() == PCDM_SS_OK)
{ {
@ -542,14 +566,15 @@ PCDM_StoreStatus TDocStd_Application::SaveAs (const Handle(TDocStd_Document)& th
//======================================================================= //=======================================================================
PCDM_StoreStatus TDocStd_Application::Save (const Handle(TDocStd_Document)& D, PCDM_StoreStatus TDocStd_Application::Save (const Handle(TDocStd_Document)& D,
TCollection_ExtendedString& theStatusMessage) TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
PCDM_StoreStatus status = PCDM_SS_OK; PCDM_StoreStatus status = PCDM_SS_OK;
if (D->IsSaved()) { if (D->IsSaved()) {
CDF_Store storer (D); CDF_Store storer (D);
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
storer.Realize(); storer.Realize (theProgress);
} }
catch (Standard_Failure const& anException) { catch (Standard_Failure const& anException) {
if (!MessageDriver().IsNull()) { if (!MessageDriver().IsNull()) {

View File

@ -225,38 +225,54 @@ public:
//! In order not to override a version of aDoc which //! In order not to override a version of aDoc which
//! is already in memory, this method can be made //! is already in memory, this method can be made
//! to depend on the value returned by IsInSession. //! to depend on the value returned by IsInSession.
Standard_EXPORT PCDM_ReaderStatus Open (const TCollection_ExtendedString& path, Handle(TDocStd_Document)& aDoc); Standard_EXPORT PCDM_ReaderStatus Open (const TCollection_ExtendedString& path,
Handle(TDocStd_Document)& aDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Retrieves aDoc from standard SEEKABLE stream theIStream. //! Retrieves aDoc from standard SEEKABLE stream theIStream.
//! the stream should support SEEK fuctionality //! the stream should support SEEK fuctionality
Standard_EXPORT PCDM_ReaderStatus Open (Standard_IStream& theIStream, Handle(TDocStd_Document)& theDoc); Standard_EXPORT PCDM_ReaderStatus Open (Standard_IStream& theIStream, Handle(TDocStd_Document)& theDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save the active document in the file <name> in the //! Save the active document in the file <name> in the
//! path <path> ; o verwrites the file if it already exists. //! path <path> ; o verwrites the file if it already exists.
Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& aDoc, const TCollection_ExtendedString& path); Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& aDoc,
const TCollection_ExtendedString& path,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save theDoc to standard SEEKABLE stream theOStream. //! Save theDoc to standard SEEKABLE stream theOStream.
//! the stream should support SEEK fuctionality //! the stream should support SEEK fuctionality
Standard_EXPORT PCDM_StoreStatus SaveAs(const Handle(TDocStd_Document)& theDoc, Standard_OStream& theOStream); Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& theDoc,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save aDoc active document. //! Save aDoc active document.
//! Exceptions: //! Exceptions:
//! Standard_NotImplemented if the document //! Standard_NotImplemented if the document
//! was not retrieved in the applicative session by using Open. //! was not retrieved in the applicative session by using Open.
Standard_EXPORT PCDM_StoreStatus Save (const Handle(TDocStd_Document)& aDoc); Standard_EXPORT PCDM_StoreStatus Save (const Handle(TDocStd_Document)& aDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save the active document in the file <name> in the //! Save the active document in the file <name> in the
//! path <path> . overwrite the file if it //! path <path> . overwrite the file if it
//! already exist. //! already exist.
Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& aDoc, const TCollection_ExtendedString& path, TCollection_ExtendedString& theStatusMessage); Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& aDoc,
const TCollection_ExtendedString& path,
TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save theDoc TO standard SEEKABLE stream theOStream. //! Save theDoc TO standard SEEKABLE stream theOStream.
//! the stream should support SEEK fuctionality //! the stream should support SEEK fuctionality
Standard_EXPORT PCDM_StoreStatus SaveAs(const Handle(TDocStd_Document)& theDoc, Standard_OStream& theOStream, TCollection_ExtendedString& theStatusMessage); Standard_EXPORT PCDM_StoreStatus SaveAs (const Handle(TDocStd_Document)& theDoc,
Standard_OStream& theOStream,
TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Save the document overwriting the previous file //! Save the document overwriting the previous file
Standard_EXPORT PCDM_StoreStatus Save (const Handle(TDocStd_Document)& aDoc, TCollection_ExtendedString& theStatusMessage); Standard_EXPORT PCDM_StoreStatus Save (const Handle(TDocStd_Document)& aDoc,
TCollection_ExtendedString& theStatusMessage,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Notification that is fired at each OpenTransaction event. //! Notification that is fired at each OpenTransaction event.
Standard_EXPORT virtual void OnOpenTransaction (const Handle(TDocStd_Document)& theDoc); Standard_EXPORT virtual void OnOpenTransaction (const Handle(TDocStd_Document)& theDoc);

View File

@ -18,7 +18,6 @@
#include <GeomTools.hxx> #include <GeomTools.hxx>
#include <gp_Ax3.hxx> #include <gp_Ax3.hxx>
#include <gp_Vec.hxx> #include <gp_Vec.hxx>
#include <Message_ProgressIndicator.hxx>
#include <Message_ProgressSentry.hxx> #include <Message_ProgressSentry.hxx>
#include <Precision.hxx> #include <Precision.hxx>
#include <Standard_OutOfRange.hxx> #include <Standard_OutOfRange.hxx>
@ -172,7 +171,8 @@ void TopTools_LocationSet::Dump(Standard_OStream& OS) const
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_LocationSet::Write(Standard_OStream& OS) const void TopTools_LocationSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress) const
{ {
std::streamsize prec = OS.precision(15); std::streamsize prec = OS.precision(15);
@ -181,7 +181,7 @@ void TopTools_LocationSet::Write(Standard_OStream& OS) const
OS << "Locations " << nbLoc << "\n"; OS << "Locations " << nbLoc << "\n";
//OCC19559 //OCC19559
Message_ProgressSentry PS(GetProgress(), "Locations", 0, nbLoc, 1); Message_ProgressSentry PS(theProgress, "Locations", 0, nbLoc, 1);
for (i = 1; i <= nbLoc && PS.More(); i++, PS.Next()) { for (i = 1; i <= nbLoc && PS.More(); i++, PS.Next()) {
TopLoc_Location L = myMap(i); TopLoc_Location L = myMap(i);
@ -246,7 +246,7 @@ static void ReadTrsf(gp_Trsf& T,
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_LocationSet::Read(Standard_IStream& IS) void TopTools_LocationSet::Read (Standard_IStream& IS, const Handle(Message_ProgressIndicator) &theProgress)
{ {
myMap.Clear(); myMap.Clear();
@ -266,7 +266,7 @@ void TopTools_LocationSet::Read(Standard_IStream& IS)
gp_Trsf T; gp_Trsf T;
//OCC19559 //OCC19559
Message_ProgressSentry PS(GetProgress(), "Locations", 0, nbLoc, 1); Message_ProgressSentry PS(theProgress, "Locations", 0, nbLoc, 1);
for (i = 1; i <= nbLoc&& PS.More(); i++, PS.Next()) { for (i = 1; i <= nbLoc&& PS.More(); i++, PS.Next()) {
Standard_Integer typLoc; Standard_Integer typLoc;
IS >> typLoc; IS >> typLoc;
@ -290,25 +290,3 @@ void TopTools_LocationSet::Read(Standard_IStream& IS)
if (!L.IsIdentity()) myMap.Add(L); if (!L.IsIdentity()) myMap.Add(L);
} }
} }
//=======================================================================
//function : GetProgress
//purpose :
//=======================================================================
Handle(Message_ProgressIndicator) TopTools_LocationSet::GetProgress() const
{
return myProgress;
}
//=======================================================================
//function : SetProgress
//purpose :
//=======================================================================
void TopTools_LocationSet::SetProgress(const Handle(Message_ProgressIndicator)& PR)
{
myProgress = PR;
}

View File

@ -25,7 +25,8 @@
#include <Standard_Integer.hxx> #include <Standard_Integer.hxx>
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
class Message_ProgressIndicator; #include <Message_ProgressIndicator.hxx>
class Standard_OutOfRange; class Standard_OutOfRange;
class TopLoc_Location; class TopLoc_Location;
@ -37,7 +38,7 @@ class TopLoc_Location;
//! //!
//! It can create Locations. //! It can create Locations.
//! //!
//! It can be write and read from a stream. //! It can be written and read from a stream.
class TopTools_LocationSet class TopTools_LocationSet
{ {
public: public:
@ -66,39 +67,17 @@ public:
//! Writes the content of me on the stream <OS> in a //! Writes the content of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT void Write (Standard_OStream& OS) const; Standard_EXPORT void Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator)& theProgress = NULL) const;
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
Standard_EXPORT void Read (Standard_IStream& IS); Standard_EXPORT void Read (Standard_IStream& IS,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT void SetProgress (const Handle(Message_ProgressIndicator)& PR);
Standard_EXPORT Handle(Message_ProgressIndicator) GetProgress() const;
protected:
private: private:
TopLoc_IndexedMapOfLocation myMap; TopLoc_IndexedMapOfLocation myMap;
Handle(Message_ProgressIndicator) myProgress;
}; };
#endif // _TopTools_LocationSet_HeaderFile #endif // _TopTools_LocationSet_HeaderFile

View File

@ -443,7 +443,8 @@ void TopTools_ShapeSet::Dump(Standard_OStream& OS)const
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::Write(Standard_OStream& OS) void TopTools_ShapeSet::Write (Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress)
{ {
// always use C locale for writing shapes // always use C locale for writing shapes
std::locale anOldLocale = OS.imbue (std::locale::classic()); std::locale anOldLocale = OS.imbue (std::locale::classic());
@ -460,33 +461,20 @@ void TopTools_ShapeSet::Write(Standard_OStream& OS)
//----------------------------------------- //-----------------------------------------
// write the locations // write the locations
//----------------------------------------- //-----------------------------------------
Message_ProgressSentry aPS(theProgress, "Writing Shapes", 0, 3, 1);
if ( !myProgress.IsNull() ) myLocations.Write(OS, theProgress);
myProgress->NewScope ( 10, "Locations" ); if (!aPS.More())
myLocations.SetProgress(myProgress);
myLocations.Write(OS);
if ( !myProgress.IsNull() ) {
myProgress->EndScope();
myProgress->Show();
}
if (!myProgress.IsNull() && myProgress->UserBreak()) {
OS << "Interrupted by the user\n";
OS.imbue (anOldLocale);
return; return;
} aPS.Next();
//----------------------------------------- //-----------------------------------------
// write the geometry // write the geometry
//----------------------------------------- //-----------------------------------------
if ( !myProgress.IsNull() ) WriteGeometry(OS, theProgress);
myProgress->NewScope ( 75, "Geometry" ); if (!aPS.More())
WriteGeometry(OS); return;
if ( !myProgress.IsNull() ) { aPS.Next();
myProgress->EndScope();
myProgress->Show();
}
//----------------------------------------- //-----------------------------------------
// write the shapes // write the shapes
@ -498,10 +486,8 @@ void TopTools_ShapeSet::Write(Standard_OStream& OS)
// subshapes are written first // subshapes are written first
//OCC19559 //OCC19559
if ( !myProgress.IsNull() ) Message_ProgressSentry aPSinner(theProgress, "Shapes", 0, nbShapes, 1);
myProgress->NewScope ( 15, "Shapes" ); for (i = 1; i <= nbShapes && aPSinner.More(); i++, aPSinner.Next()) {
Message_ProgressSentry PS(myProgress, "Shapes", 0, nbShapes, 1);
for (i = 1; i <= nbShapes && PS.More(); i++, PS.Next()) {
const TopoDS_Shape& S = myShapes(i); const TopoDS_Shape& S = myShapes(i);
// Type // Type
@ -542,14 +528,6 @@ void TopTools_ShapeSet::Write(Standard_OStream& OS)
OS << "\n"; OS << "\n";
OS.precision(prec); OS.precision(prec);
OS.imbue (anOldLocale); OS.imbue (anOldLocale);
PS.Relieve();
if (!myProgress.IsNull()) {
myProgress->EndScope();
myProgress->Show();
if (myProgress->UserBreak())
OS << "Interrupted by the user\n";
}
} }
//======================================================================= //=======================================================================
@ -597,7 +575,7 @@ static TopAbs_ShapeEnum ReadShapeEnum(Standard_IStream& IS)
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::Read(Standard_IStream& IS) void TopTools_ShapeSet::Read (Standard_IStream& IS, const Handle(Message_ProgressIndicator) &theProgress)
{ {
// always use C locale for reading shapes // always use C locale for reading shapes
std::locale anOldLocale = IS.imbue (std::locale::classic()); std::locale anOldLocale = IS.imbue (std::locale::classic());
@ -634,38 +612,18 @@ void TopTools_ShapeSet::Read(Standard_IStream& IS)
//----------------------------------------- //-----------------------------------------
//OCC19559 //OCC19559
if (!myProgress.IsNull() && myProgress->UserBreak()) { Message_ProgressSentry aPS(theProgress, "Reading", 0, 10, 3);
std::cout << "Interrupted by the user"<<std::endl; myLocations.Read(IS, theProgress);
// on remet le LC_NUMERIC a la precedente valeur if (!aPS.More())
IS.imbue (anOldLocale);
return; return;
} aPS.Next();
if ( !myProgress.IsNull() )
myProgress->NewScope ( 10, "Locations" );
myLocations.SetProgress(myProgress);
myLocations.Read(IS);
if ( !myProgress.IsNull() ) {
myProgress->EndScope();
myProgress->Show();
}
//OCC19559
if (!myProgress.IsNull() && myProgress->UserBreak()) {
std::cout << "Interrupted by the user"<<std::endl;
// on remet le LC_NUMERIC a la precedente valeur
IS.imbue (anOldLocale);
return;
}
//----------------------------------------- //-----------------------------------------
// read the geometry // read the geometry
//----------------------------------------- //-----------------------------------------
if ( !myProgress.IsNull() ) ReadGeometry(IS, theProgress);
myProgress->NewScope ( 75, "Geometry" ); if (!aPS.More())
ReadGeometry(IS); return;
if ( !myProgress.IsNull() ) { aPS.Next();
myProgress->EndScope();
myProgress->Show();
}
//----------------------------------------- //-----------------------------------------
// read the shapes // read the shapes
@ -684,9 +642,8 @@ void TopTools_ShapeSet::Read(Standard_IStream& IS)
IS >> nbShapes; IS >> nbShapes;
//OCC19559 //OCC19559
if ( !myProgress.IsNull() )
myProgress->NewScope ( 15, "Shapes" ); Message_ProgressSentry PS(theProgress, "Shapes", 0, nbShapes, 1);
Message_ProgressSentry PS(myProgress, "Shapes", 0, nbShapes, 1);
for (i = 1; i <= nbShapes && PS.More(); i++, PS.Next() ) { for (i = 1; i <= nbShapes && PS.More(); i++, PS.Next() ) {
TopoDS_Shape S; TopoDS_Shape S;
@ -726,11 +683,6 @@ void TopTools_ShapeSet::Read(Standard_IStream& IS)
myShapes.Add(S); myShapes.Add(S);
} }
if (!myProgress.IsNull()) {
myProgress->EndScope();
myProgress->Show();
}
// on remet le LC_NUMERIC a la precedente valeur // on remet le LC_NUMERIC a la precedente valeur
IS.imbue (anOldLocale); IS.imbue (anOldLocale);
} }
@ -758,8 +710,7 @@ void TopTools_ShapeSet::Dump(const TopoDS_Shape& S,
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::Write(const TopoDS_Shape& S, void TopTools_ShapeSet::Write (const TopoDS_Shape& S, Standard_OStream& OS)const
Standard_OStream& OS)const
{ {
if (S.IsNull()) OS << "*"; if (S.IsNull()) OS << "*";
else { else {
@ -774,8 +725,7 @@ void TopTools_ShapeSet::Write(const TopoDS_Shape& S,
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::Read(TopoDS_Shape& S, void TopTools_ShapeSet::Read (TopoDS_Shape& S, Standard_IStream& IS)const
Standard_IStream& IS)const
{ {
Read(S,IS,myShapes.Extent()); Read(S,IS,myShapes.Extent());
} }
@ -849,7 +799,8 @@ void TopTools_ShapeSet::DumpGeometry(Standard_OStream&) const
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::WriteGeometry(Standard_OStream&) void TopTools_ShapeSet::WriteGeometry (Standard_OStream&,
const Handle(Message_ProgressIndicator) &)
{ {
} }
@ -859,7 +810,8 @@ void TopTools_ShapeSet::WriteGeometry(Standard_OStream&)
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::ReadGeometry(Standard_IStream&) void TopTools_ShapeSet::ReadGeometry (Standard_IStream&,
const Handle(Message_ProgressIndicator) &)
{ {
} }
@ -880,8 +832,7 @@ void TopTools_ShapeSet::DumpGeometry(const TopoDS_Shape&,
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::WriteGeometry(const TopoDS_Shape&, void TopTools_ShapeSet::WriteGeometry (const TopoDS_Shape&, Standard_OStream&)const
Standard_OStream&)const
{ {
} }
@ -891,9 +842,7 @@ void TopTools_ShapeSet::WriteGeometry(const TopoDS_Shape&,
//purpose : //purpose :
//======================================================================= //=======================================================================
void TopTools_ShapeSet::ReadGeometry(const TopAbs_ShapeEnum, void TopTools_ShapeSet::ReadGeometry (const TopAbs_ShapeEnum, Standard_IStream&, TopoDS_Shape&)
Standard_IStream& ,
TopoDS_Shape&)
{ {
} }
@ -931,25 +880,3 @@ Standard_Integer TopTools_ShapeSet::NbShapes() const
{ {
return myShapes.Extent(); return myShapes.Extent();
} }
//=======================================================================
//function : GetProgress
//purpose :
//=======================================================================
Handle(Message_ProgressIndicator) TopTools_ShapeSet::GetProgress() const
{
return myProgress;
}
//=======================================================================
//function : SetProgress
//purpose :
//=======================================================================
void TopTools_ShapeSet::SetProgress(const Handle(Message_ProgressIndicator)& PR)
{
myProgress = PR;
}

View File

@ -27,14 +27,14 @@
#include <Standard_OStream.hxx> #include <Standard_OStream.hxx>
#include <Standard_IStream.hxx> #include <Standard_IStream.hxx>
#include <TopAbs_ShapeEnum.hxx> #include <TopAbs_ShapeEnum.hxx>
class Message_ProgressIndicator;
class TopoDS_Shape; class TopoDS_Shape;
class TopTools_LocationSet; class TopTools_LocationSet;
class TCollection_AsciiString; class TCollection_AsciiString;
//! A ShapeSets contains a Shape and all its //! A ShapeSets contains a Shape and all its
//! sub-shapes and locations. It can be dump, write //! sub-shapes and locations. It can be dumped, written
//! and read. //! and read.
//! //!
//! Methods to handle the geometry can be redefined. //! Methods to handle the geometry can be redefined.
@ -44,7 +44,6 @@ public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
//! Builds an empty ShapeSet. //! Builds an empty ShapeSet.
Standard_EXPORT TopTools_ShapeSet(); Standard_EXPORT TopTools_ShapeSet();
@ -109,7 +108,9 @@ public:
//! Write the type. //! Write the type.
//! calls WriteGeometry(S). //! calls WriteGeometry(S).
//! Write the flags, the subshapes. //! Write the flags, the subshapes.
Standard_EXPORT virtual void Write (Standard_OStream& OS); Standard_EXPORT virtual void Write
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Reads the content of me from the stream <IS>. me //! Reads the content of me from the stream <IS>. me
//! is first cleared. //! is first cleared.
@ -123,7 +124,9 @@ public:
//! Reads the type. //! Reads the type.
//! calls ReadGeometry(T,S). //! calls ReadGeometry(T,S).
//! Reads the flag, the subshapes. //! Reads the flag, the subshapes.
Standard_EXPORT virtual void Read (Standard_IStream& IS); Standard_EXPORT virtual void Read
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Dumps on <OS> the shape <S>. Dumps the //! Dumps on <OS> the shape <S>. Dumps the
//! orientation, the index of the TShape and the index //! orientation, the index of the TShape and the index
@ -146,10 +149,14 @@ public:
//! Writes the geometry of me on the stream <OS> in a //! Writes the geometry of me on the stream <OS> in a
//! format that can be read back by Read. //! format that can be read back by Read.
Standard_EXPORT virtual void WriteGeometry (Standard_OStream& OS); Standard_EXPORT virtual void WriteGeometry
(Standard_OStream& OS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Reads the geometry of me from the stream <IS>. //! Reads the geometry of me from the stream <IS>.
Standard_EXPORT virtual void ReadGeometry (Standard_IStream& IS); Standard_EXPORT virtual void ReadGeometry
(Standard_IStream& IS,
const Handle(Message_ProgressIndicator) &theProgress = NULL);
//! Dumps the geometry of <S> on the stream <OS>. //! Dumps the geometry of <S> on the stream <OS>.
Standard_EXPORT virtual void DumpGeometry (const TopoDS_Shape& S, Standard_OStream& OS) const; Standard_EXPORT virtual void DumpGeometry (const TopoDS_Shape& S, Standard_OStream& OS) const;
@ -176,40 +183,16 @@ public:
//! Returns number of shapes read from file. //! Returns number of shapes read from file.
Standard_EXPORT Standard_Integer NbShapes() const; Standard_EXPORT Standard_Integer NbShapes() const;
Standard_EXPORT void SetProgress (const Handle(Message_ProgressIndicator)& PR);
Standard_EXPORT Handle(Message_ProgressIndicator) GetProgress() const;
protected:
private: private:
//! Reads from <IS> a shape and returns it in S. //! Reads from <IS> a shape and returns it in S.
//! <NbShapes> is the number of tshapes in the set. //! <NbShapes> is the number of tshapes in the set.
Standard_EXPORT void Read (TopoDS_Shape& S, Standard_IStream& IS, const Standard_Integer NbShapes) const; Standard_EXPORT void Read (TopoDS_Shape& S, Standard_IStream& IS, const Standard_Integer NbShapes) const;
TopTools_IndexedMapOfShape myShapes; TopTools_IndexedMapOfShape myShapes;
TopTools_LocationSet myLocations; TopTools_LocationSet myLocations;
Standard_Integer myFormatNb; Standard_Integer myFormatNb;
Handle(Message_ProgressIndicator) myProgress;
}; };
#endif // _TopTools_ShapeSet_HeaderFile #endif // _TopTools_ShapeSet_HeaderFile

View File

@ -185,6 +185,9 @@ static Standard_Integer saveDoc (Draw_Interpretor& di, Standard_Integer argc, co
case PCDM_SS_Info_Section_Error: case PCDM_SS_Info_Section_Error:
di << "Storage error: section error\n"; di << "Storage error: section error\n";
break; break;
case PCDM_SS_UserBreak:
di << "Storage error: user break\n";
break;
} }
return 0; return 0;

View File

@ -50,7 +50,8 @@ Handle(XmlMDF_ADriverTable) XmlDrivers_DocumentRetrievalDriver::AttributeDrivers
//======================================================================= //=======================================================================
Handle(XmlMDF_ADriver) XmlDrivers_DocumentRetrievalDriver::ReadShapeSection( Handle(XmlMDF_ADriver) XmlDrivers_DocumentRetrievalDriver::ReadShapeSection(
const XmlObjMgt_Element& theElement, const XmlObjMgt_Element& theElement,
const Handle(Message_Messenger)& theMsgDriver) const Handle(Message_Messenger)& theMsgDriver,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
if (myDrivers.IsNull()) myDrivers = AttributeDrivers (theMsgDriver); if (myDrivers.IsNull()) myDrivers = AttributeDrivers (theMsgDriver);
Handle(XmlMDF_ADriver) aDriver; Handle(XmlMDF_ADriver) aDriver;
@ -58,7 +59,7 @@ Handle(XmlMDF_ADriver) XmlDrivers_DocumentRetrievalDriver::ReadShapeSection(
{ {
Handle(XmlMNaming_NamedShapeDriver) aNamedShapeDriver = Handle(XmlMNaming_NamedShapeDriver) aNamedShapeDriver =
Handle(XmlMNaming_NamedShapeDriver)::DownCast (aDriver); Handle(XmlMNaming_NamedShapeDriver)::DownCast (aDriver);
aNamedShapeDriver -> ReadShapeSection (theElement); aNamedShapeDriver->ReadShapeSection (theElement, theProgress);
} }
return aDriver; return aDriver;
} }

View File

@ -33,38 +33,23 @@ DEFINE_STANDARD_HANDLE(XmlDrivers_DocumentRetrievalDriver, XmlLDrivers_DocumentR
class XmlDrivers_DocumentRetrievalDriver : public XmlLDrivers_DocumentRetrievalDriver class XmlDrivers_DocumentRetrievalDriver : public XmlLDrivers_DocumentRetrievalDriver
{ {
public: public:
Standard_EXPORT XmlDrivers_DocumentRetrievalDriver(); Standard_EXPORT XmlDrivers_DocumentRetrievalDriver();
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE; Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers
(const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection (const XmlObjMgt_Element& thePDoc, const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE; Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection
(const XmlObjMgt_Element& thePDoc,
const Handle(Message_Messenger)& theMsgDriver,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver) Standard_OVERRIDE; Standard_EXPORT virtual void ShapeSetCleaning
(const Handle(XmlMDF_ADriver)& theDriver) Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(XmlDrivers_DocumentRetrievalDriver,XmlLDrivers_DocumentRetrievalDriver) DEFINE_STANDARD_RTTIEXT(XmlDrivers_DocumentRetrievalDriver,XmlLDrivers_DocumentRetrievalDriver)
protected:
private:
}; };
#endif // _XmlDrivers_DocumentRetrievalDriver_HeaderFile #endif // _XmlDrivers_DocumentRetrievalDriver_HeaderFile

View File

@ -51,7 +51,8 @@ Handle(XmlMDF_ADriverTable) XmlDrivers_DocumentStorageDriver::AttributeDrivers
//purpose : Implements WriteShapeSection //purpose : Implements WriteShapeSection
//======================================================================= //=======================================================================
Standard_Boolean XmlDrivers_DocumentStorageDriver::WriteShapeSection Standard_Boolean XmlDrivers_DocumentStorageDriver::WriteShapeSection
(XmlObjMgt_Element& theElement) (XmlObjMgt_Element& theElement,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Standard_Boolean isShape(Standard_False); Standard_Boolean isShape(Standard_False);
Handle(XmlMDF_ADriver) aDriver; Handle(XmlMDF_ADriver) aDriver;
@ -59,7 +60,7 @@ Standard_Boolean XmlDrivers_DocumentStorageDriver::WriteShapeSection
{ {
Handle(XmlMNaming_NamedShapeDriver) aNamedShapeDriver = Handle(XmlMNaming_NamedShapeDriver) aNamedShapeDriver =
Handle(XmlMNaming_NamedShapeDriver)::DownCast (aDriver); Handle(XmlMNaming_NamedShapeDriver)::DownCast (aDriver);
aNamedShapeDriver -> WriteShapeSection (theElement); aNamedShapeDriver->WriteShapeSection (theElement, theProgress);
isShape = Standard_True; isShape = Standard_True;
} }
return isShape; return isShape;

View File

@ -33,37 +33,20 @@ DEFINE_STANDARD_HANDLE(XmlDrivers_DocumentStorageDriver, XmlLDrivers_DocumentSto
class XmlDrivers_DocumentStorageDriver : public XmlLDrivers_DocumentStorageDriver class XmlDrivers_DocumentStorageDriver : public XmlLDrivers_DocumentStorageDriver
{ {
public: public:
Standard_EXPORT XmlDrivers_DocumentStorageDriver
(const TCollection_ExtendedString& theCopyright);
Standard_EXPORT XmlDrivers_DocumentStorageDriver(const TCollection_ExtendedString& theCopyright); Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers
(const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver) Standard_OVERRIDE; Standard_EXPORT virtual Standard_Boolean WriteShapeSection
(XmlObjMgt_Element& thePDoc,
Standard_EXPORT virtual Standard_Boolean WriteShapeSection (XmlObjMgt_Element& thePDoc) Standard_OVERRIDE; const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(XmlDrivers_DocumentStorageDriver,XmlLDrivers_DocumentStorageDriver) DEFINE_STANDARD_RTTIEXT(XmlDrivers_DocumentStorageDriver,XmlLDrivers_DocumentStorageDriver)
protected:
private:
}; };
#endif // _XmlDrivers_DocumentStorageDriver_HeaderFile #endif // _XmlDrivers_DocumentStorageDriver_HeaderFile

View File

@ -17,6 +17,7 @@
#include <CDM_Application.hxx> #include <CDM_Application.hxx>
#include <CDM_Document.hxx> #include <CDM_Document.hxx>
#include <Message_Messenger.hxx> #include <Message_Messenger.hxx>
#include <Message_ProgressSentry.hxx>
#include <CDM_MetaData.hxx> #include <CDM_MetaData.hxx>
#include <LDOM_DocumentType.hxx> #include <LDOM_DocumentType.hxx>
#include <LDOM_LDOMImplementation.hxx> #include <LDOM_LDOMImplementation.hxx>
@ -174,9 +175,10 @@ Handle(CDM_Document) XmlLDrivers_DocumentRetrievalDriver::CreateDocument()
//purpose : //purpose :
//======================================================================= //=======================================================================
void XmlLDrivers_DocumentRetrievalDriver::Read void XmlLDrivers_DocumentRetrievalDriver::Read
(const TCollection_ExtendedString& theFileName, (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication) const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
myReaderStatus = PCDM_RS_DriverFailure; myReaderStatus = PCDM_RS_DriverFailure;
myFileName = theFileName; myFileName = theFileName;
@ -186,7 +188,7 @@ void XmlLDrivers_DocumentRetrievalDriver::Read
if (aFileStream.is_open() && aFileStream.good()) if (aFileStream.is_open() && aFileStream.good())
{ {
Read (aFileStream, NULL, theNewDocument, theApplication); Read (aFileStream, NULL, theNewDocument, theApplication, theProgress);
} }
else else
{ {
@ -207,7 +209,8 @@ void XmlLDrivers_DocumentRetrievalDriver::Read
void XmlLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& theIStream, void XmlLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& /*theStorageData*/, const Handle(Storage_Data)& /*theStorageData*/,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication) const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Handle(Message_Messenger) aMessageDriver = theApplication -> MessageDriver(); Handle(Message_Messenger) aMessageDriver = theApplication -> MessageDriver();
::take_time (~0, " +++++ Start RETRIEVE procedures ++++++", aMessageDriver); ::take_time (~0, " +++++ Start RETRIEVE procedures ++++++", aMessageDriver);
@ -229,7 +232,7 @@ void XmlLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& t
const XmlObjMgt_Element anElement= aParser.getDocument().getDocumentElement(); const XmlObjMgt_Element anElement= aParser.getDocument().getDocumentElement();
::take_time (0, " +++++ Fin parsing XML : ", aMessageDriver); ::take_time (0, " +++++ Fin parsing XML : ", aMessageDriver);
ReadFromDomDocument (anElement, theNewDocument, theApplication); ReadFromDomDocument (anElement, theNewDocument, theApplication, theProgress);
} }
//======================================================================= //=======================================================================
@ -242,7 +245,8 @@ void XmlLDrivers_DocumentRetrievalDriver::Read (Standard_IStream& t
void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
(const XmlObjMgt_Element& theElement, (const XmlObjMgt_Element& theElement,
const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication) const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
const Handle(Message_Messenger) aMsgDriver = const Handle(Message_Messenger) aMsgDriver =
theApplication -> MessageDriver(); theApplication -> MessageDriver();
@ -427,13 +431,20 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
} }
} }
} }
Message_ProgressSentry aPS(theProgress, "Reading document", 0, 2, 1);
// 2. Read Shapes section // 2. Read Shapes section
if (myDrivers.IsNull()) myDrivers = AttributeDrivers (aMsgDriver); if (myDrivers.IsNull()) myDrivers = AttributeDrivers (aMsgDriver);
const Handle(XmlMDF_ADriver) aNSDriver = ReadShapeSection(theElement, aMsgDriver); const Handle(XmlMDF_ADriver) aNSDriver = ReadShapeSection(theElement, aMsgDriver, theProgress);
if(!aNSDriver.IsNull()) if(!aNSDriver.IsNull())
::take_time (0, " +++++ Fin reading Shapes : ", aMsgDriver); ::take_time (0, " +++++ Fin reading Shapes : ", aMsgDriver);
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
// 2.1. Keep document format version in RT // 2.1. Keep document format version in RT
Handle(Storage_HeaderData) aHeaderData = new Storage_HeaderData(); Handle(Storage_HeaderData) aHeaderData = new Storage_HeaderData();
aHeaderData->SetStorageVersion(aCurDocVersion); aHeaderData->SetStorageVersion(aCurDocVersion);
@ -448,7 +459,7 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
TCollection_ExtendedString aMessage ("PasteDocument"); TCollection_ExtendedString aMessage ("PasteDocument");
aMsgDriver ->Send (aMessage.ToExtString(), Message_Trace); aMsgDriver ->Send (aMessage.ToExtString(), Message_Trace);
#endif #endif
if (!MakeDocument(theElement, theNewDocument)) if (!MakeDocument(theElement, theNewDocument, theProgress))
myReaderStatus = PCDM_RS_MakeFailure; myReaderStatus = PCDM_RS_MakeFailure;
else else
myReaderStatus = PCDM_RS_OK; myReaderStatus = PCDM_RS_OK;
@ -458,6 +469,12 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
TCollection_ExtendedString anErrorString (anException.GetMessageString()); TCollection_ExtendedString anErrorString (anException.GetMessageString());
aMsgDriver ->Send (anErrorString.ToExtString(), Message_Fail); aMsgDriver ->Send (anErrorString.ToExtString(), Message_Fail);
} }
if (!aPS.More())
{
myReaderStatus = PCDM_RS_UserBreak;
return;
}
aPS.Next();
// Wipe off the shapes written to the <shapes> section // Wipe off the shapes written to the <shapes> section
ShapeSetCleaning(aNSDriver); ShapeSetCleaning(aNSDriver);
@ -475,14 +492,15 @@ void XmlLDrivers_DocumentRetrievalDriver::ReadFromDomDocument
//======================================================================= //=======================================================================
Standard_Boolean XmlLDrivers_DocumentRetrievalDriver::MakeDocument Standard_Boolean XmlLDrivers_DocumentRetrievalDriver::MakeDocument
(const XmlObjMgt_Element& theElement, (const XmlObjMgt_Element& theElement,
const Handle(CDM_Document)& theTDoc) const Handle(CDM_Document)& theTDoc,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Standard_Boolean aResult = Standard_False; Standard_Boolean aResult = Standard_False;
Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc); Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc);
if (!TDOC.IsNull()) if (!TDOC.IsNull())
{ {
Handle(TDF_Data) aTDF = new TDF_Data(); Handle(TDF_Data) aTDF = new TDF_Data();
aResult = XmlMDF::FromTo (theElement, aTDF, myRelocTable, myDrivers); aResult = XmlMDF::FromTo (theElement, aTDF, myRelocTable, myDrivers, theProgress);
if (aResult) { if (aResult) {
TDOC->SetData (aTDF); TDOC->SetData (aTDF);
TDocStd_Owner::SetDocument (aTDF, TDOC); TDocStd_Owner::SetDocument (aTDF, TDOC);
@ -540,7 +558,8 @@ static void take_time (const Standard_Integer isReset, const char * aHeader,
//======================================================================= //=======================================================================
Handle(XmlMDF_ADriver) XmlLDrivers_DocumentRetrievalDriver::ReadShapeSection( Handle(XmlMDF_ADriver) XmlLDrivers_DocumentRetrievalDriver::ReadShapeSection(
const XmlObjMgt_Element& /*theElement*/, const XmlObjMgt_Element& /*theElement*/,
const Handle(Message_Messenger)& /*aMsgDriver*/) const Handle(Message_Messenger)& /*aMsgDriver*/,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
Handle(XmlMDF_ADriver) aDriver; Handle(XmlMDF_ADriver) aDriver;
//empty; to be redefined //empty; to be redefined

View File

@ -49,12 +49,16 @@ public:
Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE; Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE;
Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName, const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName,
const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual void Read (Standard_IStream& theIStream, Standard_EXPORT virtual void Read (Standard_IStream& theIStream,
const Handle(Storage_Data)& theStorageData, const Handle(Storage_Data)& theStorageData,
const Handle(CDM_Document)& theDoc, const Handle(CDM_Document)& theDoc,
const Handle(CDM_Application)& theApplication) Standard_OVERRIDE; const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver); Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
@ -66,11 +70,19 @@ public:
protected: protected:
Standard_EXPORT virtual void ReadFromDomDocument (const XmlObjMgt_Element& theDomElement, const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Application)& theApplication); Standard_EXPORT virtual void ReadFromDomDocument (const XmlObjMgt_Element& theDomElement,
const Handle(CDM_Document)& theNewDocument,
const Handle(CDM_Application)& theApplication,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT virtual Standard_Boolean MakeDocument (const XmlObjMgt_Element& thePDoc, const Handle(CDM_Document)& theTDoc); Standard_EXPORT virtual Standard_Boolean MakeDocument (const XmlObjMgt_Element& thePDoc,
const Handle(CDM_Document)& theTDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection (const XmlObjMgt_Element& thePDoc, const Handle(Message_Messenger)& theMsgDriver); Standard_EXPORT virtual Handle(XmlMDF_ADriver) ReadShapeSection
(const XmlObjMgt_Element& thePDoc,
const Handle(Message_Messenger)& theMsgDriver,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver); Standard_EXPORT virtual void ShapeSetCleaning (const Handle(XmlMDF_ADriver)& theDriver);

View File

@ -18,6 +18,7 @@
#include <CDM_Document.hxx> #include <CDM_Document.hxx>
#include <Message.hxx> #include <Message.hxx>
#include <Message_Messenger.hxx> #include <Message_Messenger.hxx>
#include <Message_ProgressSentry.hxx>
#include <LDOM_DocumentType.hxx> #include <LDOM_DocumentType.hxx>
#include <LDOM_LDOMImplementation.hxx> #include <LDOM_LDOMImplementation.hxx>
#include <LDOM_XmlWriter.hxx> #include <LDOM_XmlWriter.hxx>
@ -92,7 +93,8 @@ void XmlLDrivers_DocumentStorageDriver::AddNamespace
//purpose : //purpose :
//======================================================================= //=======================================================================
void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDocument, void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDocument,
const TCollection_ExtendedString& theFileName) const TCollection_ExtendedString& theFileName,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
myFileName = theFileName; myFileName = theFileName;
@ -101,7 +103,7 @@ void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)&
if (aFileStream.is_open() && aFileStream.good()) if (aFileStream.is_open() && aFileStream.good())
{ {
Write (theDocument, aFileStream); Write (theDocument, aFileStream, theProgress);
} }
else else
{ {
@ -120,8 +122,9 @@ void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)&
//function : Write //function : Write
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_EXPORT void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDocument, void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_Document)& theDocument,
Standard_OStream& theOStream) Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
Handle(Message_Messenger) aMessageDriver = theDocument->Application()->MessageDriver(); Handle(Message_Messenger) aMessageDriver = theDocument->Application()->MessageDriver();
::take_time (~0, " +++++ Start STORAGE procedures ++++++", aMessageDriver); ::take_time (~0, " +++++ Start STORAGE procedures ++++++", aMessageDriver);
@ -132,7 +135,7 @@ Standard_EXPORT void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_
// Fill the document with data // Fill the document with data
XmlObjMgt_Element anElement = aDOMDoc.getDocumentElement(); XmlObjMgt_Element anElement = aDOMDoc.getDocumentElement();
if (WriteToDomDocument (theDocument, anElement) == Standard_False) { if (WriteToDomDocument (theDocument, anElement, theProgress) == Standard_False) {
LDOM_XmlWriter aWriter; LDOM_XmlWriter aWriter;
aWriter.SetIndentation(1); aWriter.SetIndentation(1);
@ -164,8 +167,10 @@ Standard_EXPORT void XmlLDrivers_DocumentStorageDriver::Write (const Handle(CDM_
// data to XML, this method should be reimplemented avoiding step 3 // data to XML, this method should be reimplemented avoiding step 3
//======================================================================= //=======================================================================
Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Handle(CDM_Document)& theDocument, Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument
XmlObjMgt_Element& theElement) (const Handle(CDM_Document)& theDocument,
XmlObjMgt_Element& theElement,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
SetIsError(Standard_False); SetIsError(Standard_False);
Handle(Message_Messenger) aMessageDriver = Handle(Message_Messenger) aMessageDriver =
@ -320,14 +325,21 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Ha
aCommentsElem.appendChild (aCItem); aCommentsElem.appendChild (aCItem);
XmlObjMgt::SetExtendedString (aCItem, aComments(i)); XmlObjMgt::SetExtendedString (aCItem, aComments(i));
} }
Message_ProgressSentry aPS(theProgress, "Writing", 0, 2, 1);
// 2a. Write document contents // 2a. Write document contents
Standard_Integer anObjNb = 0; Standard_Integer anObjNb = 0;
{ {
try try
{ {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
anObjNb = MakeDocument(theDocument, theElement); anObjNb = MakeDocument(theDocument, theElement, theProgress);
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return IsError();
}
aPS.Next();
} }
catch (Standard_Failure const& anException) catch (Standard_Failure const& anException)
{ {
@ -353,8 +365,15 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Ha
myRelocTable.Clear(); myRelocTable.Clear();
// 4. Write Shapes section // 4. Write Shapes section
if(WriteShapeSection(theElement)) if (WriteShapeSection(theElement, theProgress))
::take_time (0, " +++ Fin DOM data for Shapes : ", aMessageDriver); ::take_time (0, " +++ Fin DOM data for Shapes : ", aMessageDriver);
if (!aPS.More())
{
SetIsError(Standard_True);
SetStoreStatus(PCDM_SS_UserBreak);
return IsError();
}
aPS.Next();
return IsError(); return IsError();
} }
@ -364,7 +383,8 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument (const Ha
//======================================================================= //=======================================================================
Standard_Integer XmlLDrivers_DocumentStorageDriver::MakeDocument Standard_Integer XmlLDrivers_DocumentStorageDriver::MakeDocument
(const Handle(CDM_Document)& theTDoc, (const Handle(CDM_Document)& theTDoc,
XmlObjMgt_Element& theElement) XmlObjMgt_Element& theElement,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
TCollection_ExtendedString aMessage; TCollection_ExtendedString aMessage;
Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc); Handle(TDocStd_Document) TDOC = Handle(TDocStd_Document)::DownCast(theTDoc);
@ -385,7 +405,7 @@ Standard_Integer XmlLDrivers_DocumentStorageDriver::MakeDocument
if (myDrivers.IsNull()) myDrivers = AttributeDrivers (aMessageDriver); if (myDrivers.IsNull()) myDrivers = AttributeDrivers (aMessageDriver);
// Retrieve from DOM_Document // Retrieve from DOM_Document
XmlMDF::FromTo (aTDF, theElement, myRelocTable, myDrivers); XmlMDF::FromTo (aTDF, theElement, myRelocTable, myDrivers, theProgress);
#ifdef OCCT_DEBUGXML #ifdef OCCT_DEBUGXML
aMessage = "First step successfull"; aMessage = "First step successfull";
aMessageDriver -> Send (aMessage.ToExtString(), Message_Warning); aMessageDriver -> Send (aMessage.ToExtString(), Message_Warning);
@ -446,7 +466,8 @@ static void take_time (const Standard_Integer isReset, const char * aHeader,
//purpose : defines WriteShapeSection //purpose : defines WriteShapeSection
//======================================================================= //=======================================================================
Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteShapeSection Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteShapeSection
(XmlObjMgt_Element& /*theElement*/) (XmlObjMgt_Element& /*theElement*/,
const Handle(Message_ProgressIndicator)& /*theProgress*/)
{ {
// empty; should be redefined in subclasses // empty; should be redefined in subclasses
return Standard_False; return Standard_False;

View File

@ -45,9 +45,13 @@ public:
Standard_EXPORT XmlLDrivers_DocumentStorageDriver(const TCollection_ExtendedString& theCopyright); Standard_EXPORT XmlLDrivers_DocumentStorageDriver(const TCollection_ExtendedString& theCopyright);
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, const TCollection_ExtendedString& theFileName) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
const TCollection_ExtendedString& theFileName,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream) Standard_OVERRIDE; Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
Standard_OStream& theOStream,
const Handle(Message_ProgressIndicator)& theProgress = NULL) Standard_OVERRIDE;
Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver); Standard_EXPORT virtual Handle(XmlMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
@ -59,13 +63,22 @@ public:
protected: protected:
Standard_EXPORT virtual Standard_Boolean WriteToDomDocument (const Handle(CDM_Document)& theDocument, XmlObjMgt_Element& thePDoc); Standard_EXPORT virtual Standard_Boolean WriteToDomDocument
(const Handle(CDM_Document)& theDocument,
XmlObjMgt_Element& thePDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT virtual Standard_Integer MakeDocument (const Handle(CDM_Document)& theDocument, XmlObjMgt_Element& thePDoc); Standard_EXPORT virtual Standard_Integer MakeDocument
(const Handle(CDM_Document)& theDocument,
XmlObjMgt_Element& thePDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT void AddNamespace (const TCollection_AsciiString& thePrefix, const TCollection_AsciiString& theURI); Standard_EXPORT void AddNamespace (const TCollection_AsciiString& thePrefix,
const TCollection_AsciiString& theURI);
Standard_EXPORT virtual Standard_Boolean WriteShapeSection (XmlObjMgt_Element& thePDoc); Standard_EXPORT virtual Standard_Boolean WriteShapeSection
(XmlObjMgt_Element& thePDoc,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Handle(XmlMDF_ADriverTable) myDrivers; Handle(XmlMDF_ADriverTable) myDrivers;
XmlObjMgt_SRelocationTable myRelocTable; XmlObjMgt_SRelocationTable myRelocTable;

View File

@ -15,6 +15,7 @@
#include <Message_Messenger.hxx> #include <Message_Messenger.hxx>
#include <Message_ProgressSentry.hxx>
#include <Storage_Schema.hxx> #include <Storage_Schema.hxx>
#include <TColStd_MapOfTransient.hxx> #include <TColStd_MapOfTransient.hxx>
#include <TDF_Attribute.hxx> #include <TDF_Attribute.hxx>
@ -60,11 +61,12 @@ static TColStd_MapOfTransient& UnsuppTypesMap ()
void XmlMDF::FromTo (const Handle(TDF_Data)& theData, void XmlMDF::FromTo (const Handle(TDF_Data)& theData,
XmlObjMgt_Element& theElement, XmlObjMgt_Element& theElement,
XmlObjMgt_SRelocationTable& theRelocTable, XmlObjMgt_SRelocationTable& theRelocTable,
const Handle(XmlMDF_ADriverTable)& theDrivers) const Handle(XmlMDF_ADriverTable)& theDrivers,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
UnsuppTypesMap().Clear(); UnsuppTypesMap().Clear();
// Standard_Integer count = // Standard_Integer count =
WriteSubTree(theData->Root(), theElement, theRelocTable, theDrivers); WriteSubTree(theData->Root(), theElement, theRelocTable, theDrivers, theProgress);
UnsuppTypesMap().Clear(); UnsuppTypesMap().Clear();
} }
@ -76,7 +78,8 @@ Standard_Integer XmlMDF::WriteSubTree
(const TDF_Label& theLabel, (const TDF_Label& theLabel,
XmlObjMgt_Element& theElement, XmlObjMgt_Element& theElement,
XmlObjMgt_SRelocationTable& theRelocTable, XmlObjMgt_SRelocationTable& theRelocTable,
const Handle(XmlMDF_ADriverTable)& theDrivers) const Handle(XmlMDF_ADriverTable)& theDrivers,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
XmlObjMgt_Document aDoc = theElement.getOwnerDocument(); XmlObjMgt_Document aDoc = theElement.getOwnerDocument();
@ -128,10 +131,16 @@ Standard_Integer XmlMDF::WriteSubTree
// write sub-labels // write sub-labels
TDF_ChildIterator itr2 (theLabel); TDF_ChildIterator itr2 (theLabel);
for ( ; itr2.More(); itr2.Next()) Standard_Real child_count = 0;
for (; itr2.More(); ++child_count, itr2.Next())
{
}
itr2.Initialize(theLabel);
Message_ProgressSentry aPS(theProgress, "Writing sub-tree", 0, child_count, 1);
for ( ; itr2.More() && aPS.More(); itr2.Next(), aPS.Next())
{ {
const TDF_Label& aChildLab = itr2.Value(); const TDF_Label& aChildLab = itr2.Value();
count += WriteSubTree(aChildLab, aLabElem, theRelocTable, theDrivers); count += WriteSubTree(aChildLab, aLabElem, theRelocTable, theDrivers, theProgress);
} }
if (count > 0 || TDocStd_Owner::GetDocument(theLabel.Data())->EmptyLabelsSavingMode()) if (count > 0 || TDocStd_Owner::GetDocument(theLabel.Data())->EmptyLabelsSavingMode())
@ -141,7 +150,6 @@ Standard_Integer XmlMDF::WriteSubTree
// set attribute "tag" // set attribute "tag"
aLabElem.setAttribute (::TagString(), theLabel.Tag()); aLabElem.setAttribute (::TagString(), theLabel.Tag());
} }
return count; return count;
} }
@ -152,7 +160,8 @@ Standard_Integer XmlMDF::WriteSubTree
Standard_Boolean XmlMDF::FromTo (const XmlObjMgt_Element& theElement, Standard_Boolean XmlMDF::FromTo (const XmlObjMgt_Element& theElement,
Handle(TDF_Data)& theData, Handle(TDF_Data)& theData,
XmlObjMgt_RRelocationTable& theRelocTable, XmlObjMgt_RRelocationTable& theRelocTable,
const Handle(XmlMDF_ADriverTable)& theDrivers) const Handle(XmlMDF_ADriverTable)& theDrivers,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
TDF_Label aRootLab = theData->Root(); TDF_Label aRootLab = theData->Root();
XmlMDF_MapOfDriver aDriverMap; XmlMDF_MapOfDriver aDriverMap;
@ -167,7 +176,7 @@ Standard_Boolean XmlMDF::FromTo (const XmlObjMgt_Element& theElement,
if ( anElem.getNodeName().equals (::LabelString()) ) if ( anElem.getNodeName().equals (::LabelString()) )
{ {
Standard_Integer subcount = Standard_Integer subcount =
ReadSubTree(anElem, aRootLab, theRelocTable, aDriverMap); ReadSubTree(anElem, aRootLab, theRelocTable, aDriverMap, theProgress);
// check for error // check for error
if (subcount < 0) if (subcount < 0)
return Standard_False; return Standard_False;
@ -188,7 +197,8 @@ Standard_Boolean XmlMDF::FromTo (const XmlObjMgt_Element& theElement,
Standard_Integer XmlMDF::ReadSubTree (const XmlObjMgt_Element& theElement, Standard_Integer XmlMDF::ReadSubTree (const XmlObjMgt_Element& theElement,
const TDF_Label& theLabel, const TDF_Label& theLabel,
XmlObjMgt_RRelocationTable& theRelocTable, XmlObjMgt_RRelocationTable& theRelocTable,
const XmlMDF_MapOfDriver& theDriverMap) const XmlMDF_MapOfDriver& theDriverMap,
const Handle(Message_ProgressIndicator)& theProgress)
{ {
// Extraction of the driver subset. // Extraction of the driver subset.
Standard_Integer count = 0; Standard_Integer count = 0;
@ -196,6 +206,7 @@ Standard_Integer XmlMDF::ReadSubTree (const XmlObjMgt_Element& theElement,
//XmlObjMgt_Element anElem = (const XmlObjMgt_Element &) theElement.getFirstChild(); //XmlObjMgt_Element anElem = (const XmlObjMgt_Element &) theElement.getFirstChild();
LDOM_Node theNode = theElement.getFirstChild(); LDOM_Node theNode = theElement.getFirstChild();
XmlObjMgt_Element anElem = (const XmlObjMgt_Element &) theNode; XmlObjMgt_Element anElem = (const XmlObjMgt_Element &) theNode;
Message_ProgressSentry aPS(theProgress, "Reading sub-tree", 0, 2, 1, true);
while ( !anElem.isNull() ) while ( !anElem.isNull() )
{ {
if ( anElem.getNodeType() == LDOM_Node::ELEMENT_NODE ) if ( anElem.getNodeType() == LDOM_Node::ELEMENT_NODE )
@ -217,7 +228,7 @@ Standard_Integer XmlMDF::ReadSubTree (const XmlObjMgt_Element& theElement,
// read sub-tree // read sub-tree
Standard_Integer subcount = Standard_Integer subcount =
ReadSubTree(anElem, aLab, theRelocTable, theDriverMap); ReadSubTree(anElem, aLab, theRelocTable, theDriverMap, theProgress);
// check for error // check for error
if (subcount == -1) if (subcount == -1)
return -1; return -1;
@ -305,6 +316,10 @@ Standard_Integer XmlMDF::ReadSubTree (const XmlObjMgt_Element& theElement,
//anElem = (const XmlObjMgt_Element &) anElem.getNextSibling(); //anElem = (const XmlObjMgt_Element &) anElem.getNextSibling();
LDOM_Node theNode1 = anElem.getNextSibling(); LDOM_Node theNode1 = anElem.getNextSibling();
anElem = (const XmlObjMgt_Element &) theNode1; anElem = (const XmlObjMgt_Element &) theNode1;
if (!aPS.More())
return -1;
aPS.Next();
} }
// AfterRetrieval // AfterRetrieval

View File

@ -26,6 +26,9 @@
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
#include <XmlObjMgt_RRelocationTable.hxx> #include <XmlObjMgt_RRelocationTable.hxx>
#include <XmlMDF_MapOfDriver.hxx> #include <XmlMDF_MapOfDriver.hxx>
#include <Message_ProgressIndicator.hxx>
class TDF_Data; class TDF_Data;
class XmlMDF_ADriverTable; class XmlMDF_ADriverTable;
class TDF_Label; class TDF_Label;
@ -58,38 +61,45 @@ public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
//! Translates a transient <aSource> into a persistent //! Translates a transient <aSource> into a persistent
//! <aTarget>. //! <aTarget>.
Standard_EXPORT static void FromTo (const Handle(TDF_Data)& aSource, XmlObjMgt_Element& aTarget, XmlObjMgt_SRelocationTable& aReloc, const Handle(XmlMDF_ADriverTable)& aDrivers); Standard_EXPORT static void FromTo (const Handle(TDF_Data)& aSource,
XmlObjMgt_Element& aTarget,
XmlObjMgt_SRelocationTable& aReloc,
const Handle(XmlMDF_ADriverTable)& aDrivers,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Translates a persistent <aSource> into a transient //! Translates a persistent <aSource> into a transient
//! <aTarget>. //! <aTarget>.
//! Returns True if completed successfully (False on error) //! Returns True if completed successfully (False on error)
Standard_EXPORT static Standard_Boolean FromTo (const XmlObjMgt_Element& aSource, Handle(TDF_Data)& aTarget, XmlObjMgt_RRelocationTable& aReloc, const Handle(XmlMDF_ADriverTable)& aDrivers); Standard_EXPORT static Standard_Boolean FromTo
(const XmlObjMgt_Element& aSource,
Handle(TDF_Data)& aTarget, XmlObjMgt_RRelocationTable& aReloc,
const Handle(XmlMDF_ADriverTable)& aDrivers,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Adds the attribute storage drivers to <aDriverSeq>. //! Adds the attribute storage drivers to <aDriverSeq>.
Standard_EXPORT static void AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable, const Handle(Message_Messenger)& theMessageDriver); Standard_EXPORT static void AddDrivers (const Handle(XmlMDF_ADriverTable)& aDriverTable,
const Handle(Message_Messenger)& theMessageDriver);
protected:
private: private:
Standard_EXPORT static Standard_Integer WriteSubTree
(const TDF_Label& theLabel,
XmlObjMgt_Element& theElement,
XmlObjMgt_SRelocationTable& aReloc,
const Handle(XmlMDF_ADriverTable)& aDrivers,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT static Standard_Integer WriteSubTree (const TDF_Label& theLabel, XmlObjMgt_Element& theElement, XmlObjMgt_SRelocationTable& aReloc, const Handle(XmlMDF_ADriverTable)& aDrivers); Standard_EXPORT static Standard_Integer ReadSubTree
(const XmlObjMgt_Element& theElement,
const TDF_Label& theLabel,
XmlObjMgt_RRelocationTable& aReloc,
const XmlMDF_MapOfDriver& aDrivers,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
Standard_EXPORT static Standard_Integer ReadSubTree (const XmlObjMgt_Element& theElement, const TDF_Label& theLabel, XmlObjMgt_RRelocationTable& aReloc, const XmlMDF_MapOfDriver& aDrivers); Standard_EXPORT static void CreateDrvMap (const Handle(XmlMDF_ADriverTable)& aDriverTable,
XmlMDF_MapOfDriver& anAsciiDriverMap);
Standard_EXPORT static void CreateDrvMap (const Handle(XmlMDF_ADriverTable)& aDriverTable, XmlMDF_MapOfDriver& anAsciiDriverMap);
friend class XmlMDF_ADriver; friend class XmlMDF_ADriver;
friend class XmlMDF_TagSourceDriver; friend class XmlMDF_TagSourceDriver;
@ -98,10 +108,4 @@ friend class XmlMDF_ADriverTable;
}; };
#endif // _XmlMDF_HeaderFile #endif // _XmlMDF_HeaderFile

View File

@ -17,6 +17,7 @@
#include <BRepTools.hxx> #include <BRepTools.hxx>
#include <Message_Messenger.hxx> #include <Message_Messenger.hxx>
#include <Message_ProgressSentry.hxx>
#include <LDOM_OSStream.hxx> #include <LDOM_OSStream.hxx>
#include <LDOM_Text.hxx> #include <LDOM_Text.hxx>
#include <Standard_SStream.hxx> #include <Standard_SStream.hxx>
@ -333,8 +334,8 @@ static int doTranslate (const XmlMNaming_Shape1& thePShape,
//purpose : //purpose :
//======================================================================= //=======================================================================
void XmlMNaming_NamedShapeDriver::ReadShapeSection void XmlMNaming_NamedShapeDriver::ReadShapeSection (const XmlObjMgt_Element& theElement,
(const XmlObjMgt_Element& theElement) const Handle(Message_ProgressIndicator)& theProgress)
{ {
XmlObjMgt_Element anElement = XmlObjMgt_Element anElement =
XmlObjMgt::FindChildByName (theElement, ::ShapesString()); XmlObjMgt::FindChildByName (theElement, ::ShapesString());
@ -347,7 +348,7 @@ void XmlMNaming_NamedShapeDriver::ReadShapeSection
LDOMString aData = aNode.getNodeValue(); LDOMString aData = aNode.getNodeValue();
std::stringstream aStream (std::string(aData.GetString())); std::stringstream aStream (std::string(aData.GetString()));
myShapeSet.Clear(); myShapeSet.Clear();
myShapeSet.Read (aStream); myShapeSet.Read (aStream, theProgress);
break; break;
} }
} }
@ -359,8 +360,8 @@ void XmlMNaming_NamedShapeDriver::ReadShapeSection
//purpose : //purpose :
//======================================================================= //=======================================================================
void XmlMNaming_NamedShapeDriver::WriteShapeSection void XmlMNaming_NamedShapeDriver::WriteShapeSection (XmlObjMgt_Element& theElement,
(XmlObjMgt_Element& theElement) const Handle(Message_ProgressIndicator)& theProgress)
{ {
// Create "shapes" element and append it as child // Create "shapes" element and append it as child
XmlObjMgt_Document aDoc = theElement.getOwnerDocument(); XmlObjMgt_Document aDoc = theElement.getOwnerDocument();
@ -373,7 +374,11 @@ void XmlMNaming_NamedShapeDriver::WriteShapeSection
LDOM_OSStream aStream (16 * 1024); LDOM_OSStream aStream (16 * 1024);
// ostrstream aStream; // ostrstream aStream;
// aStream.rdbuf() -> setbuf (0, 16380); // aStream.rdbuf() -> setbuf (0, 16380);
myShapeSet.Write (aStream); Message_ProgressSentry aPS(theProgress, "Writing shape section", 0, 2, 1);
myShapeSet.Write (aStream, theProgress);
if (!aPS.More())
return;
aPS.Next();
aStream << std::ends; aStream << std::ends;
char * aStr = (char *)aStream.str(); char * aStr = (char *)aStream.str();
LDOM_Text aText = aDoc.createTextNode (aStr); LDOM_Text aText = aDoc.createTextNode (aStr);
@ -384,6 +389,9 @@ void XmlMNaming_NamedShapeDriver::WriteShapeSection
// Clear the shape set to avoid appending to it on the next write // Clear the shape set to avoid appending to it on the next write
BRepTools_ShapeSet& aShapeSet = (BRepTools_ShapeSet&) myShapeSet; BRepTools_ShapeSet& aShapeSet = (BRepTools_ShapeSet&) myShapeSet;
aShapeSet.Clear(); aShapeSet.Clear();
if (!aPS.More())
return;
aPS.Next();
} }
} }

View File

@ -37,23 +37,29 @@ DEFINE_STANDARD_HANDLE(XmlMNaming_NamedShapeDriver, XmlMDF_ADriver)
class XmlMNaming_NamedShapeDriver : public XmlMDF_ADriver class XmlMNaming_NamedShapeDriver : public XmlMDF_ADriver
{ {
public: public:
Standard_EXPORT XmlMNaming_NamedShapeDriver(const Handle(Message_Messenger)& aMessageDriver); Standard_EXPORT XmlMNaming_NamedShapeDriver(const Handle(Message_Messenger)& aMessageDriver);
Standard_EXPORT virtual Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE; Standard_EXPORT virtual Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
Standard_EXPORT virtual Standard_Boolean Paste (const XmlObjMgt_Persistent& theSource, const Handle(TDF_Attribute)& theTarget, XmlObjMgt_RRelocationTable& theRelocTable) const Standard_OVERRIDE; Standard_EXPORT virtual Standard_Boolean Paste
(const XmlObjMgt_Persistent& theSource,
const Handle(TDF_Attribute)& theTarget,
XmlObjMgt_RRelocationTable& theRelocTable) const Standard_OVERRIDE;
Standard_EXPORT virtual void Paste (const Handle(TDF_Attribute)& theSource, XmlObjMgt_Persistent& theTarget, XmlObjMgt_SRelocationTable& theRelocTable) const Standard_OVERRIDE; Standard_EXPORT virtual void Paste
(const Handle(TDF_Attribute)& theSource,
XmlObjMgt_Persistent& theTarget,
XmlObjMgt_SRelocationTable& theRelocTable) const Standard_OVERRIDE;
//! Input the shapes from DOM element //! Input the shapes from DOM element
Standard_EXPORT void ReadShapeSection (const XmlObjMgt_Element& anElement); Standard_EXPORT void ReadShapeSection (const XmlObjMgt_Element& anElement,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Output the shapes into DOM element //! Output the shapes into DOM element
Standard_EXPORT void WriteShapeSection (XmlObjMgt_Element& anElement); Standard_EXPORT void WriteShapeSection (XmlObjMgt_Element& anElement,
const Handle(Message_ProgressIndicator)& theProgress = NULL);
//! Clear myShapeSet //! Clear myShapeSet
Standard_EXPORT void Clear(); Standard_EXPORT void Clear();
@ -61,29 +67,15 @@ public:
//! get the format of topology //! get the format of topology
TopTools_LocationSet& GetShapesLocations(); TopTools_LocationSet& GetShapesLocations();
DEFINE_STANDARD_RTTIEXT(XmlMNaming_NamedShapeDriver,XmlMDF_ADriver) DEFINE_STANDARD_RTTIEXT(XmlMNaming_NamedShapeDriver,XmlMDF_ADriver)
protected:
private: private:
BRepTools_ShapeSet myShapeSet; BRepTools_ShapeSet myShapeSet;
}; };
#include <XmlMNaming_NamedShapeDriver.lxx> #include <XmlMNaming_NamedShapeDriver.lxx>
#endif // _XmlMNaming_NamedShapeDriver_HeaderFile #endif // _XmlMNaming_NamedShapeDriver_HeaderFile

View File

@ -6,4 +6,5 @@
006 bugs 006 bugs
007 driver 007 driver
008 nam 008 nam
009 progress

37
tests/caf/progress/A1 Normal file
View File

@ -0,0 +1,37 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: SaveAs
#
puts "caf009-A1"
# Configurate XProgress
XProgress -g +t -tcloutput
# Create binary document
NewDocument Doc BinOcaf
# Fill the document by box
box b 1 1 1
SetShape Doc 0:1 b
# SaveAs
set output [SaveAs Doc ${imagedir}/testA1.cbf]
# Close the document
Close Doc
# Test data
set ctr { "0%" "Writing document" "Writing sub tree"
"Writing geometry" "Writing 2D curves" "Writing curves"
"Writing surfases" "Writing shapes" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: SaveAs command for binary files: Mismatch data on '$data'"
break;
}
}

37
tests/caf/progress/A2 Normal file
View File

@ -0,0 +1,37 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: SaveAs
#
puts "caf009-A2"
# Configurate XProgress
XProgress -g +t -tcloutput
# Create binary document
NewDocument Doc XmlOcaf
# Fill the document by box
box b 1 1 1
SetShape Doc 0:1 b
# SaveAs
set output [SaveAs Doc ${imagedir}/testA2.xml]
# Close the document
Close Doc
# Test data
set ctr { "0%" "Writing sub-tree" "Writing shape section"
"Writing Shapes" "Writing geometry" "2D Curves" "3D Curves" "Surfaces" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: SaveAs command for xml files: Mismatch data on '$data'"
break
}
}

36
tests/caf/progress/B1 Normal file
View File

@ -0,0 +1,36 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: Open
#
puts "caf009-B1"
set bDoc [CreateBinDoc]
# Configurate XProgress
XProgress -g +t -tcloutput
# Open binary document
if {${bDoc} == "" } {
puts "Error: Open command for binary files: Error, wrong path"
return
}
set output [Open ${bDoc} Doc]
# Close the document
Close Doc
# Test data
set ctr {"0%" "Reading data" "Reading geomentry" "Reading curves 2d"
"Reading surfaces" "Reading Shapes" "Reading sub tree" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: Open command for binary files: Mismatch data on '$data'"
break
}
}

36
tests/caf/progress/B2 Normal file
View File

@ -0,0 +1,36 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: Open
#
puts "caf009-B2"
set xDoc [CreateXmlDoc]
# Configurate XProgress
XProgress -g +t -tcloutput
# Open xml document
if {${xDoc} == "" } {
puts "Error: Open command for xml files: wrong path"
return
}
set output [Open ${xDoc} Doc]
# Close the document
Close Doc
# Test data
set ctr {"0%" "Reading document" "Reading geometry" "3D Curves"
"Surfaces" "Shapes" "Reading sub-tree" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: Open command for xml files: Mismatch data on '$data'"
break
}
}

43
tests/caf/progress/C1 Normal file
View File

@ -0,0 +1,43 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: Save
#
puts "caf009-C1"
set bDoc [CreateBinDoc]
# Open document
if {${bDoc} == "" } {
puts "Save command for binary files: Error, cannot open file"
return
}
Open ${bDoc} Doc
# Fill the document by another box
box b 1 1 1
SetShape Doc 0:2 b
# Configurate XProgress
XProgress -g +t -tcloutput
# Save
set output [Save Doc]
# Close the document
Close Doc
# Test data
set ctr { "0%" "Writing document" "Writing sub tree"
"Writing geometry" "Writing 2D curves" "Writing curves"
"Writing surfases" "Writing shapes" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: Save command for binary files: Mismatch data on '$data'"
break
}
}

42
tests/caf/progress/C2 Normal file
View File

@ -0,0 +1,42 @@
#INTERFACE CAF
# Message_ProgressIndicator
#
# Testing attribute: TDocStd_Application
#
# Testing command: Save
#
puts "caf009-C2"
set xDoc [CreateXmlDoc]
# Open document
if {${xDoc} == "" } {
puts "Save command for binary files: Error, cannot open file"
return
}
Open ${xDoc} Doc
# Fill the document by another box
box b 1 1 1
SetShape Doc 0:2 b
# Configurate XProgress
XProgress -g +t -tcloutput
# Save
set output [Save Doc]
# Close the document
Close Doc
# Test data
set ctr { "0%" "Writing sub-tree" "Writing shape section"
"Writing Shapes" "Writing geometry" "2D Curves" "3D Curves" "Surfaces" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: Save command for xml files: Mismatch data on '$data'"
break
}
}

41
tests/caf/progress/begin Normal file
View File

@ -0,0 +1,41 @@
# begin
if { [array get Draw_Groups "TOPOLOGY Check commands"] == "" } {
pload TOPTEST
}
proc CreateBinDoc {} {
global imagedir casename
# Create binary document
NewDocument DocBin BinOcaf
# Fill document by box
box b 1 1 1
SetShape DocBin 0:1 b
# Save document
set bDoc "${imagedir}/$casename.cbf"
SaveAs DocBin $bDoc
# Close document
Close DocBin
return $bDoc
}
proc CreateXmlDoc {} {
global imagedir casename
# Create xml document
NewDocument DocXml XmlOcaf
# Fill document by box
box b 1 1 1
SetShape DocXml 0:1 b
# Save document
set xDoc "${imagedir}/$casename.xml"
SaveAs DocXml $xDoc
# Close document
Close DocXml
return $xDoc
}