0026859: Export of GDT from XCAF to STEP
[occt.git] / src / RWStepDimTol / RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx
1 // Created on: 2015-07-07
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #include <RWStepDimTol_RWGeometricToleranceWithDefinedUnit.hxx>
17
18 #include <Interface_EntityIterator.hxx>
19 #include <StepBasic_LengthMeasureWithUnit.hxx>
20 #include <StepBasic_MeasureWithUnit.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepDimTol_GeometricToleranceTarget.hxx>
24 #include <StepDimTol_GeometricToleranceWithDefinedUnit.hxx>
25
26 //=======================================================================
27 //function : RWStepDimTol_RWGeometricToleranceWithDefinedUnit
28 //purpose  : 
29 //=======================================================================
30
31 RWStepDimTol_RWGeometricToleranceWithDefinedUnit::RWStepDimTol_RWGeometricToleranceWithDefinedUnit ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepDimTol_RWGeometricToleranceWithDefinedUnit::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                   const Standard_Integer num,
42                                                   Handle(Interface_Check)& ach,
43                                                   const Handle(StepDimTol_GeometricToleranceWithDefinedUnit) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num, 5, ach, "geometric_tolerance_with_defined_unit") ) return;
47
48   // inherited fields from GeometricTolerance
49
50   Handle(TCollection_HAsciiString) aName;
51   data->ReadString (num, 1, "geometric_tolerance.name", ach, aName);
52
53   Handle(TCollection_HAsciiString) aDescription;
54   data->ReadString (num, 2, "geometric_tolerance.description", ach, aDescription);
55
56   Handle(StepBasic_MeasureWithUnit) aMagnitude;
57   data->ReadEntity (num, 3, "geometric_tolerance.magnitude", ach, STANDARD_TYPE(StepBasic_MeasureWithUnit), aMagnitude);
58
59   StepDimTol_GeometricToleranceTarget aTolerancedShapeAspect;
60   data->ReadEntity (num, 4, "geometric_tolerance.toleranced_shape_aspect", ach, aTolerancedShapeAspect);
61
62   // own fields of GeometricToleranceWithDefinedUnit
63
64   Handle(StepBasic_LengthMeasureWithUnit) anUnitSize;
65   data->ReadEntity (num, 5, "unit_size", ach, STANDARD_TYPE(StepBasic_LengthMeasureWithUnit), anUnitSize);
66
67   // Initialize entity
68   ent->Init(aName,
69             aDescription,
70             aMagnitude,
71             aTolerancedShapeAspect,
72             anUnitSize);
73 }
74
75 //=======================================================================
76 //function : WriteStep
77 //purpose  : 
78 //=======================================================================
79
80 void RWStepDimTol_RWGeometricToleranceWithDefinedUnit::
81   WriteStep (StepData_StepWriter& SW,
82              const Handle(StepDimTol_GeometricToleranceWithDefinedUnit) &ent) const
83 {
84
85   // inherited fields from GeometricTolerance
86
87   SW.Send (ent->Name());
88
89   SW.Send (ent->Description());
90
91   SW.Send (ent->Magnitude());
92
93   SW.Send (ent->TolerancedShapeAspect().Value());
94
95   // own fields of GeometricToleranceWithDefinedUnit
96
97   SW.Send (ent->UnitSize());
98 }
99
100 //=======================================================================
101 //function : Share
102 //purpose  : 
103 //=======================================================================
104
105 void RWStepDimTol_RWGeometricToleranceWithDefinedUnit::Share (const Handle(StepDimTol_GeometricToleranceWithDefinedUnit) &ent,
106                                                               Interface_EntityIterator& iter) const
107 {
108
109   // inherited fields from GeometricTolerance
110
111   iter.AddItem (ent->Magnitude());
112
113   iter.AddItem (ent->TolerancedShapeAspect().Value());
114 }