From 45d8465ea2a1dd77072ce5bdc326a51ca0a2e474 Mon Sep 17 00:00:00 2001 From: myn Date: Fri, 11 Mar 2016 22:08:01 +0300 Subject: [PATCH] 0027241: Create a complete test case to verify reading of all attribute types from MDTV-Standard document Added test case that works in one of two modes: 1) create synthetic document (in old version of OCCT) containing all possible attributes. 2) open the document and compare all attributes with expected values. Fixed reading of TDataStd_NamedData, TDataXtd_PatternStd, and PColStd_HArray2OfReal. Point and curve representations are created even from NULL geometry handles. The code is simplified by abandoning usage of templates from StdObjMgt_ContentTypes class for persistent data elements. Fixed SetAsciiString Draw command failed when the target label contained NamedData attribute. --- adm/UDLIST | 1 - src/DDataStd/DDataStd_BasicCommands.cxx | 2 +- src/ShapePersistent/FILES | 2 - src/ShapePersistent/ShapePersistent.cxx | 35 +- src/ShapePersistent/ShapePersistent_BRep.cxx | 174 +++++--- src/ShapePersistent/ShapePersistent_BRep.hxx | 87 ++-- src/ShapePersistent/ShapePersistent_Geom.cxx | 6 +- src/ShapePersistent/ShapePersistent_Geom.hxx | 20 +- .../ShapePersistent_Geom2d_Curve.hxx | 30 +- .../ShapePersistent_Geom_Curve.hxx | 32 +- .../ShapePersistent_Geom_Surface.hxx | 54 +-- .../ShapePersistent_HArray1.cxx | 45 -- .../ShapePersistent_HArray1.hxx | 18 +- .../ShapePersistent_HArray2.cxx | 38 -- .../ShapePersistent_HArray2.hxx | 10 +- .../ShapePersistent_HSequence.hxx | 14 +- src/ShapePersistent/ShapePersistent_Poly.hxx | 32 +- .../ShapePersistent_TopoDS.cxx | 12 +- .../ShapePersistent_TopoDS.hxx | 8 +- .../StdLDrivers_DocumentRetrievalDriver.cxx | 42 +- .../StdLDrivers_DocumentRetrievalDriver.hxx | 3 +- src/StdLObject/FILES | 2 - src/StdLObject/StdLObject_GUID.cxx | 33 -- src/StdLObject/StdLObject_GUID.hxx | 29 -- src/StdLPersistent/FILES | 1 - .../StdLPersistent_Collection.cxx | 30 +- .../StdLPersistent_Collection.hxx | 8 +- src/StdLPersistent/StdLPersistent_Data.cxx | 4 +- src/StdLPersistent/StdLPersistent_Data.hxx | 6 +- .../StdLPersistent_Dependency.hxx | 4 +- .../StdLPersistent_Document.hxx | 2 +- .../StdLPersistent_Function.hxx | 6 +- src/StdLPersistent/StdLPersistent_HArray1.cxx | 31 +- src/StdLPersistent/StdLPersistent_HArray1.hxx | 40 +- .../StdLPersistent_HArray1OfPersistent.hxx | 24 - src/StdLPersistent/StdLPersistent_HArray2.cxx | 28 +- src/StdLPersistent/StdLPersistent_HArray2.hxx | 31 +- src/StdLPersistent/StdLPersistent_HString.cxx | 8 +- .../StdLPersistent_NamedData.cxx | 74 ++-- .../StdLPersistent_NamedData.hxx | 46 +- src/StdLPersistent/StdLPersistent_Real.hxx | 9 +- .../StdLPersistent_TreeNode.hxx | 8 +- src/StdLPersistent/StdLPersistent_Value.cxx | 7 +- .../StdLPersistent_Variable.hxx | 4 +- src/StdLPersistent/StdLPersistent_XLink.hxx | 4 +- src/StdObjMgt/FILES | 1 - src/StdObjMgt/StdObjMgt_Attribute.hxx | 7 +- src/StdObjMgt/StdObjMgt_ContentTypes.hxx | 102 ----- src/StdObjMgt/StdObjMgt_Persistent.hxx | 4 +- src/StdObjMgt/StdObjMgt_ReadData.cxx | 22 + src/StdObjMgt/StdObjMgt_ReadData.hxx | 93 ++-- src/StdObjMgt/StdObjMgt_SharedObject.hxx | 5 +- src/StdObject/FILES | 6 +- src/StdObject/StdObject_Location.cxx | 8 +- src/StdObject/StdObject_Location.hxx | 20 +- src/StdObject/StdObject_Shape.cxx | 2 +- src/StdObject/StdObject_Shape.hxx | 31 +- src/StdObject/StdObject_gp.hxx | 414 ------------------ src/StdObject/StdObject_gp_Axes.hxx | 81 ++++ src/StdObject/StdObject_gp_Curves.hxx | 168 +++++++ src/StdObject/StdObject_gp_Surfaces.hxx | 86 ++++ src/StdObject/StdObject_gp_Trsfs.hxx | 80 ++++ src/StdObject/StdObject_gp_Vectors.hxx | 102 +++++ src/StdPersistent/FILES | 2 - src/StdPersistent/StdPersistent_DataXtd.cxx | 2 +- src/StdPersistent/StdPersistent_DataXtd.hxx | 11 +- .../StdPersistent_DataXtd_Constraint.cxx | 2 +- .../StdPersistent_DataXtd_Constraint.hxx | 15 +- .../StdPersistent_DataXtd_PatternStd.cxx | 4 + .../StdPersistent_DataXtd_PatternStd.hxx | 20 +- src/StdPersistent/StdPersistent_HArray1.cxx | 22 - src/StdPersistent/StdPersistent_HArray1.hxx | 14 +- .../StdPersistent_HArray1OfShape1.hxx | 23 - src/StdPersistent/StdPersistent_Naming.cxx | 10 +- src/StdPersistent/StdPersistent_Naming.hxx | 27 +- src/StdPersistent/StdPersistent_PPrsStd.hxx | 14 +- src/StdPersistent/StdPersistent_TopLoc.cxx | 6 +- src/StdPersistent/StdPersistent_TopLoc.hxx | 6 +- src/StdPersistent/StdPersistent_TopoDS.hxx | 6 +- src/TKStdL/PACKAGES | 1 - tests/caf/bugs/D2 | 333 ++++++++++++++ tests/parse.rules | 3 +- 82 files changed, 1524 insertions(+), 1333 deletions(-) delete mode 100644 src/ShapePersistent/ShapePersistent_HArray1.cxx delete mode 100644 src/ShapePersistent/ShapePersistent_HArray2.cxx delete mode 100644 src/StdLObject/FILES delete mode 100644 src/StdLObject/StdLObject_GUID.cxx delete mode 100644 src/StdLObject/StdLObject_GUID.hxx delete mode 100644 src/StdLPersistent/StdLPersistent_HArray1OfPersistent.hxx delete mode 100644 src/StdObjMgt/StdObjMgt_ContentTypes.hxx delete mode 100644 src/StdObject/StdObject_gp.hxx create mode 100644 src/StdObject/StdObject_gp_Axes.hxx create mode 100644 src/StdObject/StdObject_gp_Curves.hxx create mode 100644 src/StdObject/StdObject_gp_Surfaces.hxx create mode 100644 src/StdObject/StdObject_gp_Trsfs.hxx create mode 100644 src/StdObject/StdObject_gp_Vectors.hxx delete mode 100644 src/StdPersistent/StdPersistent_HArray1.cxx delete mode 100644 src/StdPersistent/StdPersistent_HArray1OfShape1.hxx create mode 100644 tests/caf/bugs/D2 diff --git a/adm/UDLIST b/adm/UDLIST index 26cf2ebd67..b6d6b2fb69 100644 --- a/adm/UDLIST +++ b/adm/UDLIST @@ -244,7 +244,6 @@ n CDM n FWOSDriver n PCDM n StdLDrivers -n StdLObject n StdLPersistent n StdObjMgt n StdDrivers diff --git a/src/DDataStd/DDataStd_BasicCommands.cxx b/src/DDataStd/DDataStd_BasicCommands.cxx index 65ea9970ec..732d161eb2 100644 --- a/src/DDataStd/DDataStd_BasicCommands.cxx +++ b/src/DDataStd/DDataStd_BasicCommands.cxx @@ -2856,7 +2856,7 @@ static Standard_Integer DDataStd_SetAsciiString (Draw_Interpretor& di, DDF::AddLabel(DF, arg[2], aLabel); TCollection_AsciiString aString(arg[3]); Handle(TDataStd_AsciiString) anAtt; - if(!aLabel.FindAttribute(TDataStd_NamedData::GetID(), anAtt)) + if(!aLabel.FindAttribute(TDataStd_AsciiString::GetID(), anAtt)) anAtt = TDataStd_AsciiString::Set(aLabel, aString); if(anAtt.IsNull()) { di << "AsciiString attribute is not found or not set" << "\n"; diff --git a/src/ShapePersistent/FILES b/src/ShapePersistent/FILES index d90ed480ea..4042c5f604 100644 --- a/src/ShapePersistent/FILES +++ b/src/ShapePersistent/FILES @@ -11,9 +11,7 @@ ShapePersistent_Geom_Surface.hxx ShapePersistent_Geom2d.hxx ShapePersistent_Geom2d_Curve.cxx ShapePersistent_Geom2d_Curve.hxx -ShapePersistent_HArray1.cxx ShapePersistent_HArray1.hxx -ShapePersistent_HArray2.cxx ShapePersistent_HArray2.hxx ShapePersistent_HSequence.cxx ShapePersistent_HSequence.hxx diff --git a/src/ShapePersistent/ShapePersistent.cxx b/src/ShapePersistent/ShapePersistent.cxx index ec9db1ef69..f2e69d86f6 100644 --- a/src/ShapePersistent/ShapePersistent.cxx +++ b/src/ShapePersistent/ShapePersistent.cxx @@ -15,6 +15,7 @@ #include #include +#include #include #include #include @@ -36,16 +37,32 @@ void ShapePersistent::BindTypes (StdObjMgt_MapOfInstantiators& theMap) { theMap.Bind ("PTopoDS_HArray1OfHShape"); + theMap.Bind ("PColPGeom_HArray1OfCurve"); + theMap.Bind ("PColPGeom_HArray1OfBoundedCurve"); + theMap.Bind ("PColPGeom_HArray1OfBezierCurve"); + theMap.Bind ("PColPGeom_HArray1OfBSplineCurve"); + theMap.Bind ("PColPGeom_HArray1OfSurface"); + theMap.Bind ("PColPGeom_HArray1OfBoundedSurface"); + theMap.Bind ("PColPGeom_HArray2OfSurface"); + theMap.Bind ("PColPGeom_HArray2OfBoundedSurface"); + theMap.Bind ("PColPGeom_HArray2OfBezierSurface"); + theMap.Bind ("PColPGeom_HArray2OfBSplineSurface"); + theMap.Bind ("PColPGeom2d_HArray1OfCurve"); + theMap.Bind ("PColPGeom2d_HArray1OfBoundedCurve"); + theMap.Bind ("PColPGeom2d_HArray1OfBezierCurve"); + theMap.Bind ("PColPGeom2d_HArray1OfBSplineCurve"); - theMap.Bind ("PTopoDS_HShape"); - theMap.Bind ("PTopoDS_Vertex"); - theMap.Bind ("PTopoDS_Edge"); - theMap.Bind ("PTopoDS_Wire"); - theMap.Bind ("PTopoDS_Face"); - theMap.Bind ("PTopoDS_Shell"); - theMap.Bind ("PTopoDS_Solid"); - theMap.Bind ("PTopoDS_CompSolid"); - theMap.Bind ("PTopoDS_Compound"); + theMap.Bind ("PColStd_HArray2OfReal"); + + theMap.Bind ("PTopoDS_HShape"); + theMap.Bind ("PTopoDS_Vertex"); + theMap.Bind ("PTopoDS_Edge"); + theMap.Bind ("PTopoDS_Wire"); + theMap.Bind ("PTopoDS_Face"); + theMap.Bind ("PTopoDS_Shell"); + theMap.Bind ("PTopoDS_Solid"); + theMap.Bind ("PTopoDS_CompSolid"); + theMap.Bind ("PTopoDS_Compound"); theMap.Bind ("PTopoDS_TShape"); diff --git a/src/ShapePersistent/ShapePersistent_BRep.cxx b/src/ShapePersistent/ShapePersistent_BRep.cxx index cb401ca1ae..6c2a894a5a 100644 --- a/src/ShapePersistent/ShapePersistent_BRep.cxx +++ b/src/ShapePersistent/ShapePersistent_BRep.cxx @@ -74,11 +74,12 @@ void ShapePersistent_BRep::PointOnCurve::Read Handle(BRep_PointRepresentation) ShapePersistent_BRep::PointOnCurve::import() const { - if (myCurve.IsNull()) - return NULL; + Handle(Geom_Curve) aCurve; + if (myCurve) + aCurve = myCurve->Import(); return new BRep_PointOnCurve - (myParameter, myCurve->Import(), myLocation.Import()); + (myParameter, aCurve, myLocation.Import()); } void ShapePersistent_BRep::PointsOnSurface::Read @@ -98,11 +99,16 @@ void ShapePersistent_BRep::PointOnCurveOnSurface::Read Handle(BRep_PointRepresentation) ShapePersistent_BRep::PointOnCurveOnSurface::import() const { - if (mySurface.IsNull() || myPCurve.IsNull()) - return NULL; + Handle(Geom2d_Curve) aPCurve; + if (myPCurve) + aPCurve = myPCurve->Import(); + + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); return new BRep_PointOnCurveOnSurface - (myParameter, myPCurve->Import(), mySurface->Import(), myLocation.Import()); + (myParameter, aPCurve, aSurface, myLocation.Import()); } void ShapePersistent_BRep::PointOnSurface::Read @@ -115,11 +121,12 @@ void ShapePersistent_BRep::PointOnSurface::Read Handle(BRep_PointRepresentation) ShapePersistent_BRep::PointOnSurface::import() const { - if (mySurface.IsNull()) - return NULL; + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); return new BRep_PointOnSurface - (myParameter, myParameter2, mySurface->Import(), myLocation.Import()); + (myParameter, myParameter2, aSurface, myLocation.Import()); } //======================================================================= @@ -164,12 +171,12 @@ void ShapePersistent_BRep::Curve3D::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::Curve3D::import() const { - Handle(Geom_Curve) aCurve; + Handle(Geom_Curve) aCurve3D; if (myCurve3D) - aCurve = myCurve3D->Import(); + aCurve3D = myCurve3D->Import(); Handle(BRep_Curve3D) aRepresentation = - new BRep_Curve3D (aCurve, myLocation.Import()); + new BRep_Curve3D (aCurve3D, myLocation.Import()); aRepresentation->SetRange (myFirst, myLast); return aRepresentation; @@ -185,18 +192,21 @@ void ShapePersistent_BRep::CurveOnSurface::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::CurveOnSurface::import() const { - if (myPCurve.IsNull() || mySurface.IsNull()) - return NULL; + Handle(Geom2d_Curve) aPCurve; + if (myPCurve) + aPCurve = myPCurve->Import(); - Handle(BRep_CurveOnSurface) aCurve = - new BRep_CurveOnSurface (myPCurve->Import(), - mySurface->Import(), - myLocation.Import()); + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); - aCurve->SetUVPoints (myUV1, myUV2); - aCurve->SetRange (myFirst, myLast); + Handle(BRep_CurveOnSurface) aRepresentation = + new BRep_CurveOnSurface (aPCurve, aSurface, myLocation.Import()); - return aCurve; + aRepresentation->SetUVPoints (myUV1, myUV2); + aRepresentation->SetRange (myFirst, myLast); + + return aRepresentation; } void ShapePersistent_BRep::CurveOnClosedSurface::Read @@ -209,21 +219,29 @@ void ShapePersistent_BRep::CurveOnClosedSurface::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::CurveOnClosedSurface::import() const { - if (myPCurve.IsNull() || mySurface.IsNull() || myPCurve2.IsNull()) - return NULL; + Handle(Geom2d_Curve) aPCurve; + if (myPCurve) + aPCurve = myPCurve->Import(); - Handle(BRep_CurveOnClosedSurface) aCurve = - new BRep_CurveOnClosedSurface (myPCurve->Import(), - myPCurve2->Import(), - mySurface->Import(), - myLocation.Import(), - myContinuity); + Handle(Geom2d_Curve) aPCurve2; + if (myPCurve2) + aPCurve2 = myPCurve2->Import(); - aCurve->SetUVPoints (myUV1 , myUV2 ); - aCurve->SetUVPoints2 (myUV21 , myUV22); - aCurve->SetRange (myFirst, myLast); + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); - return aCurve; + GeomAbs_Shape aContinuity = static_cast (myContinuity); + + Handle(BRep_CurveOnClosedSurface) aRepresentation = + new BRep_CurveOnClosedSurface + (aPCurve, aPCurve2, aSurface, myLocation.Import(), aContinuity); + + aRepresentation->SetUVPoints (myUV1 , myUV2 ); + aRepresentation->SetUVPoints2 (myUV21 , myUV22); + aRepresentation->SetRange (myFirst, myLast); + + return aRepresentation; } void ShapePersistent_BRep::Polygon3D::Read @@ -236,10 +254,11 @@ void ShapePersistent_BRep::Polygon3D::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::Polygon3D::import() const { - if (myPolygon3D.IsNull()) - return NULL; + Handle(Poly_Polygon3D) aPolygon3D; + if (myPolygon3D) + aPolygon3D = myPolygon3D->Import(); - return new BRep_Polygon3D (myPolygon3D->Import(), myLocation.Import()); + return new BRep_Polygon3D (aPolygon3D, myLocation.Import()); } void ShapePersistent_BRep::PolygonOnTriangulation::Read @@ -252,12 +271,16 @@ void ShapePersistent_BRep::PolygonOnTriangulation::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::PolygonOnTriangulation::import() const { - if (myPolygon.IsNull() || myTriangulation.IsNull()) - return NULL; + Handle(Poly_PolygonOnTriangulation) aPolygon; + if (myPolygon) + aPolygon = myPolygon->Import(); - return new BRep_PolygonOnTriangulation (myPolygon->Import(), - myTriangulation->Import(), - myLocation.Import()); + Handle(Poly_Triangulation) aTriangulation; + if (myTriangulation) + aTriangulation = myTriangulation->Import(); + + return new BRep_PolygonOnTriangulation + (aPolygon, aTriangulation, myLocation.Import()); } void ShapePersistent_BRep::PolygonOnClosedTriangulation::Read @@ -270,13 +293,20 @@ void ShapePersistent_BRep::PolygonOnClosedTriangulation::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::PolygonOnClosedTriangulation::import() const { - if (myPolygon.IsNull() || myTriangulation.IsNull() || myPolygon2.IsNull()) - return NULL; + Handle(Poly_PolygonOnTriangulation) aPolygon; + if (myPolygon) + aPolygon = myPolygon->Import(); - return new BRep_PolygonOnClosedTriangulation (myPolygon->Import(), - myPolygon2->Import(), - myTriangulation->Import(), - myLocation.Import()); + Handle(Poly_PolygonOnTriangulation) aPolygon2; + if (myPolygon2) + aPolygon2 = myPolygon2->Import(); + + Handle(Poly_Triangulation) aTriangulation; + if (myTriangulation) + aTriangulation = myTriangulation->Import(); + + return new BRep_PolygonOnClosedTriangulation + (aPolygon, aPolygon2, aTriangulation, myLocation.Import()); } void ShapePersistent_BRep::PolygonOnSurface::Read @@ -289,12 +319,15 @@ void ShapePersistent_BRep::PolygonOnSurface::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::PolygonOnSurface::import() const { - if (myPolygon2D.IsNull() || mySurface.IsNull()) - return NULL; + Handle(Poly_Polygon2D) aPolygon2D; + if (myPolygon2D) + aPolygon2D = myPolygon2D->Import(); - return new BRep_PolygonOnSurface (myPolygon2D->Import(), - mySurface->Import(), - myLocation.Import()); + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); + + return new BRep_PolygonOnSurface (aPolygon2D, aSurface, myLocation.Import()); } void ShapePersistent_BRep::PolygonOnClosedSurface::Read @@ -307,13 +340,20 @@ void ShapePersistent_BRep::PolygonOnClosedSurface::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::PolygonOnClosedSurface::import() const { - if (myPolygon2D.IsNull() || mySurface.IsNull() || myPolygon2.IsNull()) - return NULL; + Handle(Poly_Polygon2D) aPolygon2D; + if (myPolygon2D) + aPolygon2D = myPolygon2D->Import(); - return new BRep_PolygonOnClosedSurface (myPolygon2D->Import(), - myPolygon2->Import(), - mySurface->Import(), - myLocation.Import()); + Handle(Poly_Polygon2D) aPolygon2; + if (myPolygon2) + aPolygon2 = myPolygon2->Import(); + + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); + + return new BRep_PolygonOnClosedSurface + (aPolygon2D, aPolygon2, aSurface, myLocation.Import()); } void ShapePersistent_BRep::CurveOn2Surfaces::Read @@ -326,14 +366,18 @@ void ShapePersistent_BRep::CurveOn2Surfaces::Read Handle(BRep_CurveRepresentation) ShapePersistent_BRep::CurveOn2Surfaces::import() const { - if (mySurface.IsNull() || mySurface2.IsNull()) - return NULL; + Handle(Geom_Surface) aSurface; + if (mySurface) + aSurface = mySurface->Import(); - return new BRep_CurveOn2Surfaces (mySurface->Import(), - mySurface2->Import(), - myLocation.Import(), - myLocation2.Import(), - myContinuity); + Handle(Geom_Surface) aSurface2; + if (mySurface2) + aSurface2 = mySurface2->Import(); + + GeomAbs_Shape aContinuity = static_cast (myContinuity); + + return new BRep_CurveOn2Surfaces + (aSurface, aSurface2, myLocation.Import(), myLocation2.Import(), aContinuity); } //======================================================================= diff --git a/src/ShapePersistent/ShapePersistent_BRep.hxx b/src/ShapePersistent/ShapePersistent_BRep.hxx index 6a660acde8..3ef0f6d384 100644 --- a/src/ShapePersistent/ShapePersistent_BRep.hxx +++ b/src/ShapePersistent/ShapePersistent_BRep.hxx @@ -20,14 +20,13 @@ #include #include #include -#include +#include #include #include #include #include -#include class BRep_PointRepresentation; class BRep_CurveRepresentation; @@ -50,11 +49,11 @@ public: virtual Handle(BRep_PointRepresentation) import() const; protected: - Object myLocation; - Value myParameter; + StdObject_Location myLocation; + Standard_Real myParameter; private: - Reference myNext; + Handle(PointRepresentation) myNext; }; class PointOnCurve : public PointRepresentation @@ -64,7 +63,7 @@ public: virtual Handle(BRep_PointRepresentation) import() const; private: - Reference myCurve; + Handle(ShapePersistent_Geom::Curve) myCurve; }; class PointsOnSurface : public PointRepresentation @@ -73,7 +72,7 @@ public: virtual void Read (StdObjMgt_ReadData& theReadData); protected: - Reference mySurface; + Handle(ShapePersistent_Geom::Surface) mySurface; }; class PointOnCurveOnSurface : public PointsOnSurface @@ -83,7 +82,7 @@ public: virtual Handle(BRep_PointRepresentation) import() const; private: - Reference myPCurve; + Handle(ShapePersistent_Geom2d::Curve) myPCurve; }; class PointOnSurface : public PointsOnSurface @@ -93,7 +92,7 @@ public: virtual Handle(BRep_PointRepresentation) import() const; private: - Value myParameter2; + Standard_Real myParameter2; }; class CurveRepresentation : public StdObjMgt_Persistent @@ -110,10 +109,10 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; protected: - Object myLocation; + StdObject_Location myLocation; private: - Reference myNext; + Handle(CurveRepresentation) myNext; }; class GCurve : public CurveRepresentation @@ -122,8 +121,8 @@ public: virtual void Read (StdObjMgt_ReadData& theReadData); protected: - Value myFirst; - Value myLast; + Standard_Real myFirst; + Standard_Real myLast; }; class Curve3D : public GCurve @@ -133,7 +132,7 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference myCurve3D; + Handle(ShapePersistent_Geom::Curve) myCurve3D; }; class CurveOnSurface : public GCurve @@ -143,10 +142,10 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; protected: - Reference myPCurve; - Reference mySurface; - StdObject_gp::Object myUV1; - StdObject_gp::Object myUV2; + Handle(ShapePersistent_Geom2d::Curve) myPCurve; + Handle(ShapePersistent_Geom::Surface) mySurface; + gp_Pnt2d myUV1; + gp_Pnt2d myUV2; }; class CurveOnClosedSurface : public CurveOnSurface @@ -156,10 +155,10 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference myPCurve2; - Enum myContinuity; - StdObject_gp::Object myUV21; - StdObject_gp::Object myUV22; + Handle(ShapePersistent_Geom2d::Curve) myPCurve2; + Standard_Integer myContinuity; + gp_Pnt2d myUV21; + gp_Pnt2d myUV22; }; class Polygon3D : public CurveRepresentation @@ -169,7 +168,7 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference myPolygon3D; + Handle(ShapePersistent_Poly::Polygon3D) myPolygon3D; }; class PolygonOnTriangulation : public CurveRepresentation @@ -179,8 +178,8 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; protected: - Reference myPolygon; - Reference myTriangulation; + Handle(ShapePersistent_Poly::PolygonOnTriangulation) myPolygon; + Handle(ShapePersistent_Poly::Triangulation) myTriangulation; }; class PolygonOnClosedTriangulation : public PolygonOnTriangulation @@ -190,7 +189,7 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference myPolygon2; + Handle(ShapePersistent_Poly::PolygonOnTriangulation) myPolygon2; }; class PolygonOnSurface : public CurveRepresentation @@ -200,8 +199,8 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; protected: - Reference myPolygon2D; - Reference mySurface; + Handle(ShapePersistent_Poly::Polygon2D) myPolygon2D; + Handle(ShapePersistent_Geom::Surface) mySurface; }; class PolygonOnClosedSurface : public PolygonOnSurface @@ -211,7 +210,7 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference myPolygon2; + Handle(ShapePersistent_Poly::Polygon2D) myPolygon2; }; class CurveOn2Surfaces : public CurveRepresentation @@ -221,10 +220,10 @@ public: virtual Handle(BRep_CurveRepresentation) import() const; private: - Reference mySurface; - Reference mySurface2; - Object myLocation2; - Enum myContinuity; + Handle(ShapePersistent_Geom::Surface) mySurface; + Handle(ShapePersistent_Geom::Surface) mySurface2; + StdObject_Location myLocation2; + Standard_Integer myContinuity; }; private: @@ -241,9 +240,9 @@ private: virtual Handle(TopoDS_TShape) createTShape() const; private: - Value myTolerance; - StdObject_gp::Object myPnt; - Reference myPoints; + Standard_Real myTolerance; + gp_Pnt myPnt; + Handle(PointRepresentation) myPoints; }; class pTEdge : public pTBase @@ -259,9 +258,9 @@ private: virtual Handle(TopoDS_TShape) createTShape() const; private: - Value myTolerance; - Value myFlags; - Reference myCurves; + Standard_Real myTolerance; + Standard_Integer myFlags; + Handle(CurveRepresentation) myCurves; }; class pTFace : public pTBase @@ -278,11 +277,11 @@ private: virtual Handle(TopoDS_TShape) createTShape() const; private: - Reference mySurface; - Reference myTriangulation; - Object myLocation; - Value myTolerance; - Value myNaturalRestriction; + Handle(ShapePersistent_Geom::Surface) mySurface; + Handle(ShapePersistent_Poly::Triangulation) myTriangulation; + StdObject_Location myLocation; + Standard_Real myTolerance; + Standard_Boolean myNaturalRestriction; }; public: diff --git a/src/ShapePersistent/ShapePersistent_Geom.cxx b/src/ShapePersistent/ShapePersistent_Geom.cxx index 17ae4cefed..b5d1505779 100644 --- a/src/ShapePersistent/ShapePersistent_Geom.cxx +++ b/src/ShapePersistent/ShapePersistent_Geom.cxx @@ -12,6 +12,8 @@ // commercial license or contractual agreement. #include +#include +#include //======================================================================= @@ -29,8 +31,8 @@ void ShapePersistent_Geom::instance ::Read (StdObjMgt_ReadData& theReadData) { - StdObject_gp::Object anAxis; - StdObject_gp::Object anXDirection; + gp_Ax1 anAxis; + gp_Dir anXDirection; theReadData >> anAxis >> anXDirection; diff --git a/src/ShapePersistent/ShapePersistent_Geom.hxx b/src/ShapePersistent/ShapePersistent_Geom.hxx index 9da47d7b6c..b0ec0d3455 100644 --- a/src/ShapePersistent/ShapePersistent_Geom.hxx +++ b/src/ShapePersistent/ShapePersistent_Geom.hxx @@ -16,7 +16,12 @@ #define _ShapePersistent_Geom_HeaderFile #include -#include + +#include +#include +#include +#include +#include #include #include @@ -52,7 +57,16 @@ protected: }; template - struct subBase_gp : subBase > {}; + struct subBase_gp : public Base + { + public: + //! Read persistent data from a file. + Standard_EXPORT virtual void Read (StdObjMgt_ReadData& theReadData) + { + GpData aData; + theReadData >> aData; + } + }; template struct subBase_empty : Base {}; @@ -64,7 +78,7 @@ protected: //! Read persistent data from a file. Standard_EXPORT virtual void Read (StdObjMgt_ReadData& theReadData) { - StdObject_gp::Object aData; + Data aData; theReadData >> aData; this->myTransient = new Target (aData); } diff --git a/src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx b/src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx index da39ac34c3..c2530385bb 100644 --- a/src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx +++ b/src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx @@ -46,9 +46,9 @@ class ShapePersistent_Geom2d_Curve : protected ShapePersistent_Geom2d virtual Handle(Geom2d_Curve) Import() const; private: - Value myRational; - Reference myPoles; - Reference myWeights; + Standard_Boolean myRational; + Handle(ShapePersistent_HArray1::Pnt2d) myPoles; + Handle(StdLPersistent_HArray1::Real) myWeights; }; class pBSpline : public pBounded @@ -63,13 +63,13 @@ class ShapePersistent_Geom2d_Curve : protected ShapePersistent_Geom2d virtual Handle(Geom2d_Curve) Import() const; private: - Value myRational; - Value myPeriodic; - Value mySpineDegree; - Reference myPoles; - Reference myWeights; - Reference myKnots; - Reference myMultiplicities; + Standard_Boolean myRational; + Standard_Boolean myPeriodic; + Standard_Integer mySpineDegree; + Handle(ShapePersistent_HArray1::Pnt2d) myPoles; + Handle(StdLPersistent_HArray1::Real) myWeights; + Handle(StdLPersistent_HArray1::Real) myKnots; + Handle(StdLPersistent_HArray1::Integer) myMultiplicities; }; class pTrimmed : public pBounded @@ -81,9 +81,9 @@ class ShapePersistent_Geom2d_Curve : protected ShapePersistent_Geom2d virtual Handle(Geom2d_Curve) Import() const; private: - Reference myBasisCurve; - Value myFirstU; - Value myLastU; + Handle(Curve) myBasisCurve; + Standard_Real myFirstU; + Standard_Real myLastU; }; class pOffset : public pBase @@ -95,8 +95,8 @@ class ShapePersistent_Geom2d_Curve : protected ShapePersistent_Geom2d virtual Handle(Geom2d_Curve) Import() const; private: - Reference myBasisCurve; - Value myOffsetValue; + Handle(Curve) myBasisCurve; + Standard_Real myOffsetValue; }; public: diff --git a/src/ShapePersistent/ShapePersistent_Geom_Curve.hxx b/src/ShapePersistent/ShapePersistent_Geom_Curve.hxx index 7ba8b41e61..1cb00a65ef 100644 --- a/src/ShapePersistent/ShapePersistent_Geom_Curve.hxx +++ b/src/ShapePersistent/ShapePersistent_Geom_Curve.hxx @@ -48,9 +48,9 @@ class ShapePersistent_Geom_Curve : private ShapePersistent_Geom virtual Handle(Geom_Curve) Import() const; private: - Value myRational; - Reference myPoles; - Reference myWeights; + Standard_Boolean myRational; + Handle(ShapePersistent_HArray1::Pnt) myPoles; + Handle(StdLPersistent_HArray1::Real) myWeights; }; class pBSpline : public pBounded @@ -65,13 +65,13 @@ class ShapePersistent_Geom_Curve : private ShapePersistent_Geom virtual Handle(Geom_Curve) Import() const; private: - Value myRational; - Value myPeriodic; - Value mySpineDegree; - Reference myPoles; - Reference myWeights; - Reference myKnots; - Reference myMultiplicities; + Standard_Boolean myRational; + Standard_Boolean myPeriodic; + Standard_Integer mySpineDegree; + Handle(ShapePersistent_HArray1::Pnt) myPoles; + Handle(StdLPersistent_HArray1::Real) myWeights; + Handle(StdLPersistent_HArray1::Real) myKnots; + Handle(StdLPersistent_HArray1::Integer) myMultiplicities; }; class pTrimmed : public pBounded @@ -83,9 +83,9 @@ class ShapePersistent_Geom_Curve : private ShapePersistent_Geom virtual Handle(Geom_Curve) Import() const; private: - Reference myBasisCurve; - Value myFirstU; - Value myLastU; + Handle(Curve) myBasisCurve; + Standard_Real myFirstU; + Standard_Real myLastU; }; class pOffset : public pBase @@ -97,9 +97,9 @@ class ShapePersistent_Geom_Curve : private ShapePersistent_Geom virtual Handle(Geom_Curve) Import() const; private: - Reference myBasisCurve; - StdObject_gp::Object myOffsetDirection; - Value myOffsetValue; + Handle(Curve) myBasisCurve; + gp_Dir myOffsetDirection; + Standard_Real myOffsetValue; }; public: diff --git a/src/ShapePersistent/ShapePersistent_Geom_Surface.hxx b/src/ShapePersistent/ShapePersistent_Geom_Surface.hxx index 380a9582a8..fd48747be8 100644 --- a/src/ShapePersistent/ShapePersistent_Geom_Surface.hxx +++ b/src/ShapePersistent/ShapePersistent_Geom_Surface.hxx @@ -40,15 +40,15 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom { typedef Surface::PersistentBase pBase; - class pSweptData : protected StdObjMgt_ContentTypes + class pSweptData { public: inline void Read (StdObjMgt_ReadData& theReadData) { theReadData >> myBasisCurve >> myDirection; } protected: - Reference myBasisCurve; - StdObject_gp::Object myDirection; + Handle(Curve) myBasisCurve; + gp_Dir myDirection; }; struct pSwept : pBase, pSweptData {}; @@ -71,7 +71,7 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom virtual Handle(Geom_Surface) Import() const; private: - StdObject_gp::Object myLocation; + gp_Pnt myLocation; }; typedef pBase pBounded; @@ -85,10 +85,10 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom virtual Handle(Geom_Surface) Import() const; private: - Value myURational; - Value myVRational; - Reference myPoles; - Reference myWeights; + Standard_Boolean myURational; + Standard_Boolean myVRational; + Handle(ShapePersistent_HArray2::Pnt) myPoles; + Handle(StdLPersistent_HArray2::Real) myWeights; }; class pBSpline : public pBounded @@ -108,18 +108,18 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom virtual Handle(Geom_Surface) Import() const; private: - Value myURational; - Value myVRational; - Value myUPeriodic; - Value myVPeriodic; - Value myUSpineDegree; - Value myVSpineDegree; - Reference myPoles; - Reference myWeights; - Reference myUKnots; - Reference myVKnots; - Reference myUMultiplicities; - Reference myVMultiplicities; + Standard_Boolean myURational; + Standard_Boolean myVRational; + Standard_Boolean myUPeriodic; + Standard_Boolean myVPeriodic; + Standard_Integer myUSpineDegree; + Standard_Integer myVSpineDegree; + Handle(ShapePersistent_HArray2::Pnt) myPoles; + Handle(StdLPersistent_HArray2::Real) myWeights; + Handle(StdLPersistent_HArray1::Real) myUKnots; + Handle(StdLPersistent_HArray1::Real) myVKnots; + Handle(StdLPersistent_HArray1::Integer) myUMultiplicities; + Handle(StdLPersistent_HArray1::Integer) myVMultiplicities; }; class pRectangularTrimmed : public pBounded @@ -134,11 +134,11 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom virtual Handle(Geom_Surface) Import() const; private: - Reference myBasisSurface; - Value myFirstU; - Value myLastU; - Value myFirstV; - Value myLastV; + Handle(Surface) myBasisSurface; + Standard_Real myFirstU; + Standard_Real myLastU; + Standard_Real myFirstV; + Standard_Real myLastV; }; class pOffset : public pBase @@ -150,8 +150,8 @@ class ShapePersistent_Geom_Surface : private ShapePersistent_Geom virtual Handle(Geom_Surface) Import() const; private: - Reference myBasisSurface; - Value myOffsetValue; + Handle(Surface) myBasisSurface; + Standard_Real myOffsetValue; }; public: diff --git a/src/ShapePersistent/ShapePersistent_HArray1.cxx b/src/ShapePersistent/ShapePersistent_HArray1.cxx deleted file mode 100644 index 2c363f6a49..0000000000 --- a/src/ShapePersistent/ShapePersistent_HArray1.cxx +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include -#include -#include - - -template -void ShapePersistent_HArray1::instance::readValue - (StdObjMgt_ReadData& theReadData, const Standard_Integer theIndex) -{ - theReadData.ReadObject (StdObject_gp::Ref (this->myArray->ChangeValue (theIndex))); -} - -template<> -void ShapePersistent_HArray1::instance::readValue - (StdObjMgt_ReadData& theReadData, const Standard_Integer theIndex) -{ - Value N1, N2, N3; - theReadData >> N1 >> N2 >> N3; - this->myArray->ChangeValue (theIndex).Set (N1, N2, N3); -} - -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; -template class ShapePersistent_HArray1::instance; diff --git a/src/ShapePersistent/ShapePersistent_HArray1.hxx b/src/ShapePersistent/ShapePersistent_HArray1.hxx index 7619baacf7..d25a7f5771 100644 --- a/src/ShapePersistent/ShapePersistent_HArray1.hxx +++ b/src/ShapePersistent/ShapePersistent_HArray1.hxx @@ -16,6 +16,8 @@ #define _ShapePersistent_HArray1_HeaderFile #include +#include +#include #include #include @@ -32,13 +34,6 @@ class ShapePersistent_HArray1 : private StdLPersistent_HArray1 { - template - class instance : public StdLPersistent_HArray1::base - { - virtual void readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theIndex); - }; - public: typedef instance XYZ; typedef instance Pnt; @@ -53,4 +48,13 @@ public: typedef instance Triangle; }; +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData& theReadData, Poly_Triangle& theTriangle) +{ + Standard_Integer N1, N2, N3; + theReadData >> N1 >> N2 >> N3; + theTriangle.Set (N1, N2, N3); + return theReadData; +} + #endif diff --git a/src/ShapePersistent/ShapePersistent_HArray2.cxx b/src/ShapePersistent/ShapePersistent_HArray2.cxx deleted file mode 100644 index 6879e1744d..0000000000 --- a/src/ShapePersistent/ShapePersistent_HArray2.cxx +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include -#include -#include - - -template -void ShapePersistent_HArray2::instance::readValue ( - StdObjMgt_ReadData& theReadData, - const Standard_Integer theRow, - const Standard_Integer theCol) -{ - theReadData.ReadObject ( - StdObject_gp::Ref (this->myArray->ChangeValue (theRow, theCol))); -} - -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; -template class ShapePersistent_HArray2::instance; diff --git a/src/ShapePersistent/ShapePersistent_HArray2.hxx b/src/ShapePersistent/ShapePersistent_HArray2.hxx index bd3d6c8f51..ed3646474b 100644 --- a/src/ShapePersistent/ShapePersistent_HArray2.hxx +++ b/src/ShapePersistent/ShapePersistent_HArray2.hxx @@ -16,6 +16,8 @@ #define _ShapePersistent_HArray2_HeaderFile #include +#include +#include #include #include @@ -31,14 +33,6 @@ class ShapePersistent_HArray2 : private StdLPersistent_HArray2 { - template - class instance : public StdLPersistent_HArray2::base - { - virtual void readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theRow, - const Standard_Integer theCol); - }; - public: typedef instance XYZ; typedef instance Pnt; diff --git a/src/ShapePersistent/ShapePersistent_HSequence.hxx b/src/ShapePersistent/ShapePersistent_HSequence.hxx index ad96e71cfe..87d5dd6a2a 100644 --- a/src/ShapePersistent/ShapePersistent_HSequence.hxx +++ b/src/ShapePersistent/ShapePersistent_HSequence.hxx @@ -16,7 +16,7 @@ #define _ShapePersistent_HSequence_HeaderFile #include -#include +#include #include #include @@ -41,9 +41,9 @@ class ShapePersistent_HSequence const ItemType& Item() const { return myItem; } private: - Reference myPreviuos; - Reference myNext; - StdObject_gp::Object myItem; + Handle(node) myPreviuos; + Handle(node) myNext; + ItemType myItem; }; template @@ -60,9 +60,9 @@ class ShapePersistent_HSequence Standard_EXPORT Handle(SequenceClass) Import() const; private: - Reference myFirst; - Reference myLast; - Value mySize; + Handle(Node) myFirst; + Handle(Node) myLast; + Standard_Integer mySize; }; public: diff --git a/src/ShapePersistent/ShapePersistent_Poly.hxx b/src/ShapePersistent/ShapePersistent_Poly.hxx index e97a949b9a..18efeaf665 100644 --- a/src/ShapePersistent/ShapePersistent_Poly.hxx +++ b/src/ShapePersistent/ShapePersistent_Poly.hxx @@ -28,7 +28,7 @@ class Poly_Triangulation; class ShapePersistent_Poly : private StdObjMgt_SharedObject { - class pPolygon2D : public PersistentBase + class pPolygon2D : public Standard_Transient { public: inline void Read (StdObjMgt_ReadData& theReadData) @@ -37,11 +37,11 @@ class ShapePersistent_Poly : private StdObjMgt_SharedObject Handle(Poly_Polygon2D) Import() const; private: - Value myDeflection; - Reference myNodes; + Standard_Real myDeflection; + Handle(ShapePersistent_HArray1::Pnt2d) myNodes; }; - class pPolygon3D : public PersistentBase + class pPolygon3D : public Standard_Transient { public: inline void Read (StdObjMgt_ReadData& theReadData) @@ -50,12 +50,12 @@ class ShapePersistent_Poly : private StdObjMgt_SharedObject Handle(Poly_Polygon3D) Import() const; private: - Value myDeflection; - Reference myNodes; - Reference myParameters; + Standard_Real myDeflection; + Handle(ShapePersistent_HArray1::Pnt) myNodes; + Handle(StdLPersistent_HArray1::Real) myParameters; }; - class pPolygonOnTriangulation : public PersistentBase + class pPolygonOnTriangulation : public Standard_Transient { public: inline void Read (StdObjMgt_ReadData& theReadData) @@ -64,12 +64,12 @@ class ShapePersistent_Poly : private StdObjMgt_SharedObject Handle(Poly_PolygonOnTriangulation) Import() const; private: - Value myDeflection; - Reference myNodes; - Reference myParameters; + Standard_Real myDeflection; + Handle(StdLPersistent_HArray1::Integer) myNodes; + Handle(StdLPersistent_HArray1::Real) myParameters; }; - class pTriangulation : public PersistentBase + class pTriangulation : public Standard_Transient { public: inline void Read (StdObjMgt_ReadData& theReadData) @@ -78,10 +78,10 @@ class ShapePersistent_Poly : private StdObjMgt_SharedObject Handle(Poly_Triangulation) Import() const; private: - Value myDeflection; - Reference myNodes; - Reference myUVNodes; - Reference myTriangles; + Standard_Real myDeflection; + Handle(ShapePersistent_HArray1::Pnt) myNodes; + Handle(ShapePersistent_HArray1::Pnt2d) myUVNodes; + Handle(ShapePersistent_HArray1::Triangle) myTriangles; }; template diff --git a/src/ShapePersistent/ShapePersistent_TopoDS.cxx b/src/ShapePersistent/ShapePersistent_TopoDS.cxx index 0e4e315081..3d3defded8 100644 --- a/src/ShapePersistent/ShapePersistent_TopoDS.cxx +++ b/src/ShapePersistent/ShapePersistent_TopoDS.cxx @@ -31,10 +31,10 @@ enum //function : Read //purpose : Read persistent data from a file //======================================================================= -void ShapePersistent_TopoDS::Shape::Read (StdObjMgt_ReadData& theReadData) +void ShapePersistent_TopoDS::HShape::Read (StdObjMgt_ReadData& theReadData) { theReadData >> myEntry; - myShape.Read (theReadData); + StdObject_Shape::read (theReadData); } void ShapePersistent_TopoDS::pTBase::setFlags @@ -52,8 +52,8 @@ void ShapePersistent_TopoDS::pTBase::setFlags static inline void AddShape (TopoDS_Shape& theParent, const Handle(StdObjMgt_Persistent)& theRef) { - Handle(ShapePersistent_TopoDS::Shape) aShape = - Handle(ShapePersistent_TopoDS::Shape)::DownCast (theRef); + Handle(ShapePersistent_TopoDS::HShape) aShape = + Handle(ShapePersistent_TopoDS::HShape)::DownCast (theRef); if (aShape) BRep_Builder().Add (theParent, aShape->Import()); @@ -69,8 +69,8 @@ template void ShapePersistent_TopoDS::pTBase::addShapesT (TopoDS_Shape& theParent) const { - Handle(ShapesArray) aShapes; - if (myShapes.Cast (aShapes)) + Handle(ShapesArray) aShapes = Handle(ShapesArray)::DownCast (myShapes); + if (aShapes) { typename ShapesArray::Iterator anIter (*aShapes->Array()); for (; anIter.More(); anIter.Next()) diff --git a/src/ShapePersistent/ShapePersistent_TopoDS.hxx b/src/ShapePersistent/ShapePersistent_TopoDS.hxx index ecee6077c9..de0d0b1dcb 100644 --- a/src/ShapePersistent/ShapePersistent_TopoDS.hxx +++ b/src/ShapePersistent/ShapePersistent_TopoDS.hxx @@ -30,18 +30,14 @@ class ShapePersistent_TopoDS : public StdPersistent_TopoDS { public: - class Shape : public StdObjMgt_Persistent + class HShape : public StdObjMgt_Persistent, public StdObject_Shape { public: //! Read persistent data from a file. Standard_EXPORT virtual void Read (StdObjMgt_ReadData& theReadData); - //! Import transient object from the persistent data. - TopoDS_Shape Import() const { return myShape.Import(); } - private: - Reference<> myEntry; - StdObject_Shape myShape; + Handle(StdObjMgt_Persistent) myEntry; }; protected: diff --git a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx index 355978062c..5c2ebadda8 100644 --- a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx +++ b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx @@ -50,24 +50,22 @@ Handle(CDM_Document) StdLDrivers_DocumentRetrievalDriver::CreateDocument() //function : Read //purpose : Retrieve the content of a file into a new document //======================================================================= -void StdLDrivers_DocumentRetrievalDriver::Read ( - const TCollection_ExtendedString& theFileName, +void StdLDrivers_DocumentRetrievalDriver::Read (const TCollection_ExtendedString& theFileName, const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Application)&) { // Read header data and persistent document Storage_HeaderData aHeaderData; Handle(StdObjMgt_Persistent) aPDocument = read (theFileName, aHeaderData); + if (aPDocument.IsNull()) + return; // Import transient document from the persistent one - if (!aPDocument.IsNull()) - { - aPDocument->ImportDocument ( - Handle(TDocStd_Document)::DownCast (theNewDocument)); + aPDocument->ImportDocument ( + Handle(TDocStd_Document)::DownCast (theNewDocument)); - // Copy comments from the header data - theNewDocument->SetComments (aHeaderData.Comments()); - } + // Copy comments from the header data + theNewDocument->SetComments (aHeaderData.Comments()); } //======================================================================= @@ -91,20 +89,20 @@ Handle(StdObjMgt_Persistent) StdLDrivers_DocumentRetrievalDriver::read ( NCollection_Handle aFileDriver (aFileDriverPtr); // Try to open the file - try - { - OCC_CATCH_SIGNALS - PCDM_ReadWriter::Open (*aFileDriver, theFileName, Storage_VSRead); - myReaderStatus = PCDM_RS_OK; - } - catch (Standard_Failure) - { - myReaderStatus = PCDM_RS_OpenError; + try + { + OCC_CATCH_SIGNALS + PCDM_ReadWriter::Open (*aFileDriver, theFileName, Storage_VSRead); + myReaderStatus = PCDM_RS_OK; + } + catch (Standard_Failure) + { + myReaderStatus = PCDM_RS_OpenError; - Standard_SStream aMsg; - aMsg << Standard_Failure::Caught() << endl; - Standard_Failure::Raise (aMsg); - } + Standard_SStream aMsg; + aMsg << Standard_Failure::Caught() << endl; + Standard_Failure::Raise (aMsg); + } // Read header section if (!theHeaderData.Read (*aFileDriver)) diff --git a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx index dc076def5d..b5f86e73a6 100644 --- a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx +++ b/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx @@ -28,8 +28,7 @@ public: Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE; //! 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_Application)& theApplication) Standard_OVERRIDE; diff --git a/src/StdLObject/FILES b/src/StdLObject/FILES deleted file mode 100644 index 1df0b8cc05..0000000000 --- a/src/StdLObject/FILES +++ /dev/null @@ -1,2 +0,0 @@ -StdLObject_GUID.cxx -StdLObject_GUID.hxx diff --git a/src/StdLObject/StdLObject_GUID.cxx b/src/StdLObject/StdLObject_GUID.cxx deleted file mode 100644 index 81c80fa9e4..0000000000 --- a/src/StdLObject/StdLObject_GUID.cxx +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include - - -//======================================================================= -//function : Read -//purpose : Read persistent data from a file -//======================================================================= -void StdLObject_GUID::Read (StdObjMgt_ReadData& theReadData) -{ - Value a32b; - Value a16b[3]; - Value a8b [6]; - - theReadData >> a32b >> a16b[0] >> a16b[1] >> a16b[2]; - theReadData >> a8b[0] >> a8b[1] >> a8b[2] >> a8b[3] >> a8b[4] >> a8b[5]; - - *static_cast (this) = - Standard_GUID (a32b, a16b[0], a16b[1], a16b[2], - a8b[0], a8b[1], a8b[2], a8b[3], a8b[4], a8b[5]); -} diff --git a/src/StdLObject/StdLObject_GUID.hxx b/src/StdLObject/StdLObject_GUID.hxx deleted file mode 100644 index 30afc1b9d7..0000000000 --- a/src/StdLObject/StdLObject_GUID.hxx +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - - -#ifndef _StdLObject_GUID_HeaderFile -#define _StdLObject_GUID_HeaderFile - -#include - -#include - - -class StdLObject_GUID : public Standard_GUID, private StdObjMgt_ContentTypes -{ -public: - void Read (StdObjMgt_ReadData& theReadData); -}; - -#endif diff --git a/src/StdLPersistent/FILES b/src/StdLPersistent/FILES index dafe9dd880..bd1fed42bf 100644 --- a/src/StdLPersistent/FILES +++ b/src/StdLPersistent/FILES @@ -9,7 +9,6 @@ StdLPersistent_Dependency.hxx StdLPersistent_Document.cxx StdLPersistent_Document.hxx StdLPersistent_Function.hxx -StdLPersistent_HArray1OfPersistent.hxx StdLPersistent_HArray1.cxx StdLPersistent_HArray1.hxx StdLPersistent_HArray2.cxx diff --git a/src/StdLPersistent/StdLPersistent_Collection.cxx b/src/StdLPersistent/StdLPersistent_Collection.cxx index ec44de43a8..3deffb8162 100644 --- a/src/StdLPersistent/StdLPersistent_Collection.cxx +++ b/src/StdLPersistent/StdLPersistent_Collection.cxx @@ -66,17 +66,17 @@ private: //function : Read //purpose : Read persistent data from a file //======================================================================= -template -void StdLPersistent_Collection::booleanArrayBase::Read +template +void StdLPersistent_Collection::booleanArrayBase::Read (StdObjMgt_ReadData& theReadData) { - StdLPersistent_Collection::booleanArrayBase::SingleRef::Read (theReadData); + Base::Read (theReadData); theReadData >> myLower >> myUpper; } -template +template template -void StdLPersistent_Collection::booleanArrayBase::import +void StdLPersistent_Collection::booleanArrayBase::import (const ArrayHandle& theArray, Converter theConverter) const { Handle(TColStd_HArray1OfByte) aByteArray = @@ -89,17 +89,17 @@ void StdLPersistent_Collection::booleanArrayBase::import this->myTransient->SetInternalArray (aByteArray); } -template +template template -void StdLPersistent_Collection::directArrayBase::import +void StdLPersistent_Collection::directArrayBase::import (const ArrayHandle& theArray, Converter) const { this->myTransient->ChangeArray (theArray); } -template +template template -void StdLPersistent_Collection::arrayBase::import +void StdLPersistent_Collection::arrayBase::import (const ArrayHandle& theArray, Converter theConverter) const { this->myTransient->Init (theArray->Lower(), theArray->Upper()); @@ -107,18 +107,18 @@ void StdLPersistent_Collection::arrayBase::import this->myTransient->SetValue (i, theConverter (theArray->Value(i))); } -template +template template -void StdLPersistent_Collection::listBase::import +void StdLPersistent_Collection::listBase::import (const ArrayHandle& theArray, Converter theConverter) const { for (Standard_Integer i = theArray->Lower(); i <= theArray->Upper(); i++) this->myTransient->Append (theConverter (theArray->Value(i))); } -template +template template -void StdLPersistent_Collection::mapBase::import +void StdLPersistent_Collection::mapBase::import (const ArrayHandle& theArray, Converter theConverter) const { Handle(TColStd_HPackedMapOfInteger) anHMap = new TColStd_HPackedMapOfInteger; @@ -138,8 +138,8 @@ template class BaseT, void StdLPersistent_Collection:: instance::ImportAttribute() { - Handle(HArrayClass) anHArray; - if (this->myData.Cast (anHArray)) + Handle(HArrayClass) anHArray = Handle(HArrayClass)::DownCast (this->myData); + if (anHArray) { typename HArrayClass::ArrayHandle anArray = anHArray->Array(); if (anArray) diff --git a/src/StdLPersistent/StdLPersistent_Collection.hxx b/src/StdLPersistent/StdLPersistent_Collection.hxx index 643e89d884..aebdab2865 100644 --- a/src/StdLPersistent/StdLPersistent_Collection.hxx +++ b/src/StdLPersistent/StdLPersistent_Collection.hxx @@ -32,7 +32,7 @@ #include -class StdLPersistent_Collection : private StdObjMgt_ContentTypes +class StdLPersistent_Collection { // Converters struct noConversion; @@ -54,8 +54,8 @@ class StdLPersistent_Collection : private StdObjMgt_ContentTypes const; protected: - Value myLower; - Value myUpper; + Standard_Integer myLower; + Standard_Integer myUpper; }; template @@ -118,7 +118,7 @@ class StdLPersistent_Collection : private StdObjMgt_ContentTypes Standard_EXPORT virtual void ImportAttribute(); private: - Value myDelta; + Standard_Boolean myDelta; }; diff --git a/src/StdLPersistent/StdLPersistent_Data.cxx b/src/StdLPersistent/StdLPersistent_Data.cxx index c36bb490a9..5276e50b62 100644 --- a/src/StdLPersistent/StdLPersistent_Data.cxx +++ b/src/StdLPersistent/StdLPersistent_Data.cxx @@ -23,7 +23,7 @@ class StdLPersistent_Data::Parser { public: //! Start parsing a persistent data. - Parser (const TColStd_HArray1OfInteger& theLabels, + Parser (const TColStd_HArray1OfInteger& theLabels, const StdLPersistent_HArray1OfPersistent& theAttributes) : myLabelsIter (theLabels) , myAttribIter (theAttributes) {} @@ -67,7 +67,7 @@ public: } private: - TColStd_HArray1OfInteger ::Iterator myLabelsIter; + TColStd_HArray1OfInteger ::Iterator myLabelsIter; StdLPersistent_HArray1OfPersistent::Iterator myAttribIter; }; diff --git a/src/StdLPersistent/StdLPersistent_Data.hxx b/src/StdLPersistent/StdLPersistent_Data.hxx index 441a677b82..d6d7b3de22 100644 --- a/src/StdLPersistent/StdLPersistent_Data.hxx +++ b/src/StdLPersistent/StdLPersistent_Data.hxx @@ -34,9 +34,9 @@ private: class Parser; private: - Value myVersion; - Reference myLabels; - Reference myAttributes; + Standard_Integer myVersion; + Handle(StdLPersistent_HArray1::Integer) myLabels; + Handle(StdLPersistent_HArray1::Persistent) myAttributes; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_Dependency.hxx b/src/StdLPersistent/StdLPersistent_Dependency.hxx index 4d7884ad80..cc8295140f 100644 --- a/src/StdLPersistent/StdLPersistent_Dependency.hxx +++ b/src/StdLPersistent/StdLPersistent_Dependency.hxx @@ -37,8 +37,8 @@ class StdLPersistent_Dependency void Import (const Handle(AttribClass)& theAttribute) const; private: - StdObjMgt_ContentTypes::Reference myName; - StdObjMgt_ContentTypes::Reference myVariables; + Handle(StdLPersistent_HString::Extended) myName; + Handle(StdLPersistent_HArray1::Persistent) myVariables; }; public: diff --git a/src/StdLPersistent/StdLPersistent_Document.hxx b/src/StdLPersistent/StdLPersistent_Document.hxx index b68a03404e..5ce8b61721 100644 --- a/src/StdLPersistent/StdLPersistent_Document.hxx +++ b/src/StdLPersistent/StdLPersistent_Document.hxx @@ -32,7 +32,7 @@ public: (const Handle(TDocStd_Document)& theDocument) const; private: - Reference myData; + Handle(StdLPersistent_Data) myData; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_Function.hxx b/src/StdLPersistent/StdLPersistent_Function.hxx index 845cb453bf..4d74f425f0 100644 --- a/src/StdLPersistent/StdLPersistent_Function.hxx +++ b/src/StdLPersistent/StdLPersistent_Function.hxx @@ -16,9 +16,9 @@ #define _StdLPersistent_Function_HeaderFile #include -#include #include +#include class StdLPersistent_Function : public StdObjMgt_Attribute @@ -36,8 +36,8 @@ public: } private: - Object myDriverGUID; - Value myFailure; + Standard_GUID myDriverGUID; + Standard_Integer myFailure; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_HArray1.cxx b/src/StdLPersistent/StdLPersistent_HArray1.cxx index ef0cb923ae..99e4e42909 100644 --- a/src/StdLPersistent/StdLPersistent_HArray1.cxx +++ b/src/StdLPersistent/StdLPersistent_HArray1.cxx @@ -12,44 +12,23 @@ // commercial license or contractual agreement. #include -#include //======================================================================= //function : Read //purpose : Read persistent data from a file //======================================================================= -void StdLPersistent_HArray1::commonBase::Read (StdObjMgt_ReadData& theReadData) +void StdLPersistent_HArray1::base::Read (StdObjMgt_ReadData& theReadData) { - Value aLowerBound, anUpperBound; + Standard_Integer aLowerBound, anUpperBound; theReadData >> aLowerBound >> anUpperBound; createArray (aLowerBound, anUpperBound); - theReadData.Driver().BeginReadObjectData(); + StdObjMgt_ReadData::Object anObjectData (theReadData); Standard_Integer aSize; - theReadData.ReadValue (aSize); + anObjectData >> aSize; for (Standard_Integer i = aLowerBound; i <= anUpperBound; i++) - readValue (theReadData, i); - - theReadData.Driver().EndReadObjectData(); + readValue (anObjectData, i); } - -template -void StdLPersistent_HArray1::instance::readValue ( - StdObjMgt_ReadData& theReadData, - const Standard_Integer theIndex) -{ - ValueClass aValue; - theReadData >> aValue; - this->myArray->SetValue (theIndex, static_cast (aValue)); -} - - -template class StdLPersistent_HArray1::instance; -template class StdLPersistent_HArray1::instance; -template class StdLPersistent_HArray1::instance >; -template class StdLPersistent_HArray1::instance >; diff --git a/src/StdLPersistent/StdLPersistent_HArray1.hxx b/src/StdLPersistent/StdLPersistent_HArray1.hxx index c8c9bcecc8..e24faa5fc7 100644 --- a/src/StdLPersistent/StdLPersistent_HArray1.hxx +++ b/src/StdLPersistent/StdLPersistent_HArray1.hxx @@ -16,7 +16,10 @@ #define _StdLPersistent_HArray1_HeaderFile #include -#include +#include + +#include + #include #include #include @@ -26,9 +29,13 @@ class TDF_Label; class TDF_Data; -class StdLPersistent_HArray1 : protected StdObjMgt_ContentTypes +DEFINE_HARRAY1 (StdLPersistent_HArray1OfPersistent, + NCollection_Array1) + + +class StdLPersistent_HArray1 { - class commonBase : public StdObjMgt_Persistent + class base : public StdObjMgt_Persistent { public: //! Read persistent data from a file. @@ -44,7 +51,7 @@ class StdLPersistent_HArray1 : protected StdObjMgt_ContentTypes protected: template - class base : public commonBase + class instance : public base { public: typedef Handle(ArrayClass) ArrayHandle; @@ -60,24 +67,23 @@ protected: const Standard_Integer theUpperBound) { myArray = new ArrayClass (theLowerBound, theUpperBound); } + virtual void readValue (StdObjMgt_ReadData& theReadData, + const Standard_Integer theIndex) + { theReadData >> myArray->ChangeValue (theIndex); } + protected: Handle(ArrayClass) myArray; }; -private: - template > - class instance : public base - { - protected: - Standard_EXPORT virtual void readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theIndex); - }; - public: - typedef instance Integer; - typedef instance Real; - typedef instance >Byte; - typedef instance > Persistent; + typedef instance Integer; + typedef instance Real; + typedef instance Byte; + typedef instance Persistent; }; +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData& theReadData, Standard_Byte& theByte) + { return theReadData >> reinterpret_cast (theByte); } + #endif diff --git a/src/StdLPersistent/StdLPersistent_HArray1OfPersistent.hxx b/src/StdLPersistent/StdLPersistent_HArray1OfPersistent.hxx deleted file mode 100644 index e22a6ae8e8..0000000000 --- a/src/StdLPersistent/StdLPersistent_HArray1OfPersistent.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#ifndef _StdLPersistent_HArray1OfPersistent_HeaderFile -#define _StdLPersistent_HArray1OfPersistent_HeaderFile - - -#include -#include - -DEFINE_HARRAY1 (StdLPersistent_HArray1OfPersistent, - NCollection_Array1) - -#endif // _StdLPersistent_HArray1OfPersistent_HeaderFile diff --git a/src/StdLPersistent/StdLPersistent_HArray2.cxx b/src/StdLPersistent/StdLPersistent_HArray2.cxx index 99135e4a17..8c8afa46bc 100644 --- a/src/StdLPersistent/StdLPersistent_HArray2.cxx +++ b/src/StdLPersistent/StdLPersistent_HArray2.cxx @@ -12,7 +12,6 @@ // commercial license or contractual agreement. #include -#include #include #include @@ -22,35 +21,18 @@ //function : Read //purpose : Read persistent data from a file //======================================================================= -void StdLPersistent_HArray2::commonBase::Read (StdObjMgt_ReadData& theReadData) +void StdLPersistent_HArray2::base::Read (StdObjMgt_ReadData& theReadData) { - Value aLowerRow, aLowerCol, anUpperRow, anUpperCol; + Standard_Integer aLowerRow, aLowerCol, anUpperRow, anUpperCol; theReadData >> aLowerRow >> aLowerCol >> anUpperRow >> anUpperCol; createArray (aLowerRow, aLowerCol, anUpperRow, anUpperCol); - theReadData.Driver().BeginReadObjectData(); + StdObjMgt_ReadData::Object anObjectData (theReadData); Standard_Integer aSize; - theReadData.ReadValue (aSize); + anObjectData >> aSize; for (Standard_Integer aRow = aLowerRow; aRow <= anUpperRow; aRow++) for (Standard_Integer aCol = aLowerCol; aCol <= anUpperCol; aCol++) - readValue (theReadData, aRow, aCol); - - theReadData.Driver().EndReadObjectData(); + readValue (anObjectData, aRow, aCol); } - -template -void StdLPersistent_HArray2::instance::readValue ( - StdObjMgt_ReadData& theReadData, - const Standard_Integer theRow, - const Standard_Integer theCol) -{ - typename ArrayClass::value_type aValue; - theReadData.ReadValue (aValue); - this->myArray->SetValue (theRow, theCol, aValue); -} - - -template class StdLPersistent_HArray2::instance; -template class StdLPersistent_HArray2::instance; diff --git a/src/StdLPersistent/StdLPersistent_HArray2.hxx b/src/StdLPersistent/StdLPersistent_HArray2.hxx index 045bcb55a9..c4941fce1e 100644 --- a/src/StdLPersistent/StdLPersistent_HArray2.hxx +++ b/src/StdLPersistent/StdLPersistent_HArray2.hxx @@ -16,14 +16,21 @@ #define _StdLPersistent_HArray2_HeaderFile #include +#include + +#include #include #include +DEFINE_HARRAY2 (StdLPersistent_HArray2OfPersistent, + NCollection_Array2) + + class StdLPersistent_HArray2 { - class commonBase : public StdObjMgt_Persistent + class base : public StdObjMgt_Persistent { public: //! Read persistent data from a file. @@ -42,7 +49,7 @@ class StdLPersistent_HArray2 protected: template - class base : public commonBase + class instance : public base { public: typedef Handle(ArrayClass) ArrayHandle; @@ -60,23 +67,19 @@ protected: theLowerCol, theUpperCol); } + virtual void readValue (StdObjMgt_ReadData& theReadData, + const Standard_Integer theRow, + const Standard_Integer theCol) + { theReadData >> myArray->ChangeValue (theRow, theCol); } + protected: Handle(ArrayClass) myArray; }; -private: - template - class instance : public base - { - protected: - Standard_EXPORT virtual void readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theRow, - const Standard_Integer theCol); - }; - public: - typedef instance Integer; - typedef instance Real; + typedef instance Integer; + typedef instance Real; + typedef instance Persistent; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_HString.cxx b/src/StdLPersistent/StdLPersistent_HString.cxx index 04000c45c7..98e5d8307f 100644 --- a/src/StdLPersistent/StdLPersistent_HString.cxx +++ b/src/StdLPersistent/StdLPersistent_HString.cxx @@ -25,20 +25,18 @@ template void StdLPersistent_HString::instance::Read (StdObjMgt_ReadData& theReadData) { - theReadData.Driver().BeginReadObjectData(); + StdObjMgt_ReadData::Object anObjectData (theReadData); Standard_Integer aSize; - theReadData.ReadValue (aSize); + anObjectData >> aSize; myValue = new StringClass (aSize, 0); for (Standard_Integer i = 1; i <= aSize; i++) { CharType aChar; - theReadData.ReadValue (aChar); + anObjectData >> aChar; myValue->SetValue (i, aChar); } - - theReadData.Driver().EndReadObjectData(); } //======================================================================= diff --git a/src/StdLPersistent/StdLPersistent_NamedData.cxx b/src/StdLPersistent/StdLPersistent_NamedData.cxx index 01a68d19fe..cbb0e32c98 100644 --- a/src/StdLPersistent/StdLPersistent_NamedData.cxx +++ b/src/StdLPersistent/StdLPersistent_NamedData.cxx @@ -13,8 +13,6 @@ #include -#include - #include #include #include @@ -23,6 +21,24 @@ #include +static const TCollection_ExtendedString& + String (Handle(StdObjMgt_Persistent) theValue) +{ + if (theValue) + return theValue->ExtString()->String(); + + static TCollection_ExtendedString anEmptyString; + return anEmptyString; +} + +template +static typename HArray::ArrayHandle + Array (Handle(StdObjMgt_Persistent) theValue) +{ + Handle(HArray) anArray = Handle(HArray)::DownCast (theValue); + return anArray ? anArray->Array() : NULL; +} + //======================================================================= //function : Import //purpose : Import transient attribuite from the persistent data @@ -37,10 +53,8 @@ void StdLPersistent_NamedData::Import { TColStd_DataMapOfStringInteger aMap; for (Standard_Integer i = lower(0); i <= upper(0); i++) - { - Standard_Integer aValue = 0; - aMap.Bind (myInts.Get (i, aValue), aValue); - } + aMap.Bind (myInts.Key(i), myInts.Value(i)); + theAttribute->ChangeIntegers (aMap); } @@ -48,10 +62,8 @@ void StdLPersistent_NamedData::Import { TDataStd_DataMapOfStringReal aMap; for (Standard_Integer i = lower(1); i <= upper(1); i++) - { - Standard_Real aValue = 0.0; - aMap.Bind (myReals.Get (i, aValue), aValue); - } + aMap.Bind (myReals.Key(i), myReals.Value(i)); + theAttribute->ChangeReals (aMap); } @@ -59,12 +71,8 @@ void StdLPersistent_NamedData::Import { TDataStd_DataMapOfStringString aMap; for (Standard_Integer i = lower(2); i <= upper(2); i++) - { - Handle(StdObjMgt_Persistent) aValue; - aMap.Bind (myStrings.Get (i, aValue), - aValue ? aValue->ExtString()->String() - : TCollection_ExtendedString()); - } + aMap.Bind (myStrings.Key(i), String (myStrings.Value(i))); + theAttribute->ChangeStrings (aMap); } @@ -72,10 +80,8 @@ void StdLPersistent_NamedData::Import { TDataStd_DataMapOfStringByte aMap; for (Standard_Integer i = lower(3); i <= upper(3); i++) - { - Standard_Byte aValue = 0; - aMap.Bind (myBytes.Get (i, aValue), aValue); - } + aMap.Bind (myBytes.Key(i), myBytes.Value(i)); + theAttribute->ChangeBytes (aMap); } @@ -83,19 +89,9 @@ void StdLPersistent_NamedData::Import { TDataStd_DataMapOfStringHArray1OfInteger aMap; for (Standard_Integer i = lower(4); i <= upper(4); i++) - { - Handle(StdObjMgt_Persistent) aValue; - const TCollection_ExtendedString& aKey = myIntArrays.Get (i, aValue); + aMap.Bind (myIntArrays.Key(i), + Array (myIntArrays.Value(i))); - Handle(StdLPersistent_HArray1::Integer) aPArray = - Handle(StdLPersistent_HArray1::Integer)::DownCast (aValue); - - Handle(TColStd_HArray1OfInteger) aTArray; - if (aPArray) - aTArray = aPArray->Array(); - - aMap.Bind (aKey, aTArray); - } theAttribute->ChangeArraysOfIntegers (aMap); } @@ -103,19 +99,9 @@ void StdLPersistent_NamedData::Import { TDataStd_DataMapOfStringHArray1OfReal aMap; for (Standard_Integer i = lower(5); i <= upper(5); i++) - { - Handle(StdObjMgt_Persistent) aValue; - const TCollection_ExtendedString& aKey = myRealArrays.Get (i, aValue); + aMap.Bind (myRealArrays.Key(i), + Array (myRealArrays.Value(i))); - Handle(StdLPersistent_HArray1::Real) aPArray = - Handle(StdLPersistent_HArray1::Real)::DownCast (aValue); - - Handle(TColStd_HArray1OfReal) aTArray; - if (aPArray) - aTArray = aPArray->Array(); - - aMap.Bind (aKey, aTArray); - } theAttribute->ChangeArraysOfReals (aMap); } } diff --git a/src/StdLPersistent/StdLPersistent_NamedData.hxx b/src/StdLPersistent/StdLPersistent_NamedData.hxx index 56d40e2bbc..27c79ce959 100644 --- a/src/StdLPersistent/StdLPersistent_NamedData.hxx +++ b/src/StdLPersistent/StdLPersistent_NamedData.hxx @@ -25,35 +25,39 @@ class StdLPersistent_NamedData : public StdObjMgt_Attribute { template - class element + class pMapData { public: + typedef typename HValuesArray::ValueType ValueType; + inline void Read (StdObjMgt_ReadData& theReadData) { theReadData >> myKeys >> myValues; } inline operator bool() const - { return ! myKeys.IsNull(); } + { return !myKeys.IsNull(); } - template - inline const TCollection_ExtendedString& Get - (Standard_Integer theIndex, Value& theValue) const - { - if (myValues) - theValue = myValues->Array()->Value(theIndex); - return myKeys->Array()->Value(theIndex)->ExtString()->String(); - } + const TCollection_ExtendedString& Key (Standard_Integer theIndex) const + { return myKeys->Array()->Value(theIndex)->ExtString()->String(); } + + ValueType Value (Standard_Integer theIndex) const + { return myValues ? myValues->Array()->Value(theIndex) : 0; } private: - Reference myKeys; - Reference myValues; + Handle(StdLPersistent_HArray1::Persistent) myKeys; + Handle(HValuesArray) myValues; }; public: //! Read persistent data from a file. inline void Read (StdObjMgt_ReadData& theReadData) { - theReadData >> myDimensions >> - myInts >> myReals >> myStrings >> myBytes >> myIntArrays >> myRealArrays; + theReadData >> myDimensions; + myInts .Read (theReadData); + myReals .Read (theReadData); + myStrings .Read (theReadData); + myBytes .Read (theReadData); + myIntArrays .Read (theReadData); + myRealArrays.Read (theReadData); } //! Import transient attribuite from the persistent data. @@ -64,13 +68,13 @@ private: inline Standard_Integer upper (Standard_Integer theIndex) const; private: - Reference myDimensions; - Object > myInts; - Object > myReals; - Object > myStrings; - Object > myBytes; - Object > myIntArrays; - Object > myRealArrays; + Handle(StdLPersistent_HArray2::Integer) myDimensions; + pMapData myInts; + pMapData myReals; + pMapData myStrings; + pMapData myBytes; + pMapData myIntArrays; + pMapData myRealArrays; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_Real.hxx b/src/StdLPersistent/StdLPersistent_Real.hxx index 5cac248878..18be36ff7c 100644 --- a/src/StdLPersistent/StdLPersistent_Real.hxx +++ b/src/StdLPersistent/StdLPersistent_Real.hxx @@ -18,7 +18,6 @@ #include #include -#include class StdLPersistent_Real : public StdObjMgt_Attribute @@ -31,13 +30,13 @@ public: //! Import transient attribuite from the persistent data. void Import (const Handle(TDataStd_Real)& theAttribute) const { - theAttribute->Set (myValue); - theAttribute->SetDimension (myDimension); + theAttribute->Set (myValue); + theAttribute->SetDimension (static_cast (myDimension)); } private: - Value myValue; - Enum myDimension; + Standard_Real myValue; + Standard_Integer myDimension; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_TreeNode.hxx b/src/StdLPersistent/StdLPersistent_TreeNode.hxx index cc4ee2a00a..6fb7e67c50 100644 --- a/src/StdLPersistent/StdLPersistent_TreeNode.hxx +++ b/src/StdLPersistent/StdLPersistent_TreeNode.hxx @@ -16,9 +16,9 @@ #define _StdLPersistent_TreeNode_HeaderFile #include -#include #include +#include class StdLPersistent_TreeNode @@ -37,12 +37,12 @@ public: private: struct dynamic : public Standard_Transient { - Reference First; - Object TreeID; + Handle(StdLPersistent_TreeNode) First; + Standard_GUID TreeID; }; Handle(dynamic) myDynamicData; - Reference myNext; + Handle(StdLPersistent_TreeNode) myNext; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_Value.cxx b/src/StdLPersistent/StdLPersistent_Value.cxx index 130ec7a691..98dde817ce 100644 --- a/src/StdLPersistent/StdLPersistent_Value.cxx +++ b/src/StdLPersistent/StdLPersistent_Value.cxx @@ -34,8 +34,9 @@ void StdLPersistent_Value::integer::ImportAttribute() template void StdLPersistent_Value::string::ImportAttribute() { - Handle(HStringClass) anHString; - if (this->myData.Cast (anHString)) + Handle(HStringClass) anHString = + Handle(HStringClass)::DownCast (this->myData); + if (anHString) { this->myTransient->Set (anHString->Value()->String()); this->myData.Nullify(); @@ -83,7 +84,7 @@ Handle(TDF_Attribute) StdLPersistent_Value::UAttribute::CreateAttribute() } return this->myTransient; - } +} template class StdLPersistent_Value::integer ; diff --git a/src/StdLPersistent/StdLPersistent_Variable.hxx b/src/StdLPersistent/StdLPersistent_Variable.hxx index 2d78212aea..8b9f21cf41 100644 --- a/src/StdLPersistent/StdLPersistent_Variable.hxx +++ b/src/StdLPersistent/StdLPersistent_Variable.hxx @@ -37,8 +37,8 @@ public: } private: - Value myIsConstant; - Reference myUnit; + Standard_Boolean myIsConstant; + Handle(StdLPersistent_HString::Ascii) myUnit; }; #endif diff --git a/src/StdLPersistent/StdLPersistent_XLink.hxx b/src/StdLPersistent/StdLPersistent_XLink.hxx index 940f6c372c..b370f15b4c 100644 --- a/src/StdLPersistent/StdLPersistent_XLink.hxx +++ b/src/StdLPersistent/StdLPersistent_XLink.hxx @@ -39,8 +39,8 @@ public: } private: - Reference myDocEntry; - Reference myLabEntry; + Handle(StdLPersistent_HString::Ascii) myDocEntry; + Handle(StdLPersistent_HString::Ascii) myLabEntry; }; #endif diff --git a/src/StdObjMgt/FILES b/src/StdObjMgt/FILES index c07fc4bd43..6ca1b5ff7b 100644 --- a/src/StdObjMgt/FILES +++ b/src/StdObjMgt/FILES @@ -1,5 +1,4 @@ StdObjMgt_Attribute.hxx -StdObjMgt_ContentTypes.hxx StdObjMgt_MapOfInstantiators.cxx StdObjMgt_MapOfInstantiators.hxx StdObjMgt_Persistent.cxx diff --git a/src/StdObjMgt/StdObjMgt_Attribute.hxx b/src/StdObjMgt/StdObjMgt_Attribute.hxx index 897606d343..4d891e8722 100644 --- a/src/StdObjMgt/StdObjMgt_Attribute.hxx +++ b/src/StdObjMgt/StdObjMgt_Attribute.hxx @@ -20,8 +20,7 @@ //! Root class for a temporary persistent object corresponding to an attribute. template -class StdObjMgt_Attribute : public Standard_Transient, - protected StdObjMgt_ContentTypes +class StdObjMgt_Attribute : public Standard_Transient { class base : public StdObjMgt_Persistent { @@ -53,8 +52,8 @@ public: DataType myData; }; - struct SingleInt : Simple > {}; - struct SingleRef : Simple > {}; + struct SingleInt : Simple {}; + struct SingleRef : Simple {}; private: template diff --git a/src/StdObjMgt/StdObjMgt_ContentTypes.hxx b/src/StdObjMgt/StdObjMgt_ContentTypes.hxx deleted file mode 100644 index 5455fe08fc..0000000000 --- a/src/StdObjMgt/StdObjMgt_ContentTypes.hxx +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#ifndef _StdObjMgt_ContentTypes_HeaderFile -#define _StdObjMgt_ContentTypes_HeaderFile - - -#include - -class StdObjMgt_Persistent; - - -//! Root class for an object containing other obects. -class StdObjMgt_ContentTypes -{ - template - class holder - { - public: - //! Return the value. - operator Type() const { return myValue; } - - protected: - Type myValue; - }; - - template - struct enum_ : holder - { - //! Read the value from a file. - void Read (StdObjMgt_ReadData& theReadData) - { theReadData.ReadEnum (this->myValue); } - }; - - template - struct value : holder - { - //! Read the value from a file. - void Read (StdObjMgt_ReadData& theReadData) - { theReadData.ReadValue (this->myValue); } - }; - - template - struct object : Class - { - //! Read object data from a file. - void Read (StdObjMgt_ReadData& theReadData) - { theReadData.ReadObject ((Class&)*this); } - }; - - template - struct referenceT : Handle(Persistent) - { - //! Read object data from a file. - void Read (StdObjMgt_ReadData& theReadData) - { theReadData.ReadReference (*this); } - }; - - struct reference : Handle(StdObjMgt_Persistent) - { - //! Read object data from a file. - void Read (StdObjMgt_ReadData& theReadData) - { Handle(StdObjMgt_Persistent)::operator= (theReadData.ReadReference()); } - - //! Cast the reference to a target type. - template - bool Cast (Handle(Persistent)& theTarget) const - { - theTarget = Handle(Persistent)::DownCast(*this); - return ! theTarget.IsNull(); - } - }; - -public: - template - struct Enum : StdObjMgt_ReadData::Content > {}; - - template - struct Value : StdObjMgt_ReadData::Content > {}; - - template - struct Object : StdObjMgt_ReadData::Content > {}; - - template - struct Reference : StdObjMgt_ReadData::Content > {}; -}; - -template<> -struct StdObjMgt_ContentTypes::Reference - : StdObjMgt_ReadData::Content {}; - -#endif // _StdObjMgt_ContentTypes_HeaderFile diff --git a/src/StdObjMgt/StdObjMgt_Persistent.hxx b/src/StdObjMgt/StdObjMgt_Persistent.hxx index 5c7f68f3d8..c95754ea07 100644 --- a/src/StdObjMgt/StdObjMgt_Persistent.hxx +++ b/src/StdObjMgt/StdObjMgt_Persistent.hxx @@ -18,7 +18,6 @@ #include #include #include -#include #include @@ -32,8 +31,7 @@ class TCollection_HExtendedString; //! Root class for a temporary persistent object that reads data from a file //! and then creates transient object using the data. -class StdObjMgt_Persistent : public Standard_Transient, - protected StdObjMgt_ContentTypes +class StdObjMgt_Persistent : public Standard_Transient { public: //! Derived class instance create function. diff --git a/src/StdObjMgt/StdObjMgt_ReadData.cxx b/src/StdObjMgt/StdObjMgt_ReadData.cxx index 99472cbdbc..9bb92145b1 100644 --- a/src/StdObjMgt/StdObjMgt_ReadData.cxx +++ b/src/StdObjMgt/StdObjMgt_ReadData.cxx @@ -14,6 +14,8 @@ #include #include +#include + StdObjMgt_ReadData::StdObjMgt_ReadData (Storage_BaseDriver& theDriver, const Standard_Integer theNumberOfObjects) @@ -39,3 +41,23 @@ Handle(StdObjMgt_Persistent) StdObjMgt_ReadData::ReadReference() myDriver->GetReference (aRef); return aRef ? PersistentObject (aRef) : NULL; } + +//======================================================================= +//function : operator >> +//purpose : Read persistent data from a file +//======================================================================= +StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, Standard_GUID& theGUID) +{ + Standard_Integer a32b; + Standard_ExtCharacter a16b[3]; + Standard_Character a8b [6]; + + theReadData >> a32b >> a16b[0] >> a16b[1] >> a16b[2]; + theReadData >> a8b[0] >> a8b[1] >> a8b[2] >> a8b[3] >> a8b[4] >> a8b[5]; + + theGUID = Standard_GUID (a32b, a16b[0], a16b[1], a16b[2], + a8b[0], a8b[1], a8b[2], a8b[3], a8b[4], a8b[5]); + + return theReadData; +} diff --git a/src/StdObjMgt/StdObjMgt_ReadData.hxx b/src/StdObjMgt/StdObjMgt_ReadData.hxx index b952ba06a0..3063f802ae 100644 --- a/src/StdObjMgt/StdObjMgt_ReadData.hxx +++ b/src/StdObjMgt/StdObjMgt_ReadData.hxx @@ -19,17 +19,18 @@ #include class StdObjMgt_Persistent; +class Standard_GUID; + //! Auxiliary data used to read persistent objects from a file. class StdObjMgt_ReadData { public: + class Object; + Standard_EXPORT StdObjMgt_ReadData (Storage_BaseDriver& theDriver, const Standard_Integer theNumberOfObjects); - Storage_BaseDriver& Driver() const - { return *myDriver; } - template void CreatePersistentObject (const Standard_Integer theRef, Instantiator theInstantiator) @@ -45,45 +46,69 @@ public: Standard_EXPORT Handle(StdObjMgt_Persistent) ReadReference(); template - void ReadReference (Handle(Persistent)& theTarget) + StdObjMgt_ReadData& operator >> (Handle(Persistent)& theTarget) { theTarget = Handle(Persistent)::DownCast (ReadReference()); - } - - template - void ReadObject (Object& theObject) - { - myDriver->BeginReadObjectData(); - theObject.Read (*this); - myDriver->EndReadObjectData(); - } - - template - void ReadValue (Type& theValue) - { - *myDriver >> theValue; - } - - template - void ReadEnum (Type& theEnum) - { - Standard_Integer aValue; - *myDriver >> aValue; - theEnum = static_cast (aValue); - } - - template struct Content : Base {}; - - template - StdObjMgt_ReadData& operator >> (Content& theContent) - { - theContent.Read (*this); return *this; } + StdObjMgt_ReadData& operator >> (Handle(StdObjMgt_Persistent)& theTarget) + { + theTarget = ReadReference(); + return *this; + } + + template + StdObjMgt_ReadData& ReadValue (Type& theValue) + { + *myDriver >> theValue; + return *this; + } + + StdObjMgt_ReadData& operator >> (Standard_Character& theValue) + { return ReadValue (theValue); } + + StdObjMgt_ReadData& operator >> (Standard_ExtCharacter& theValue) + { return ReadValue (theValue); } + + StdObjMgt_ReadData& operator >> (Standard_Integer& theValue) + { return ReadValue (theValue); } + + StdObjMgt_ReadData& operator >> (Standard_Boolean& theValue) + { return ReadValue (theValue); } + + StdObjMgt_ReadData& operator >> (Standard_Real& theValue) + { return ReadValue (theValue); } + + StdObjMgt_ReadData& operator >> (Standard_ShortReal& theValue) + { return ReadValue (theValue); } + private: Storage_BaseDriver* myDriver; NCollection_Array1 myPersistentObjects; }; +class StdObjMgt_ReadData::Object +{ +public: + Object (StdObjMgt_ReadData& theData) : myReadData (&theData) + { myReadData->myDriver->BeginReadObjectData(); } + + ~Object() + { myReadData->myDriver->EndReadObjectData(); } + + operator StdObjMgt_ReadData&() + { return *myReadData; } + + template + StdObjMgt_ReadData& operator >> (Data& theData) + { return *myReadData >> theData; } + +private: + StdObjMgt_ReadData* myReadData; +}; + +Standard_EXPORT StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, Standard_GUID& theGUID); + #endif // _StdObjMgt_ReadData_HeaderFile diff --git a/src/StdObjMgt/StdObjMgt_SharedObject.hxx b/src/StdObjMgt/StdObjMgt_SharedObject.hxx index d2b8998387..def5f6e1fc 100644 --- a/src/StdObjMgt/StdObjMgt_SharedObject.hxx +++ b/src/StdObjMgt/StdObjMgt_SharedObject.hxx @@ -21,11 +21,8 @@ class StdObjMgt_SharedObject { public: - class PersistentBase : public Standard_Transient, - protected StdObjMgt_ContentTypes {}; - template - class AbstractPersistentBase : public PersistentBase + class AbstractPersistentBase : public Standard_Transient { public: virtual Handle(Transient) Import() const = 0; diff --git a/src/StdObject/FILES b/src/StdObject/FILES index 3fe5d9780c..c68a35776e 100644 --- a/src/StdObject/FILES +++ b/src/StdObject/FILES @@ -1,4 +1,8 @@ -StdObject_gp.hxx +StdObject_gp_Axes.hxx +StdObject_gp_Curves.hxx +StdObject_gp_Surfaces.hxx +StdObject_gp_Trsfs.hxx +StdObject_gp_Vectors.hxx StdObject_Location.cxx StdObject_Location.hxx StdObject_Shape.cxx diff --git a/src/StdObject/StdObject_Location.cxx b/src/StdObject/StdObject_Location.cxx index 3515b5b9db..a905d62c01 100644 --- a/src/StdObject/StdObject_Location.cxx +++ b/src/StdObject/StdObject_Location.cxx @@ -21,9 +21,7 @@ //======================================================================= TopLoc_Location StdObject_Location::Import() const { - Handle(StdPersistent_TopLoc::ItemLocation) anItemLocation; - if (myData.Cast (anItemLocation)) - return anItemLocation->Import(); - else - return TopLoc_Location(); + Handle(StdPersistent_TopLoc::ItemLocation) anItemLocation = + Handle(StdPersistent_TopLoc::ItemLocation)::DownCast (myData); + return anItemLocation ? anItemLocation->Import() : TopLoc_Location(); } diff --git a/src/StdObject/StdObject_Location.hxx b/src/StdObject/StdObject_Location.hxx index 9bfa7aa0af..b082b1ea47 100644 --- a/src/StdObject/StdObject_Location.hxx +++ b/src/StdObject/StdObject_Location.hxx @@ -15,23 +15,29 @@ #ifndef _StdObject_Location_HeaderFile #define _StdObject_Location_HeaderFile -#include +#include #include -class StdObject_Location : private StdObjMgt_ContentTypes +class StdObject_Location { public: - //! Read persistent data from a file. - inline void Read (StdObjMgt_ReadData& theReadData) - { theReadData >> myData; } - //! Import transient object from the persistent data. TopLoc_Location Import() const; private: - Reference<> myData; + Handle(StdObjMgt_Persistent) myData; + + friend StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object, StdObject_Location&); }; +//! Read persistent data from a file. +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, StdObject_Location& theLocation) +{ + return theReadData >> theLocation.myData; +} + #endif diff --git a/src/StdObject/StdObject_Shape.cxx b/src/StdObject/StdObject_Shape.cxx index e8c85f94fa..dad07afbc5 100644 --- a/src/StdObject/StdObject_Shape.cxx +++ b/src/StdObject/StdObject_Shape.cxx @@ -27,7 +27,7 @@ TopoDS_Shape StdObject_Shape::Import() const aShape.TShape (myTShape->Import()); aShape.Location (myLocation.Import()); - aShape.Orientation (myOrient); + aShape.Orientation (static_cast (myOrient)); return aShape; } diff --git a/src/StdObject/StdObject_Shape.hxx b/src/StdObject/StdObject_Shape.hxx index 2a57fd7b9b..a4908f41c6 100644 --- a/src/StdObject/StdObject_Shape.hxx +++ b/src/StdObject/StdObject_Shape.hxx @@ -15,28 +15,39 @@ #ifndef _StdObject_Shape_HeaderFile #define _StdObject_Shape_HeaderFile -#include +#include #include #include -#include #include -class StdObject_Shape : private StdObjMgt_ContentTypes +class StdObject_Shape { public: - //! Read persistent data from a file. - inline void Read (StdObjMgt_ReadData& theReadData) - { theReadData >> myTShape >> myLocation >> myOrient; } - //! Import transient object from the persistent data. Standard_EXPORT TopoDS_Shape Import() const; +protected: + //! Read persistent data from a file. + inline void read (StdObjMgt_ReadData& theReadData) + { theReadData >> myTShape >> myLocation >> myOrient; } + private: - Reference myTShape; - Object myLocation; - Enum myOrient; + Handle(StdPersistent_TopoDS::TShape) myTShape; + StdObject_Location myLocation; + Standard_Integer myOrient; + + friend StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object, StdObject_Shape&); }; +//! Read persistent data from a file. +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, StdObject_Shape& theShape) +{ + theShape.read (theReadData); + return theReadData; +} + #endif diff --git a/src/StdObject/StdObject_gp.hxx b/src/StdObject/StdObject_gp.hxx deleted file mode 100644 index 2d5c272742..0000000000 --- a/src/StdObject/StdObject_gp.hxx +++ /dev/null @@ -1,414 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - - -#ifndef _StdObject_gp_HeaderFile -#define _StdObject_gp_HeaderFile - -#include - -class StdObject_gp : private StdObjMgt_ContentTypes -{ - template - struct object : Data - { Standard_EXPORT void Read (StdObjMgt_ReadData& theReadData); }; - -public: - template - struct Object : StdObjMgt_ContentTypes::Object > {}; - - template - static Object& Ref (Data& theData) - { return static_cast&> (theData); } -}; - -// read vectors - -#include -#include -#include -#include -#include -#include - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_XY& theXY) -{ - Standard_Real aX, aY; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theXY.SetCoord(aX, aY); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Pnt2d& thePnt) -{ - Standard_Real aX, aY; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - thePnt.SetCoord(aX, aY); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Vec2d& theVec) -{ - Standard_Real aX, aY; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theVec.SetCoord(aX, aY); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Dir2d& theDir) -{ - Standard_Real aX, aY; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theDir.SetCoord(aX, aY); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_XYZ& theXYZ) -{ - Standard_Real aX, aY, aZ; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theReadData.ReadValue(aZ); - theXYZ.SetCoord(aX, aY, aZ); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Pnt& thePnt) -{ - Standard_Real aX, aY, aZ; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theReadData.ReadValue(aZ); - thePnt.SetCoord(aX, aY, aZ); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Vec& theVec) -{ - Standard_Real aX, aY, aZ; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theReadData.ReadValue(aZ); - theVec.SetCoord(aX, aY, aZ); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Dir& theDir) -{ - Standard_Real aX, aY, aZ; - theReadData.ReadValue(aX); - theReadData.ReadValue(aY); - theReadData.ReadValue(aZ); - theDir.SetCoord(aX, aY, aZ); - return theReadData; -} - -// read axis placements - -#include -#include -#include -#include -#include - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Ax2d& theAx) -{ - gp_Pnt2d aLoc; - gp_Dir2d aDir; - theReadData >> aLoc >> aDir; - theAx = gp_Ax2d (aLoc, aDir); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Ax22d& theAx) -{ - gp_Pnt2d aLoc; - gp_Dir2d aYDir, aXDir; - theReadData >> aLoc >> aYDir >> aXDir; - theAx = gp_Ax22d (aLoc, aXDir, aYDir); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Ax1& theAx) -{ - gp_XYZ aLoc; - gp_Dir aDir; - theReadData >> aLoc >> aDir; - theAx = gp_Ax1 (aLoc, aDir); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Ax2& theAx) -{ - gp_Ax1 anAx; - gp_Dir aYDir, aXDir; - theReadData >> anAx >> aYDir >> aXDir; - theAx = gp_Ax2 (anAx.Location(), anAx.Direction(), aXDir); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Ax3& theAx) -{ - gp_Ax1 anAx; - gp_Dir aYDir, aXDir; - theReadData >> anAx >> aYDir >> aXDir; - theAx = gp_Ax3 (anAx.Location(), anAx.Direction(), aXDir); - if (aYDir * theAx.YDirection() < 0.) - theAx.YReverse(); - return theReadData; -} - -// read curves - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Lin2d& theLin) -{ - gp_Ax2d anAx; - theReadData >> anAx; - theLin.SetPosition(anAx); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Circ2d& theCirc) -{ - gp_Ax22d anAx; - Standard_Real aRadius; - theReadData >> anAx; - theReadData.ReadValue(aRadius); - theCirc.SetAxis(anAx); - theCirc.SetRadius (aRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Elips2d& theElips) -{ - gp_Ax22d anAx; - Standard_Real aMajorRadius, aMinorRadius; - theReadData >> anAx; - theReadData.ReadValue(aMajorRadius); - theReadData.ReadValue(aMinorRadius); - theElips.SetAxis(anAx); - theElips.SetMajorRadius(aMajorRadius); - theElips.SetMinorRadius(aMinorRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Hypr2d& theHypr) -{ - gp_Ax22d anAx; - Standard_Real aMajorRadius, aMinorRadius; - theReadData >> anAx; - theReadData.ReadValue(aMajorRadius); - theReadData.ReadValue(aMinorRadius); - theHypr.SetAxis(anAx); - theHypr.SetMajorRadius(aMajorRadius); - theHypr.SetMinorRadius(aMinorRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Parab2d& theParab) -{ - gp_Ax22d anAx; - Standard_Real aFocalLength; - theReadData >> anAx; - theReadData.ReadValue(aFocalLength); - theParab.SetAxis(anAx); - theParab.SetFocal(aFocalLength); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Lin& theLin) -{ - gp_Ax1 anAx; - theReadData >> anAx; - theLin.SetPosition(anAx); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Circ& theCirc) -{ - gp_Ax2 anAx; - Standard_Real aRadius; - theReadData >> anAx; - theReadData.ReadValue(aRadius); - theCirc.SetPosition(anAx); - theCirc.SetRadius (aRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Elips& theElips) -{ - gp_Ax2 anAx; - Standard_Real aMajorRadius, aMinorRadius; - theReadData >> anAx; - theReadData.ReadValue(aMajorRadius); - theReadData.ReadValue(aMinorRadius); - theElips.SetPosition(anAx); - theElips.SetMajorRadius(aMajorRadius); - theElips.SetMinorRadius(aMinorRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Hypr& theHypr) -{ - gp_Ax2 anAx; - Standard_Real aMajorRadius, aMinorRadius; - theReadData >> anAx; - theReadData.ReadValue(aMajorRadius); - theReadData.ReadValue(aMinorRadius); - theHypr.SetPosition(anAx); - theHypr.SetMajorRadius(aMajorRadius); - theHypr.SetMinorRadius(aMinorRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Parab& theParab) -{ - gp_Ax2 anAx; - Standard_Real aFocalLength; - theReadData >> anAx; - theReadData.ReadValue(aFocalLength); - theParab.SetPosition(anAx); - theParab.SetFocal(aFocalLength); - return theReadData; -} - -// read surfaces - -#include -#include -#include -#include - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Cone& theCone) -{ - gp_Ax3 anAx; - Standard_Real aRadius, aSemiAngle; - theReadData >> anAx; - theReadData.ReadValue(aRadius); - theReadData.ReadValue(aSemiAngle); - theCone.SetPosition(anAx); - theCone.SetRadius(aRadius); - theCone.SetSemiAngle(aSemiAngle); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Cylinder& theCyl) -{ - gp_Ax3 anAx; - Standard_Real aRadius; - theReadData >> anAx; - theReadData.ReadValue(aRadius); - theCyl.SetPosition(anAx); - theCyl.SetRadius(aRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Sphere& theSph) -{ - gp_Ax3 anAx; - Standard_Real aRadius; - theReadData >> anAx; - theReadData.ReadValue(aRadius); - theSph.SetPosition(anAx); - theSph.SetRadius(aRadius); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Torus& theTorus) -{ - gp_Ax3 anAx; - Standard_Real aMajorRadius, aMinorRadius; - theReadData >> anAx; - theReadData.ReadValue(aMajorRadius); - theReadData.ReadValue(aMinorRadius); - theTorus.SetPosition(anAx); - theTorus.SetMajorRadius(aMajorRadius); - theTorus.SetMinorRadius(aMinorRadius); - return theReadData; -} - -// read transformations - -#include -#include -#include -#include - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Mat2d& theMat) -{ - gp_XY aRow1, aRow2; - theReadData >> aRow1 >> aRow2; - theMat.SetRows(aRow1, aRow2); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Mat& theMat) -{ - gp_XYZ aRow1, aRow2, aRow3; - theReadData >> aRow1 >> aRow2 >> aRow3; - theMat.SetRows(aRow1, aRow2, aRow3); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Trsf2d& theTrsf) -{ - Standard_Real aScale; - gp_TrsfForm aForm; - gp_Mat2d aMat; - gp_XY aLoc; - theReadData.ReadValue(aScale); - theReadData.ReadEnum(aForm); - theReadData >> aMat >> aLoc; - theTrsf.SetValues(aScale * aMat(1, 1), aScale * aMat(1, 2), aLoc.X(), - aScale * aMat(2, 1), aScale * aMat(2, 2), aLoc.Y()); - return theReadData; -} - -inline StdObjMgt_ReadData& operator >> (StdObjMgt_ReadData& theReadData, gp_Trsf& theTrsf) -{ - Standard_Real aScale; - gp_TrsfForm aForm; - gp_Mat aMat; - gp_XYZ aLoc; - theReadData.ReadValue(aScale); - theReadData.ReadEnum(aForm); - theReadData >> aMat >> aLoc; - theTrsf.SetValues(aScale * aMat(1, 1), aScale * aMat(1, 2), aScale * aMat(1, 3), aLoc.X(), - aScale * aMat(2, 1), aScale * aMat(2, 2), aScale * aMat(2, 3), aLoc.Y(), - aScale * aMat(3, 1), aScale * aMat(3, 2), aScale * aMat(3, 3), aLoc.Z()); - return theReadData; -} - -template -inline void StdObject_gp::object::Read (StdObjMgt_ReadData& theReadData) -{ - theReadData >> (*this); -} - - -#endif diff --git a/src/StdObject/StdObject_gp_Axes.hxx b/src/StdObject/StdObject_gp_Axes.hxx new file mode 100644 index 0000000000..44de3aaf63 --- /dev/null +++ b/src/StdObject/StdObject_gp_Axes.hxx @@ -0,0 +1,81 @@ +// Copyright (c) 2015 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _StdObject_gp_Axes_HeaderFile +#define _StdObject_gp_Axes_HeaderFile + + +#include + +#include +#include +#include +#include +#include + + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Ax2d& theAx) +{ + gp_Pnt2d aLoc; + gp_Dir2d aDir; + theReadData >> aLoc >> aDir; + theAx = gp_Ax2d (aLoc, aDir); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Ax22d& theAx) +{ + gp_Pnt2d aLoc; + gp_Dir2d aYDir, aXDir; + theReadData >> aLoc >> aYDir >> aXDir; + theAx = gp_Ax22d (aLoc, aXDir, aYDir); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Ax1& theAx) +{ + gp_XYZ aLoc; + gp_Dir aDir; + theReadData >> aLoc >> aDir; + theAx = gp_Ax1 (aLoc, aDir); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Ax2& theAx) +{ + gp_Ax1 anAx; + gp_Dir aYDir, aXDir; + theReadData >> anAx >> aYDir >> aXDir; + theAx = gp_Ax2 (anAx.Location(), anAx.Direction(), aXDir); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Ax3& theAx) +{ + gp_Ax1 anAx; + gp_Dir aYDir, aXDir; + theReadData >> anAx >> aYDir >> aXDir; + theAx = gp_Ax3 (anAx.Location(), anAx.Direction(), aXDir); + if (aYDir * theAx.YDirection() < 0.) + theAx.YReverse(); + return theReadData; +} + + +#endif diff --git a/src/StdObject/StdObject_gp_Curves.hxx b/src/StdObject/StdObject_gp_Curves.hxx new file mode 100644 index 0000000000..aef2e1709a --- /dev/null +++ b/src/StdObject/StdObject_gp_Curves.hxx @@ -0,0 +1,168 @@ +// Copyright (c) 2015 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _StdObject_gp_Curves_HeaderFile +#define _StdObject_gp_Curves_HeaderFile + + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Lin2d& theLin) +{ + gp_Ax2d anAx; + theReadData >> anAx; + theLin.SetPosition (anAx); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Circ2d& theCirc) +{ + gp_Ax22d anAx; + Standard_Real aRadius; + + theReadData >> anAx >> aRadius; + + theCirc.SetAxis (anAx); + theCirc.SetRadius (aRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Elips2d& theElips) +{ + gp_Ax22d anAx; + Standard_Real aMajorRadius, aMinorRadius; + + theReadData >> anAx >> aMajorRadius >> aMinorRadius; + + theElips.SetAxis (anAx); + theElips.SetMajorRadius (aMajorRadius); + theElips.SetMinorRadius (aMinorRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Hypr2d& theHypr) +{ + gp_Ax22d anAx; + Standard_Real aMajorRadius, aMinorRadius; + + theReadData >> anAx >> aMajorRadius >> aMinorRadius; + + theHypr.SetAxis (anAx); + theHypr.SetMajorRadius (aMajorRadius); + theHypr.SetMinorRadius (aMinorRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Parab2d& theParab) +{ + gp_Ax22d anAx; + Standard_Real aFocalLength; + + theReadData >> anAx >> aFocalLength; + + theParab.SetAxis (anAx); + theParab.SetFocal (aFocalLength); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Lin& theLin) +{ + gp_Ax1 anAx; + theReadData >> anAx; + theLin.SetPosition (anAx); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Circ& theCirc) +{ + gp_Ax2 anAx; + Standard_Real aRadius; + + theReadData >> anAx >> aRadius; + + theCirc.SetPosition (anAx); + theCirc.SetRadius (aRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Elips& theElips) +{ + gp_Ax2 anAx; + Standard_Real aMajorRadius, aMinorRadius; + + theReadData >> anAx >> aMajorRadius >> aMinorRadius; + + theElips.SetPosition (anAx); + theElips.SetMajorRadius (aMajorRadius); + theElips.SetMinorRadius (aMinorRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Hypr& theHypr) +{ + gp_Ax2 anAx; + Standard_Real aMajorRadius, aMinorRadius; + + theReadData >> anAx >> aMajorRadius >> aMinorRadius; + + theHypr.SetPosition (anAx); + theHypr.SetMajorRadius (aMajorRadius); + theHypr.SetMinorRadius (aMinorRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Parab& theParab) +{ + gp_Ax2 anAx; + Standard_Real aFocalLength; + + theReadData >> anAx >> aFocalLength; + + theParab.SetPosition (anAx); + theParab.SetFocal (aFocalLength); + + return theReadData; +} + + +#endif diff --git a/src/StdObject/StdObject_gp_Surfaces.hxx b/src/StdObject/StdObject_gp_Surfaces.hxx new file mode 100644 index 0000000000..074a623041 --- /dev/null +++ b/src/StdObject/StdObject_gp_Surfaces.hxx @@ -0,0 +1,86 @@ +// Copyright (c) 2015 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _StdObject_gp_Surfaces_HeaderFile +#define _StdObject_gp_Surfaces_HeaderFile + + +#include + +#include +#include +#include +#include + + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Cone& theCone) +{ + gp_Ax3 anAx; + Standard_Real aRadius, aSemiAngle; + + theReadData >> anAx >> aRadius >> aSemiAngle; + + theCone.SetPosition (anAx); + theCone.SetRadius (aRadius); + theCone.SetSemiAngle (aSemiAngle); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Cylinder& theCyl) +{ + gp_Ax3 anAx; + Standard_Real aRadius; + + theReadData >> anAx >> aRadius; + + theCyl.SetPosition (anAx); + theCyl.SetRadius (aRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Sphere& theSph) +{ + gp_Ax3 anAx; + Standard_Real aRadius; + + theReadData >> anAx >> aRadius; + + theSph.SetPosition (anAx); + theSph.SetRadius (aRadius); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Torus& theTorus) +{ + gp_Ax3 anAx; + Standard_Real aMajorRadius, aMinorRadius; + + theReadData >> anAx >> aMajorRadius >> aMinorRadius; + + theTorus.SetPosition (anAx); + theTorus.SetMajorRadius (aMajorRadius); + theTorus.SetMinorRadius (aMinorRadius); + + return theReadData; +} + + +#endif diff --git a/src/StdObject/StdObject_gp_Trsfs.hxx b/src/StdObject/StdObject_gp_Trsfs.hxx new file mode 100644 index 0000000000..a8e06bdf90 --- /dev/null +++ b/src/StdObject/StdObject_gp_Trsfs.hxx @@ -0,0 +1,80 @@ +// Copyright (c) 2015 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _StdObject_gp_Trsfs_HeaderFile +#define _StdObject_gp_Trsfs_HeaderFile + + +#include + +#include +#include +#include +#include + + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Mat2d& theMat) +{ + gp_XY aRow1, aRow2; + theReadData >> aRow1 >> aRow2; + theMat.SetRows (aRow1, aRow2); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Mat& theMat) +{ + gp_XYZ aRow1, aRow2, aRow3; + theReadData >> aRow1 >> aRow2 >> aRow3; + theMat.SetRows (aRow1, aRow2, aRow3); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Trsf2d& theTrsf) +{ + Standard_Real aScale; + Standard_Integer aForm; + gp_Mat2d aMat; + gp_XY aLoc; + + theReadData >> aScale >> aForm >> aMat >> aLoc; + + theTrsf.SetValues (aScale * aMat(1, 1), aScale * aMat(1, 2), aLoc.X(), + aScale * aMat(2, 1), aScale * aMat(2, 2), aLoc.Y()); + + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Trsf& theTrsf) +{ + Standard_Real aScale; + Standard_Integer aForm; + gp_Mat aMat; + gp_XYZ aLoc; + + theReadData >> aScale >> aForm >> aMat >> aLoc; + + theTrsf.SetValues ( + aScale * aMat(1, 1), aScale * aMat(1, 2), aScale * aMat(1, 3), aLoc.X(), + aScale * aMat(2, 1), aScale * aMat(2, 2), aScale * aMat(2, 3), aLoc.Y(), + aScale * aMat(3, 1), aScale * aMat(3, 2), aScale * aMat(3, 3), aLoc.Z()); + + return theReadData; +} + + +#endif diff --git a/src/StdObject/StdObject_gp_Vectors.hxx b/src/StdObject/StdObject_gp_Vectors.hxx new file mode 100644 index 0000000000..3c7a743311 --- /dev/null +++ b/src/StdObject/StdObject_gp_Vectors.hxx @@ -0,0 +1,102 @@ +// Copyright (c) 2015 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + + +#ifndef _StdObject_gp_Vectors_HeaderFile +#define _StdObject_gp_Vectors_HeaderFile + + +#include + +#include +#include +#include +#include +#include +#include + + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_XY& theXY) +{ + Standard_Real aX, aY; + theReadData >> aX >> aY; + theXY.SetCoord (aX, aY); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Pnt2d& thePnt) +{ + Standard_Real aX, aY; + theReadData >> aX >> aY; + thePnt.SetCoord (aX, aY); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Vec2d& theVec) +{ + Standard_Real aX, aY; + theReadData >> aX >> aY; + theVec.SetCoord (aX, aY); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Dir2d& theDir) +{ + Standard_Real aX, aY; + theReadData >> aX >> aY; + theDir.SetCoord (aX, aY); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_XYZ& theXYZ) +{ + Standard_Real aX, aY, aZ; + theReadData >> aX >> aY >> aZ; + theXYZ.SetCoord (aX, aY, aZ); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Pnt& thePnt) +{ + Standard_Real aX, aY, aZ; + theReadData >> aX >> aY >> aZ; + thePnt.SetCoord (aX, aY, aZ); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Vec& theVec) +{ + Standard_Real aX, aY, aZ; + theReadData >> aX >> aY >> aZ; + theVec.SetCoord (aX, aY, aZ); + return theReadData; +} + +inline StdObjMgt_ReadData& operator >> + (StdObjMgt_ReadData::Object theReadData, gp_Dir& theDir) +{ + Standard_Real aX, aY, aZ; + theReadData >> aX >> aY >> aZ; + theDir.SetCoord (aX, aY, aZ); + return theReadData; +} + + +#endif diff --git a/src/StdPersistent/FILES b/src/StdPersistent/FILES index 5a716b7cc1..454fcaf6f2 100644 --- a/src/StdPersistent/FILES +++ b/src/StdPersistent/FILES @@ -6,8 +6,6 @@ StdPersistent_DataXtd_Constraint.cxx StdPersistent_DataXtd_Constraint.hxx StdPersistent_DataXtd_PatternStd.cxx StdPersistent_DataXtd_PatternStd.hxx -StdPersistent_HArray1OfShape1.hxx -StdPersistent_HArray1.cxx StdPersistent_HArray1.hxx StdPersistent_Naming.cxx StdPersistent_Naming.hxx diff --git a/src/StdPersistent/StdPersistent_DataXtd.cxx b/src/StdPersistent/StdPersistent_DataXtd.cxx index 40d5479bee..60ac1147e9 100644 --- a/src/StdPersistent/StdPersistent_DataXtd.cxx +++ b/src/StdPersistent/StdPersistent_DataXtd.cxx @@ -19,7 +19,7 @@ //purpose : Import transient attribuite from the persistent data //======================================================================= void StdPersistent_DataXtd::Geometry::ImportAttribute() - { myTransient->SetType (myData); } + { myTransient->SetType (static_cast (myData)); } //======================================================================= //function : ImportAttribute diff --git a/src/StdPersistent/StdPersistent_DataXtd.hxx b/src/StdPersistent/StdPersistent_DataXtd.hxx index 376d064f81..fd4943ebea 100644 --- a/src/StdPersistent/StdPersistent_DataXtd.hxx +++ b/src/StdPersistent/StdPersistent_DataXtd.hxx @@ -15,10 +15,9 @@ #ifndef _StdPersistent_DataXtd_HeaderFile #define _StdPersistent_DataXtd_HeaderFile -#include #include #include -#include +#include #include #include @@ -29,7 +28,7 @@ #include -class StdPersistent_DataXtd : private StdObjMgt_ContentTypes +class StdPersistent_DataXtd { class _void : private StdLPersistent_Void { @@ -45,16 +44,14 @@ public: typedef _void::Instance Plane; typedef _void::Instance Placement; - class Geometry : public StdObjMgt_Attribute:: - Simple > + class Geometry : public StdObjMgt_Attribute::SingleInt { public: //! Import transient attribuite from the persistent data. Standard_EXPORT virtual void ImportAttribute(); }; - class Position : public StdObjMgt_Attribute:: - Simple > + class Position : public StdObjMgt_Attribute::Simple { public: //! Import transient attribuite from the persistent data. diff --git a/src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx b/src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx index e5437edb50..d158aff54e 100644 --- a/src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx +++ b/src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx @@ -24,7 +24,7 @@ void StdPersistent_DataXtd_Constraint::Import (const Handle(TDataXtd_Constraint)& theAttribute) const { - theAttribute->SetType (myType); + theAttribute->SetType (static_cast (myType)); theAttribute->Reversed (myIsReversed); theAttribute->Inverted (myIsInverted); theAttribute->Verified (myIsVerified); diff --git a/src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx b/src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx index 8302ff35ab..b5e1cafd1d 100644 --- a/src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx +++ b/src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx @@ -19,7 +19,6 @@ #include #include -#include class StdPersistent_DataXtd_Constraint @@ -37,13 +36,13 @@ public: void Import (const Handle(TDataXtd_Constraint)& theAttribute) const; private: - Enum myType; - Reference myGeometries; - Reference<> myValue; - Value myIsReversed; - Value myIsInverted; - Value myIsVerified; - Reference<> myPlane; + Standard_Integer myType; + Handle(StdLPersistent_HArray1::Persistent) myGeometries; + Handle(StdObjMgt_Persistent) myValue; + Standard_Boolean myIsReversed; + Standard_Boolean myIsInverted; + Standard_Boolean myIsVerified; + Handle(StdObjMgt_Persistent) myPlane; }; #endif diff --git a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx b/src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx index 4a556f261e..75a36a167e 100644 --- a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx +++ b/src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx @@ -25,6 +25,10 @@ void StdPersistent_DataXtd_PatternStd::Import (const Handle(TDataXtd_PatternStd)& theAttribute) const { + theAttribute->Signature (mySignature); + theAttribute->Axis1Reversed (myAxis1Reversed); + theAttribute->Axis2Reversed (myAxis2Reversed); + if (mySignature < 5) { theAttribute->Axis1 ( diff --git a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx b/src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx index f0a8893374..08de38113f 100644 --- a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx +++ b/src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx @@ -35,16 +35,16 @@ public: void Import (const Handle(TDataXtd_PatternStd)& theAttribute) const; private: - Value mySignature; - Value myAxis1Reversed; - Value myAxis2Reversed; - Reference<> myAxis1; - Reference<> myAxis2; - Reference<> myValue1; - Reference<> myValue2; - Reference<> myNb1; - Reference<> myNb2; - Reference<> myMirror; + Standard_Integer mySignature; + Standard_Boolean myAxis1Reversed; + Standard_Boolean myAxis2Reversed; + Handle(StdObjMgt_Persistent) myAxis1; + Handle(StdObjMgt_Persistent) myAxis2; + Handle(StdObjMgt_Persistent) myValue1; + Handle(StdObjMgt_Persistent) myValue2; + Handle(StdObjMgt_Persistent) myNb1; + Handle(StdObjMgt_Persistent) myNb2; + Handle(StdObjMgt_Persistent) myMirror; }; #endif diff --git a/src/StdPersistent/StdPersistent_HArray1.cxx b/src/StdPersistent/StdPersistent_HArray1.cxx deleted file mode 100644 index 957c7c2150..0000000000 --- a/src/StdPersistent/StdPersistent_HArray1.cxx +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include -#include - - -void StdPersistent_HArray1::Shape1::readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theIndex) -{ - theReadData.ReadObject (myArray->ChangeValue (theIndex)); -} diff --git a/src/StdPersistent/StdPersistent_HArray1.hxx b/src/StdPersistent/StdPersistent_HArray1.hxx index cd0cf96a4c..6b52a17063 100644 --- a/src/StdPersistent/StdPersistent_HArray1.hxx +++ b/src/StdPersistent/StdPersistent_HArray1.hxx @@ -16,17 +16,19 @@ #define _StdPersistent_HArray1_HeaderFile #include -#include +#include + +#include + + +DEFINE_HARRAY1 (StdPersistent_HArray1OfShape1, + NCollection_Array1) class StdPersistent_HArray1 : private StdLPersistent_HArray1 { public: - class Shape1 : public StdLPersistent_HArray1::base - { - virtual void readValue (StdObjMgt_ReadData& theReadData, - const Standard_Integer theIndex); - }; + typedef instance Shape1; }; #endif diff --git a/src/StdPersistent/StdPersistent_HArray1OfShape1.hxx b/src/StdPersistent/StdPersistent_HArray1OfShape1.hxx deleted file mode 100644 index 31940e74f4..0000000000 --- a/src/StdPersistent/StdPersistent_HArray1OfShape1.hxx +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2015 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#ifndef _StdPersistent_HArray1OfShape1_HeaderFile -#define _StdPersistent_HArray1OfShape1_HeaderFile - - -#include -#include - -DEFINE_HARRAY1 (StdPersistent_HArray1OfShape1, NCollection_Array1) - -#endif // _StdPersistent_HArray1OfShape1_HeaderFile diff --git a/src/StdPersistent/StdPersistent_Naming.cxx b/src/StdPersistent/StdPersistent_Naming.cxx index d239a8309b..aaf009f2ba 100644 --- a/src/StdPersistent/StdPersistent_Naming.cxx +++ b/src/StdPersistent/StdPersistent_Naming.cxx @@ -68,8 +68,8 @@ void StdPersistent_Naming::Name::Read (StdObjMgt_ReadData& theReadData) void StdPersistent_Naming::Name::Import (TNaming_Name& theName, const Handle(TDF_Data)&) const { - theName.Type (myType); - theName.ShapeType (myShapeType); + theName.Type (static_cast (myType)); + theName.ShapeType (static_cast (myShapeType)); if (myArgs) { @@ -134,7 +134,7 @@ void StdPersistent_Naming::Name_2::Import (TNaming_Name& theName, const Handle(TDF_Data)& theDF) const { Name_1::Import (theName, theDF); - theName.Orientation (myOrientation); + theName.Orientation (static_cast (myOrientation)); } //======================================================================= @@ -143,8 +143,8 @@ void StdPersistent_Naming::Name_2::Import //======================================================================= void StdPersistent_Naming::Naming::ImportAttribute() { - Handle(Name) aName; - if (myData.Cast (aName)) + Handle(Name) aName = Handle(Name)::DownCast (myData); + if (aName) { aName->Import (myTransient->ChangeName(), myTransient->Label().Data()); myData.Nullify(); diff --git a/src/StdPersistent/StdPersistent_Naming.hxx b/src/StdPersistent/StdPersistent_Naming.hxx index 90c2cfe9a1..dbfa8d6e02 100644 --- a/src/StdPersistent/StdPersistent_Naming.hxx +++ b/src/StdPersistent/StdPersistent_Naming.hxx @@ -21,11 +21,6 @@ #include #include -#include -#include - -#include - #include #include @@ -46,10 +41,10 @@ public: void Import (const Handle(TNaming_NamedShape)& theAttribute) const; private: - Reference myOldShapes; - Reference myNewShapes; - Value myShapeStatus; - Value myVersion; + Handle(StdPersistent_HArray1::Shape1) myOldShapes; + Handle(StdPersistent_HArray1::Shape1) myNewShapes; + Standard_Integer myShapeStatus; + Standard_Integer myVersion; }; class Name : public StdObjMgt_Persistent @@ -63,11 +58,11 @@ public: (TNaming_Name& theName, const Handle(TDF_Data)& theDF) const; private: - Enum myType; - Enum myShapeType; - Reference myArgs; - Reference<> myStop; - Value myIndex; + Standard_Integer myType; + Standard_Integer myShapeType; + Handle(StdLPersistent_HArray1::Persistent) myArgs; + Handle(StdObjMgt_Persistent) myStop; + Standard_Integer myIndex; }; class Name_1 : public Name @@ -81,7 +76,7 @@ public: (TNaming_Name& theName, const Handle(TDF_Data)& theDF) const; private: - Reference myContextLabel; + Handle(StdLPersistent_HString::Ascii) myContextLabel; }; class Name_2 : public Name_1 @@ -95,7 +90,7 @@ public: (TNaming_Name& theName, const Handle(TDF_Data)& theDF) const; private: - Enum myOrientation; + Standard_Integer myOrientation; }; class Naming : public StdObjMgt_Attribute::SingleRef diff --git a/src/StdPersistent/StdPersistent_PPrsStd.hxx b/src/StdPersistent/StdPersistent_PPrsStd.hxx index b2887326f9..672f9ba077 100644 --- a/src/StdPersistent/StdPersistent_PPrsStd.hxx +++ b/src/StdPersistent/StdPersistent_PPrsStd.hxx @@ -37,12 +37,12 @@ public: void Import (const Handle(TDataXtd_Presentation)& theAttribute) const; private: - Value myIsDisplayed; - Reference<> myDriverGUID; - Value myTransparency; - Value myColor; - Value myMaterial; - Value myWidth; + Standard_Boolean myIsDisplayed; + Handle(StdObjMgt_Persistent) myDriverGUID; + Standard_Real myTransparency; + Standard_Integer myColor; + Standard_Integer myMaterial; + Standard_Real myWidth; }; class AISPresentation_1 : public AISPresentation @@ -59,7 +59,7 @@ public: void Import (const Handle(TDataXtd_Presentation)& theAttribute) const; private: - Value myMode; + Standard_Integer myMode; }; }; diff --git a/src/StdPersistent/StdPersistent_TopLoc.cxx b/src/StdPersistent/StdPersistent_TopLoc.cxx index 00ffcda8aa..3f26abc755 100644 --- a/src/StdPersistent/StdPersistent_TopLoc.cxx +++ b/src/StdPersistent/StdPersistent_TopLoc.cxx @@ -13,9 +13,7 @@ #include #include -#include - -#include +#include //======================================================================= @@ -24,7 +22,7 @@ //======================================================================= void StdPersistent_TopLoc::Datum3D::Read (StdObjMgt_ReadData& theReadData) { - StdObject_gp::Object aTrsf; + gp_Trsf aTrsf; theReadData >> aTrsf; myTransient = new TopLoc_Datum3D (aTrsf); } diff --git a/src/StdPersistent/StdPersistent_TopLoc.hxx b/src/StdPersistent/StdPersistent_TopLoc.hxx index 891921f5d1..96804d2869 100644 --- a/src/StdPersistent/StdPersistent_TopLoc.hxx +++ b/src/StdPersistent/StdPersistent_TopLoc.hxx @@ -43,9 +43,9 @@ public: Standard_EXPORT TopLoc_Location Import() const; private: - Reference myDatum; - Value myPower; - Object myNext; + Handle(Datum3D) myDatum; + Standard_Integer myPower; + StdObject_Location myNext; }; }; diff --git a/src/StdPersistent/StdPersistent_TopoDS.hxx b/src/StdPersistent/StdPersistent_TopoDS.hxx index 5fc3d80eaa..79bf9b962a 100644 --- a/src/StdPersistent/StdPersistent_TopoDS.hxx +++ b/src/StdPersistent/StdPersistent_TopoDS.hxx @@ -24,15 +24,15 @@ class StdPersistent_TopoDS : protected StdObjMgt_SharedObject { protected: - class pTShape : public PersistentBase + class pTShape : public Standard_Transient { public: inline void Read (StdObjMgt_ReadData& theReadData) { theReadData >> myShapes >> myFlags; } protected: - Reference<> myShapes; - Value myFlags; + Handle(StdObjMgt_Persistent) myShapes; + Standard_Integer myFlags; }; public: diff --git a/src/TKStdL/PACKAGES b/src/TKStdL/PACKAGES index 6d5a70e0fa..893f13689c 100644 --- a/src/TKStdL/PACKAGES +++ b/src/TKStdL/PACKAGES @@ -1,4 +1,3 @@ StdLDrivers -StdLObject StdLPersistent StdObjMgt diff --git a/tests/caf/bugs/D2 b/tests/caf/bugs/D2 new file mode 100644 index 0000000000..1d1fedb06e --- /dev/null +++ b/tests/caf/bugs/D2 @@ -0,0 +1,333 @@ +puts "===========" +puts "0027241: Create a complete test case to verify reading of all attribute types from MDTV-Standard document" +puts "===========" +puts "" + +# Set Create_Doc to 1 to generate the document (using OCCT 6.9.1 or earlier) +set Create_Doc 0 + +set test_file_name bug27241_ocaf_all_attributes.std + +set test_name "OCC26961" +set test_int 123 +set test_real 123.456e-7 +set test_int_arr {10 20} +set test_real_arr {1.1 3.14 5.4e18} +set test_extstr_arr {"sample string 1" "string 2"} +set test_bool_arr {0 1} +set test_ref_arr {"0:1:2:3:2" "0:1:2:3:1"} +set test_byte_arr {15 25} +set test_map {1 5 2 10} +set test_map_sorted {1 2 5 10} +set test_named_ints {i1 1 i2 2} +set test_named_reals {r1 1.1 r2 2.2} +set test_named_strings {s1 string1 s2 string2} +set test_named_bytes {b1 65 b2 66} +set test_ref "0:1:1" +set test_guid "00000000-0000-0000-2222-000000000000" +set test_comment "Sample document containing various attributes" +set test_string "Sample string" +set test_expr "2*pi*r" +set test_var1 "0:1:2:3:2" +set test_var2 "0:1:2:3:1" +set test_point "111 222 333" +set test_axisPos "10 10 30" +set test_axisDir "11 22 33" +set test_plane "15 25 35" +set test_boxXYZ "10 20 30" +set test_boxDX 100 +set test_boxDY 200 +set test_boxDZ 300 +set test_geom_t "cir" +set test_failure 1 +set test_driver "G" +set test_driver_id "2a96b604-ec8b-11d0-bee7-080009dc3333" +set test_transp 0.5 +set test_color 11 +set test_material 22 +set test_positionX 100 +set test_positionY 200 +set test_positionZ 300 + +proc checkarray {name array expected} { + set exp_len [llength $expected] + if {$exp_len != [llength $array]} {puts "Error: invalid $name"; return} + for {set i 0} {$i < $exp_len} {incr i} { + if {[lindex $array $i] != [lindex $expected $i]} {puts "Error: invalid $name"} + } +} + +pload TOPTEST + +catch {Close D} + +# Normal test execution +if !$Create_Doc { + + # Load document + Open [locate_data_file $test_file_name] D + + + # Simple values + if [catch {GetInteger D 0:1:1 i}] {puts "Error: Integer not found" + } elseif {[dval i] != $test_int} {puts "Error: invalid Integer"} + + if [catch {GetReal D 0:1:1 r}] {puts "Error: Real not found" + } elseif {[dval r] != $test_real} {puts "Error: invalid Real"} + + if [catch {set name [GetName D 0:1:1]}] {puts "Error: Name not found" + } elseif {$name != $test_name} {puts "Error: invalid Name"} + + if [catch {set comment [GetComment D 0:1:1]}] {puts "Error: Comment not found" + } elseif {$comment != $test_comment} {puts "Error: invalid Comment"} + + if [catch {set string [GetAsciiString D 0:1:1]}] {puts "Error: AsciiString not found"} + + + # TagSource + if [catch {NewTag D 0:1:2}] {puts "Error: TagSource not found"} + + + # Reference + if [catch {set ref [GetReference D 0:1:3]}] {puts "Error: Reference not found" + } elseif {[string compare $ref $test_ref] != 0} {puts "Error: invalid Reference"} + + + # Directory + if [catch {AddDirectory D 0:1:2:1}] {puts "Error: Directory not found"} + + + # UAttribute + if [catch {set guid [GetUAttribute D 0:1:2:2 $test_guid]}] {puts "Error: no label for UAttribute" + } elseif {$guid == "No UAttribute Attribute on label"} {puts "Error: $guid" + } elseif {$guid != $test_guid} {puts "Error: invalid UAttribute"} + + + # Variable + if [regexp "no such attribute" [GetVariable D $test_var2 is_const units]] {puts "Error: Variable not found" + } elseif {$is_const != 0 || $units != "mm"} {puts "Error: invalid Variable"} + + + # Relation + if [catch {set rel_dump [DumpRelation D 0:1:2:3]}] {puts "Error: Relation not found" + } elseif ![regexp "$test_expr.*$test_var1 $test_var2" $rel_dump] { + puts "Error: invalid Relation"} + + + # TreeNode + if [catch {set root_node [RootNode D 0:1:2:4]}] {puts "Error: TreeNode not found" + } elseif {$root_node != "0:1:2:4"} {puts "Error: invalid TreeNode"} + + + # Arrays + if [catch {set iarr [GetIntArray D 0:1:1]}] {puts "Error: IntegerArray not found" + } else { checkarray "IntegerArray" $iarr $test_int_arr } + + if [catch {set rarr [GetRealArray D 0:1:1]}] {puts "Error: RealArray not found" + } else { checkarray "RealArray" $rarr $test_real_arr } + + if [catch {set esarr [GetExtStringArray D 0:1:1]}] {puts "Error: ExtStringArray not found" + } else { checkarray "ExtStringArray" $esarr [join $test_extstr_arr " "]} + + if [catch {set boolarr [GetBooleanArray D 0:1:1]}] {puts "Error: BooleanArray not found" + } else { checkarray "BooleanArray" $boolarr $test_bool_arr } + + if [catch {set refarr [GetRefArray D 0:1:1]}] {puts "Error: ReferenceArray not found" + } else { checkarray "ReferenceArray" $refarr $test_ref_arr } + + if [catch {set bytearr [GetByteArray D 0:1:1]}] {puts "Error: ByteArray not found" + } else { checkarray "ByteArray" $bytearr $test_byte_arr } + + + # Lists + if [catch {set ilst [GetIntegerList D 0:1:1]}] {puts "Error: IntegerList not found" + } else { checkarray "IntegerList" $ilst $test_int_arr } + + if [catch {set rlst [GetRealList D 0:1:1]}] {puts "Error: RealList not found" + } else { checkarray "RealList" $rlst $test_real_arr } + + if [catch {set eslst [GetExtStringList D 0:1:1]}] {puts "Error: ExtStringList not found" + } else { checkarray "ExtStringList" $eslst [join $test_extstr_arr " "]} + + if [catch {set blst [GetBooleanList D 0:1:1]}] {puts "Error: BooleanList not found" + } else { checkarray "BooleanList" $blst $test_bool_arr } + + if [catch {set reflst [GetReferenceList D 0:1:1]}] {puts "Error: ReferenceList not found" + } else { checkarray "ReferenceList" $reflst $test_ref_arr } + + + # IntPackedMap + if [catch {set map [GetIntPackedMap D 0:1:1]}] {puts "Error: IntPackedMap not found" + } else { checkarray "IntPackedMap" $map $test_map_sorted } + + + # NamedData + if [catch {GetNDIntegers D 0:1:4}] {puts "Error: NamedData not found"} + if [catch {GetNDReals D 0:1:4}] {puts "Error: NamedData not found"} + if [catch {GetNDStrings D 0:1:4}] {puts "Error: NamedData not found"} + if [catch {GetNDBytes D 0:1:4}] {puts "Error: NamedData not found"} + if [catch {GetNDIntArrays D 0:1:4}] {puts "Error: NamedData not found"} + if [catch {GetNDRealArrays D 0:1:4}] {puts "Error: NamedData not found"} + + + # NamedShape + eval box Box $test_boxXYZ $test_boxDX $test_boxDY $test_boxDZ + if [catch {GetShape D 0:1:6 b}] {puts "Error: NamedShape not found" + } elseif {[bounding b] != [bounding Box]} {puts "Error: invalid NamedShape" + } else { + checkshape b + checkprops b -l [expr $test_boxDX * 8 + $test_boxDY * 8 + $test_boxDZ * 8] + checkprops b -s [expr $test_boxDX * $test_boxDY * 2 + $test_boxDY * $test_boxDZ * 2 + $test_boxDX * $test_boxDZ * 2] + checkprops b -v [expr $test_boxDX * $test_boxDY * $test_boxDZ] + } + + + # Point, Axis, Plane + if [catch {GetPoint D 0:1:5:1 pnt}] {puts "Error: Point not found"} + if [catch {GetAxis D 0:1:5:2 axs}] {puts "Error: Axis not found"} + if [catch {GetPlane D 0:1:5:3 pln}] {puts "Error: Plane not found"} + + + # Geometry + if [catch {set geom_t [GetGeometryType D 0:1:6]}] {puts "Error: Geometry not found" + } elseif {$geom_t != $test_geom_t} { puts "Error: invalid Geometry" } + + + # Constraint + if [catch {set constraint [GetConstraint D 0:1:1]}] {puts "Error: Constraint not found" + } elseif {$constraint != "0:1:1 COINCIDENT G_1 (0:1:6) "} { puts "Error: invalid Constraint" } + + + # PatternStd + if [catch {set pattern [DumpPattern D 0:1:1]}] {puts "Error: PatternStd not found" + } elseif {$pattern != "0:1:1 signature = 5 Mirror (0:1:6)"} { puts "Error: invalid PatternStd" } + + + # Function + if [catch {GetFunction D 0:1:1 fguid failure}] {puts "Error: Function not found" + } elseif {$fguid != $test_guid || $failure != $test_failure} { puts "Error: invalid Function" } + + + # AISPresentation + AISInitViewer D + if [catch {set driver [AISDriver D 0:1:1]}] {puts "Error: AISPresentation not found" + } elseif [catch {set transp [AISTransparency D 0:1:1]}] {puts "Error: AISPresentation not found" + } elseif [catch {set color [AISColor D 0:1:1]}] {puts "Error: AISPresentation not found" + } elseif [catch {set material [AISMaterial D 0:1:1]}] {puts "Error: AISPresentation not found" + } elseif {$driver != $test_driver_id} { puts "Error: invalid AISPresentation" + } elseif {[lindex [split $transp "\n"] 1] != $test_transp} { puts "Error: invalid AISPresentation" + } elseif {[lindex [split $color "\n"] 1] != $test_color} { puts "Error: invalid AISPresentation" + } elseif {[lindex [split $material "\n"] 1] != $test_material} { puts "Error: invalid AISPresentation" } + + + # Position + if [catch {GetPosition D 0:1:1 posX posY posZ}] {puts "Error: Position not found" + } elseif {$posX != $test_positionX} { puts "Error: invalid Position" + } elseif {$posY != $test_positionY} { puts "Error: invalid Position" + } elseif {$posZ != $test_positionZ} { puts "Error: invalid Position" } + +} else { + + # Creation of the document to be used in normal execution. + # Note! This will work only on OCCT versions older than 7.0, + # as since 7.0 there is no more storage driver for old persistence. + + puts "Creating document" + NewDocument D MDTV-Standard + + # Simple values + SetInteger D 0:1:1 $test_int + SetReal D 0:1:1 $test_real + SetName D 0:1:1 $test_name + SetComment D 0:1:1 $test_comment + SetAsciiString D 0:1:1 $test_string + + # TagSource + SetTagger D 0:1:2 + + # Reference + SetReference D 0:1:3 $test_ref + + # Directory + NewDirectory D 0:1:2:1 + + # UAttribute + SetUAttribute D 0:1:2:2 $test_guid + + # Variable + SetVariable D $test_var2 0 mm + SetVariable D $test_var1 1 "" + + # Relation + SetRelation D 0:1:2:3 "2*pi*r" $test_var1 $test_var2 + + # TreeNode + SetNode D 0:1:2:4 + + # Arrays + eval SetIntArray D 0:1:1 1 1 2 $test_int_arr + eval SetRealArray D 0:1:1 1 1 3 $test_real_arr + eval SetExtStringArray D 0:1:1 1 1 2 $test_extstr_arr + eval SetBooleanArray D 0:1:1 1 1 2 $test_bool_arr + eval SetRefArray D 0:1:1 1 2 $test_ref_arr + eval SetByteArray D 0:1:1 1 1 2 $test_byte_arr + + # Lists + eval SetIntegerList D 0:1:1 $test_int_arr + eval SetRealList D 0:1:1 $test_real_arr + eval SetExtStringList D 0:1:1 $test_extstr_arr + eval SetBooleanList D 0:1:1 $test_bool_arr + eval SetReferenceList D 0:1:1 $test_ref_arr + + # IntPackedMap + eval SetIntPackedMap D 0:1:1 1 $test_map + + # NamedData + eval SetNDataIntegers D 0:1:4 2 $test_named_ints + eval SetNDataReals D 0:1:4 2 $test_named_reals + eval SetNDataStrings D 0:1:4 2 $test_named_strings + eval SetNDataBytes D 0:1:4 2 $test_named_bytes + eval SetNDataIntArrays D 0:1:4 ia 2 $test_int_arr + eval SetNDataRealArrays D 0:1:4 ra 3 $test_real_arr + + # NamedShape + eval box Box $test_boxXYZ $test_boxDX $test_boxDY $test_boxDZ + SetShape D 0:1:6 Box + + # Point + eval point Point $test_point + SetPoint D 0:1:5:1 Point + + # Axis + eval line Axis $test_axisPos $test_axisDir + SetAxis D 0:1:5:2 Axis + + # Plane + eval plane Plane $test_plane + SetPlane D 0:1:5:3 Plane + + # Geometry + SetGeometry D 0:1:6 $test_geom_t + + # Constraint + SetConstraint D 0:1:1 equal 0:1:6 + + # PatternStd + SetPattern D 0:1:1 5 0:1:6 + + # Function + SetFunction D 0:1:1 $test_guid $test_failure + + # AISPresentation + AISInitViewer D + AISSet D 0:1:1 $test_driver + AISTransparency D 0:1:1 $test_transp + AISColor D 0:1:1 $test_color + AISMaterial D 0:1:1 $test_material + + # Position + SetPosition D 0:1:1 $test_positionX $test_positionY $test_positionZ + + SaveAs D $imagedir/ocaf_all_attributes.std + puts "Document saved to $imagedir/$test_file_name" +} diff --git a/tests/parse.rules b/tests/parse.rules index 29a3f8876a..452c6d184e 100644 --- a/tests/parse.rules +++ b/tests/parse.rules @@ -1,5 +1,6 @@ SKIPPED /Tcl Exception: .*[fF]ile .* could not be found/ data file is missing IGNORE /Tcl Exception: [*][*] Exception [*][*]/ duplicate report on exception on Tcl level +IGNORE /Relative error of mass computation :/ diagnostic message of *props* commands FAILED /\b[Ee]xception\b/ exception FAILED /\b[Ee][Rr][Rr][Oo][Rr]\b/ error -FAILED /Process killed by CPU limit/ Killed by CPU limit \ No newline at end of file +FAILED /Process killed by CPU limit/ Killed by CPU limit