0026715: Problems in reading STEP short names in complex entities
[occt.git] / src / RWStepDimTol / RWStepDimTol_RWUnequallyDisposedGeometricTolerance.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_RWUnequallyDisposedGeometricTolerance.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_UnequallyDisposedGeometricTolerance.hxx>
25
26 //=======================================================================
27 //function : RWStepDimTol_RWUnequallyDisposedGeometricTolerance
28 //purpose  : 
29 //=======================================================================
30
31 RWStepDimTol_RWUnequallyDisposedGeometricTolerance::RWStepDimTol_RWUnequallyDisposedGeometricTolerance ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepDimTol_RWUnequallyDisposedGeometricTolerance::
41   ReadStep (const Handle(StepData_StepReaderData)& data,
42             const Standard_Integer num,
43             Handle(Interface_Check)& ach,
44             const Handle(StepDimTol_UnequallyDisposedGeometricTolerance) &ent) const
45 {
46   // Check number of parameters
47   if ( ! data->CheckNbParams(num, 5, ach, "unequally_disposed_geometric_tolerance") ) return;
48
49   // inherited from GeometricTolerance
50
51   Handle(TCollection_HAsciiString) aName;
52   data->ReadString (num, 1, "geometric_tolerance.name", ach, aName);
53
54   Handle(TCollection_HAsciiString) aDescription;
55   data->ReadString (num, 2, "geometric_tolerance.description", ach, aDescription);
56
57   Handle(StepBasic_MeasureWithUnit) aMagnitude;
58   data->ReadEntity (num, 3, "geometric_tolerance.magnitude", ach, STANDARD_TYPE(StepBasic_MeasureWithUnit), aMagnitude);
59
60   StepDimTol_GeometricToleranceTarget aTolerancedShapeAspect;
61   data->ReadEntity (num, 4, "geometric_tolerance.toleranced_shape_aspect", ach, aTolerancedShapeAspect);
62
63   // own fields of UnequallyDisposedGeometricTolerance
64
65   Handle(StepBasic_LengthMeasureWithUnit) aDisplacement;
66   data->ReadEntity (num, 5, "displacement", ach, STANDARD_TYPE(StepBasic_LengthMeasureWithUnit), aDisplacement);
67
68   // Initialize entity
69   ent->Init(aName,
70             aDescription,
71             aMagnitude,
72             aTolerancedShapeAspect,
73             aDisplacement);
74 }
75
76 //=======================================================================
77 //function : WriteStep
78 //purpose  : 
79 //=======================================================================
80
81 void RWStepDimTol_RWUnequallyDisposedGeometricTolerance::
82   WriteStep (StepData_StepWriter& SW,
83   const Handle(StepDimTol_UnequallyDisposedGeometricTolerance) &ent) const
84 {
85
86   // Own fields of GeometricTolerance
87
88   SW.Send (ent->Name());
89
90   SW.Send (ent->Description());
91
92   SW.Send (ent->Magnitude());
93
94   SW.Send (ent->TolerancedShapeAspect().Value());
95
96   SW.Send (ent->Displacement());
97 }
98
99 //=======================================================================
100 //function : Share
101 //purpose  : 
102 //=======================================================================
103
104 void RWStepDimTol_RWUnequallyDisposedGeometricTolerance::
105   Share (const Handle(StepDimTol_UnequallyDisposedGeometricTolerance) &ent,
106   Interface_EntityIterator& iter) const
107 {
108
109   // Own fields of GeometricTolerance
110
111   iter.AddItem (ent->Magnitude());
112
113   iter.AddItem (ent->TolerancedShapeAspect().Value());
114 }