mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
1. Bug fix in reading old persistent data using FSD_File storage driver 2. Persistence compatible with legacy format was restored for shapes a. Implemented a storage read / write wrapper for legacy persistence b. Added DRAW commands to read / write files in legacy format c. Added test cases for reading / writing operations with checking number of sub-shapes and physical properties d. Updated related sections of the development guide
160 lines
6.4 KiB
C++
160 lines
6.4 KiB
C++
// 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 _ShapePersistent_Geom2d_HeaderFile
|
|
#define _ShapePersistent_Geom2d_HeaderFile
|
|
|
|
#include <StdObjMgt_TransientPersistentMap.hxx>
|
|
#include <ShapePersistent_Geom.hxx>
|
|
|
|
#include <Geom2d_CartesianPoint.hxx>
|
|
#include <Geom2d_Direction.hxx>
|
|
#include <Geom2d_VectorWithMagnitude.hxx>
|
|
#include <Geom2d_AxisPlacement.hxx>
|
|
#include <Geom2d_Transformation.hxx>
|
|
#include <Geom2d_Curve.hxx>
|
|
|
|
class ShapePersistent_Geom2d : public ShapePersistent_Geom
|
|
{
|
|
typedef geometryBase<Geom2d_Geometry> basic;
|
|
|
|
public:
|
|
typedef ShapePersistent_Geom::Geometry Geometry;
|
|
|
|
typedef subBase_empty<basic> Point;
|
|
typedef instance<Point, Geom2d_CartesianPoint, gp_Pnt2d> CartesianPoint;
|
|
|
|
typedef subBase_gp<basic, gp_Vec2d> Vector;
|
|
typedef instance<Vector, Geom2d_Direction , gp_Dir2d> Direction;
|
|
typedef instance<Vector, Geom2d_VectorWithMagnitude, gp_Vec2d> VectorWithMagnitude;
|
|
|
|
typedef instance<basic, Geom2d_AxisPlacement, gp_Ax2d> AxisPlacement;
|
|
|
|
typedef instance <SharedBase<Geom2d_Transformation>,
|
|
Geom2d_Transformation,
|
|
gp_Trsf2d> Transformation;
|
|
|
|
typedef geometryBase<Geom2d_Curve> Curve;
|
|
|
|
public:
|
|
//! Create a persistent object for a curve
|
|
Standard_EXPORT static Handle(Curve) Translate (const Handle(Geom2d_Curve)& theCurve,
|
|
StdObjMgt_TransientPersistentMap& theMap);
|
|
};
|
|
|
|
//=======================================================================
|
|
// Geometry
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::geometryBase<Geom2d_Geometry>
|
|
::PName() const;
|
|
|
|
//=======================================================================
|
|
// Point
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::subBase_empty<
|
|
ShapePersistent_Geom2d::geometryBase<Geom2d_Geometry> >
|
|
::PName() const;
|
|
|
|
//=======================================================================
|
|
// CartesianPoint
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Point,
|
|
Geom2d_CartesianPoint,
|
|
gp_Pnt2d>
|
|
::PName() const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Point,
|
|
Geom2d_CartesianPoint,
|
|
gp_Pnt2d>
|
|
::Write(StdObjMgt_WriteData& theWriteData) const;
|
|
|
|
//=======================================================================
|
|
// Direction
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Direction,
|
|
Geom2d_Direction,
|
|
gp_Dir2d>
|
|
::PName() const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Direction,
|
|
Geom2d_Direction,
|
|
gp_Dir2d>
|
|
::Write(StdObjMgt_WriteData& theWriteData) const;
|
|
|
|
//=======================================================================
|
|
// VectorWithMagnitude
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::instance<ShapePersistent_Geom2d::VectorWithMagnitude,
|
|
Geom2d_VectorWithMagnitude,
|
|
gp_Vec2d>
|
|
::PName() const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::VectorWithMagnitude,
|
|
Geom2d_VectorWithMagnitude,
|
|
gp_Vec2d>
|
|
::Write(StdObjMgt_WriteData& theWriteData) const;
|
|
|
|
//=======================================================================
|
|
// AxisPlacement
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::instance<ShapePersistent_Geom2d::AxisPlacement,
|
|
Geom2d_AxisPlacement,
|
|
gp_Ax2d>
|
|
::PName() const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::AxisPlacement,
|
|
Geom2d_AxisPlacement,
|
|
gp_Ax2d>
|
|
::Write(StdObjMgt_WriteData& theWriteData) const;
|
|
|
|
//=======================================================================
|
|
// Transformation
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Transformation,
|
|
Geom2d_Transformation,
|
|
gp_Trsf2d>
|
|
::PName() const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Transformation,
|
|
Geom2d_Transformation,
|
|
gp_Trsf2d>
|
|
::PChildren(StdObjMgt_Persistent::SequenceOfPersistent& theChildren) const;
|
|
|
|
template<>
|
|
void ShapePersistent_Geom::instance<ShapePersistent_Geom2d::Transformation,
|
|
Geom2d_Transformation,
|
|
gp_Trsf2d>
|
|
::Write(StdObjMgt_WriteData& theWriteData) const;
|
|
|
|
//=======================================================================
|
|
// Curve
|
|
//=======================================================================
|
|
template<>
|
|
Standard_CString ShapePersistent_Geom2d::geometryBase<Geom2d_Curve>
|
|
::PName() const;
|
|
|
|
#endif
|