summaryrefslogtreecommitdiff
path: root/src/RWStepBasic/RWStepBasic_RWLocalTime.cxx
blob: 719cc409e42ff62082f5b5b76bf43774b8874f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111

#include <RWStepBasic_RWLocalTime.ixx>
#include <StepBasic_CoordinatedUniversalTimeOffset.hxx>


#include <Interface_EntityIterator.hxx>


#include <StepBasic_LocalTime.hxx>


RWStepBasic_RWLocalTime::RWStepBasic_RWLocalTime () {}

void RWStepBasic_RWLocalTime::ReadStep
	(const Handle(StepData_StepReaderData)& data,
	 const Standard_Integer num,
	 Handle(Interface_Check)& ach,
	 const Handle(StepBasic_LocalTime)& ent) const
{


	// --- Number of Parameter Control ---

	if (!data->CheckNbParams(num,4,ach,"local_time")) return;

	// --- own field : hourComponent ---

	Standard_Integer aHourComponent;
	//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
	data->ReadInteger (num,1,"hour_component",ach,aHourComponent);

	// --- own field : minuteComponent ---

	Standard_Integer aMinuteComponent;
	Standard_Boolean hasAminuteComponent = Standard_True;
	if (data->IsParamDefined(num,2)) {
	  //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
	  data->ReadInteger (num,2,"minute_component",ach,aMinuteComponent);
	}
	else {
	  hasAminuteComponent = Standard_False;
	  aMinuteComponent = 0;
	}

	// --- own field : secondComponent ---

	Standard_Real aSecondComponent;
	Standard_Boolean hasAsecondComponent = Standard_True;
	if (data->IsParamDefined(num,3)) {
	  //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
	  data->ReadReal (num,3,"second_component",ach,aSecondComponent);
	}
	else {
	  hasAsecondComponent = Standard_False;
	  aSecondComponent = 0.;
	}

	// --- own field : zone ---

	Handle(StepBasic_CoordinatedUniversalTimeOffset) aZone;
	//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
	data->ReadEntity(num, 4,"zone", ach, STANDARD_TYPE(StepBasic_CoordinatedUniversalTimeOffset), aZone);

	//--- Initialisation of the read entity ---


	ent->Init(aHourComponent, hasAminuteComponent, aMinuteComponent, hasAsecondComponent, aSecondComponent, aZone);
}


void RWStepBasic_RWLocalTime::WriteStep
	(StepData_StepWriter& SW,
	 const Handle(StepBasic_LocalTime)& ent) const
{

	// --- own field : hourComponent ---

	SW.Send(ent->HourComponent());

	// --- own field : minuteComponent ---

	Standard_Boolean hasAminuteComponent = ent->HasMinuteComponent();
	if (hasAminuteComponent) {
	  SW.Send(ent->MinuteComponent());
	}
	else {
	  SW.SendUndef();
	}

	// --- own field : secondComponent ---

	Standard_Boolean hasAsecondComponent = ent->HasSecondComponent();
	if (hasAsecondComponent) {
	  SW.Send(ent->SecondComponent());
	}
	else {
	  SW.SendUndef();
	}

	// --- own field : zone ---

	SW.Send(ent->Zone());
}


void RWStepBasic_RWLocalTime::Share(const Handle(StepBasic_LocalTime)& ent, Interface_EntityIterator& iter) const
{

	iter.GetOneItem(ent->Zone());
}