1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00
Files
occt/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx
dkulikov e4acd164ed For some STEP files we fail for geometric tolerances to read the "geometric_tolerance.magnitude"
StepDimTol_GeometricTolerance and related classes can now process both
StepBasic_MeasureWithUnit and StepRepr_ReprItemAndMeasureWithUnit.
Unit tests for changed methods are added.
2025-07-14 18:46:27 +01:00

192 lines
8.4 KiB
C++

// Created on: 2015-08-10
// Created by: Irina KRYLOVA
// 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 <Interface_Check.hxx>
#include <Interface_EntityIterator.hxx>
#include "RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx"
#include <StepBasic_MeasureWithUnit.hxx>
#include <StepData_StepReaderData.hxx>
#include <StepData_StepWriter.hxx>
#include <StepDimTol_GeometricToleranceWithDatumReference.hxx>
#include <StepDimTol_GeoTolAndGeoTolWthDatRef.hxx>
#include <StepDimTol_HArray1OfDatumSystemOrReference.hxx>
//=================================================================================================
RWStepDimTol_RWGeoTolAndGeoTolWthDatRef::RWStepDimTol_RWGeoTolAndGeoTolWthDatRef() {}
//=================================================================================================
void RWStepDimTol_RWGeoTolAndGeoTolWthDatRef::ReadStep(
const Handle(StepData_StepReaderData)& data,
const Standard_Integer num0,
Handle(Interface_Check)& ach,
const Handle(StepDimTol_GeoTolAndGeoTolWthDatRef)& ent) const
{
Standard_Integer num = 0; // num0;
data->NamedForComplex("GEOMETRIC_TOLERANCE", "GMTTLR", num0, num, ach);
if (!data->CheckNbParams(num, 4, ach, "geometric_tolerance"))
return;
// Own fields of GeometricTolerance
Handle(TCollection_HAsciiString) aName;
data->ReadString(num, 1, "name", ach, aName);
Handle(TCollection_HAsciiString) aDescription;
data->ReadString(num, 2, "description", ach, aDescription);
Handle(Standard_Transient) aMagnitude;
data->ReadEntity(num, 3, "magnitude", ach, STANDARD_TYPE(Standard_Transient), aMagnitude);
StepDimTol_GeometricToleranceTarget aTolerancedShapeAspect;
data->ReadEntity(num, 4, "toleranced_shape_aspect", ach, aTolerancedShapeAspect);
data->NamedForComplex("GEOMETRIC_TOLERANCE_WITH_DATUM_REFERENCE", "GTWDR", num0, num, ach);
// Own fields of GeometricToleranceWithDatumReference
Handle(StepDimTol_HArray1OfDatumSystemOrReference) aDatumSystem;
Standard_Integer sub5 = 0;
if (data->ReadSubList(num, 1, "datum_system", ach, sub5))
{
Standard_Integer nb0 = data->NbParams(sub5);
aDatumSystem = new StepDimTol_HArray1OfDatumSystemOrReference(1, nb0);
Standard_Integer num2 = sub5;
for (Standard_Integer i0 = 1; i0 <= nb0; i0++)
{
StepDimTol_DatumSystemOrReference anIt0;
data->ReadEntity(num2, i0, "datum_system_or_reference", ach, anIt0);
aDatumSystem->SetValue(i0, anIt0);
}
}
// Initialize entity
Handle(StepDimTol_GeometricToleranceWithDatumReference) aGTWDR =
new StepDimTol_GeometricToleranceWithDatumReference;
aGTWDR->SetDatumSystem(aDatumSystem);
// Choose type of geometric tolerance
TColStd_SequenceOfAsciiString aTypes;
data->ComplexType(num0, aTypes);
Standard_CString aFirst = aTypes.First().ToCString();
Standard_CString aLast = aTypes.Last().ToCString();
StepDimTol_GeometricToleranceType aType = StepDimTol_GTTPositionTolerance;
if (strcmp(aFirst, "ANGULARITY_TOLERANCE") == 0)
aType = StepDimTol_GTTAngularityTolerance;
else if (strcmp(aFirst, "CIRCULAR_RUNOUT_TOLERANCE") == 0)
aType = StepDimTol_GTTCircularRunoutTolerance;
else if (strcmp(aFirst, "COAXIALITY_TOLERANCE") == 0)
aType = StepDimTol_GTTCoaxialityTolerance;
else if (strcmp(aFirst, "CONCENTRICITY_TOLERANCE") == 0)
aType = StepDimTol_GTTConcentricityTolerance;
else if (strcmp(aFirst, "CYLINDRICITY_TOLERANCE") == 0)
aType = StepDimTol_GTTCylindricityTolerance;
else if (strcmp(aFirst, "FLATNESS_TOLERANCE") == 0)
aType = StepDimTol_GTTFlatnessTolerance;
else if (strcmp(aLast, "LINE_PROFILE_TOLERANCE") == 0)
aType = StepDimTol_GTTLineProfileTolerance;
else if (strcmp(aLast, "PARALLELISM_TOLERANCE") == 0)
aType = StepDimTol_GTTParallelismTolerance;
else if (strcmp(aLast, "PERPENDICULARITY_TOLERANCE") == 0)
aType = StepDimTol_GTTPerpendicularityTolerance;
else if (strcmp(aLast, "POSITION_TOLERANCE") == 0)
aType = StepDimTol_GTTPositionTolerance;
else if (strcmp(aLast, "ROUNDNESS_TOLERANCE") == 0)
aType = StepDimTol_GTTRoundnessTolerance;
else if (strcmp(aLast, "STRAIGHTNESS_TOLERANCE") == 0)
aType = StepDimTol_GTTStraightnessTolerance;
else if (strcmp(aLast, "SURFACE_PROFILE_TOLERANCE") == 0)
aType = StepDimTol_GTTSurfaceProfileTolerance;
else if (strcmp(aLast, "SYMMETRY_TOLERANCE") == 0)
aType = StepDimTol_GTTSymmetryTolerance;
else if (strcmp(aLast, "TOTAL_RUNOUT_TOLERANCE") == 0)
aType = StepDimTol_GTTTotalRunoutTolerance;
else
ach->AddFail("The type of geometric tolerance is not supported");
// Initialize entity
ent->Init(aName, aDescription, aMagnitude, aTolerancedShapeAspect, aGTWDR, aType);
}
//=================================================================================================
void RWStepDimTol_RWGeoTolAndGeoTolWthDatRef::WriteStep(
StepData_StepWriter& SW,
const Handle(StepDimTol_GeoTolAndGeoTolWthDatRef)& ent) const
{
StepDimTol_GeometricToleranceType aType = ent->GetToleranceType();
if (aType == StepDimTol_GTTAngularityTolerance)
SW.StartEntity("ANGULARITY_TOLERANCE");
else if (aType == StepDimTol_GTTCircularRunoutTolerance)
SW.StartEntity("CIRCULAR_RUNOUT_TOLERANCE");
else if (aType == StepDimTol_GTTCoaxialityTolerance)
SW.StartEntity("COAXIALITY_TOLERANCE");
else if (aType == StepDimTol_GTTConcentricityTolerance)
SW.StartEntity("CONCENTRICITY_TOLERANCE");
else if (aType == StepDimTol_GTTCylindricityTolerance)
SW.StartEntity("CYLINDRICITY_TOLERANCE");
else if (aType == StepDimTol_GTTFlatnessTolerance)
SW.StartEntity("FLATNESS_TOLERANCE");
SW.StartEntity("GEOMETRIC_TOLERANCE");
SW.Send(ent->Name());
SW.Send(ent->Description());
SW.Send(ent->Magnitude());
SW.Send(ent->TolerancedShapeAspect().Value());
SW.StartEntity("GEOMETRIC_TOLERANCE_WITH_DATUM_REFERENCE");
SW.OpenSub();
for (Standard_Integer i4 = 1;
i4 <= ent->GetGeometricToleranceWithDatumReference()->DatumSystemAP242()->Length();
i4++)
{
StepDimTol_DatumSystemOrReference Var0 =
ent->GetGeometricToleranceWithDatumReference()->DatumSystemAP242()->Value(i4);
SW.Send(Var0.Value());
}
SW.CloseSub();
if (aType == StepDimTol_GTTLineProfileTolerance)
SW.StartEntity("LINE_PROFILE_TOLERANCE");
else if (aType == StepDimTol_GTTParallelismTolerance)
SW.StartEntity("PARALLELISM_TOLERANCE");
else if (aType == StepDimTol_GTTPerpendicularityTolerance)
SW.StartEntity("PERPENDICULARITY_TOLERANCE");
else if (aType == StepDimTol_GTTPositionTolerance)
SW.StartEntity("POSITION_TOLERANCE");
else if (aType == StepDimTol_GTTRoundnessTolerance)
SW.StartEntity("ROUNDNESS_TOLERANCE");
else if (aType == StepDimTol_GTTStraightnessTolerance)
SW.StartEntity("STRAIGHTNESS_TOLERANCE");
else if (aType == StepDimTol_GTTSurfaceProfileTolerance)
SW.StartEntity("SURFACE_PROFILE_TOLERANCE");
else if (aType == StepDimTol_GTTSymmetryTolerance)
SW.StartEntity("SYMMETRY_TOLERANCE");
else if (aType == StepDimTol_GTTTotalRunoutTolerance)
SW.StartEntity("TOTAL_RUNOUT_TOLERANCE");
}
//=================================================================================================
void RWStepDimTol_RWGeoTolAndGeoTolWthDatRef::Share(
const Handle(StepDimTol_GeoTolAndGeoTolWthDatRef)& ent,
Interface_EntityIterator& iter) const
{
// Own fields of GeometricTolerance
iter.AddItem(ent->Magnitude());
iter.AddItem(ent->TolerancedShapeAspect().Value());
// Own fields of GeometricToleranceWithDatumReference
for (Standard_Integer i3 = 1;
i3 <= ent->GetGeometricToleranceWithDatumReference()->DatumSystemAP242()->Length();
i3++)
{
StepDimTol_DatumSystemOrReference Var0 =
ent->GetGeometricToleranceWithDatumReference()->DatumSystemAP242()->Value(i3);
iter.AddItem(Var0.Value());
}
}