0024157: Parallelization of assembly part of BO
[occt.git] / src / RWStepBasic / RWStepBasic_RWProductDefinition.cxx
1 // Copyright (c) 1999-2012 OPEN CASCADE SAS
2 //
3 // The content of this file is subject to the Open CASCADE Technology Public
4 // License Version 6.5 (the "License"). You may not use the content of this file
5 // except in compliance with the License. Please obtain a copy of the License
6 // at http://www.opencascade.org and read it completely before using this file.
7 //
8 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10 //
11 // The Original Code and all software distributed under the License is
12 // distributed on an "AS IS" basis, without warranty of any kind, and the
13 // Initial Developer hereby disclaims all such warranties, including without
14 // limitation, any warranties of merchantability, fitness for a particular
15 // purpose or non-infringement. Please see the License for the specific terms
16 // and conditions governing the rights and limitations under the License.
17
18 //gka 05.03.99 S4134 upgrade from CD to DIS
19 #include <RWStepBasic_RWProductDefinition.ixx>
20 #include <StepBasic_ProductDefinitionFormation.hxx>
21 #include <StepBasic_ProductDefinitionContext.hxx>
22
23
24 #include <Interface_EntityIterator.hxx>
25
26
27 #include <StepBasic_ProductDefinition.hxx>
28
29
30 RWStepBasic_RWProductDefinition::RWStepBasic_RWProductDefinition () {}
31
32 void RWStepBasic_RWProductDefinition::ReadStep
33         (const Handle(StepData_StepReaderData)& data,
34          const Standard_Integer num,
35          Handle(Interface_Check)& ach,
36          const Handle(StepBasic_ProductDefinition)& ent) const
37 {
38
39
40         // --- Number of Parameter Control ---
41
42         if (!data->CheckNbParams(num,4,ach,"product_definition")) return;
43
44         // --- own field : id ---
45
46         Handle(TCollection_HAsciiString) aId;
47         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
48         data->ReadString (num,1,"id",ach,aId);
49
50         // --- own field : description ---
51
52         Handle(TCollection_HAsciiString) aDescription;
53         if (data->IsParamDefined (num,2)) { //gka 05.03.99 S4134 upgrade from CD to DIS
54           //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
55           data->ReadString (num,2,"description",ach,aDescription);
56         }
57         // --- own field : formation ---
58
59         Handle(StepBasic_ProductDefinitionFormation) aFormation;
60         //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
61         data->ReadEntity(num, 3,"formation", ach, STANDARD_TYPE(StepBasic_ProductDefinitionFormation), aFormation);
62
63         // --- own field : frameOfReference ---
64
65         Handle(StepBasic_ProductDefinitionContext) aFrameOfReference;
66         //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
67         data->ReadEntity(num, 4,"frame_of_reference", ach, STANDARD_TYPE(StepBasic_ProductDefinitionContext), aFrameOfReference);
68
69         //--- Initialisation of the read entity ---
70
71
72         ent->Init(aId, aDescription, aFormation, aFrameOfReference);
73 }
74
75
76 void RWStepBasic_RWProductDefinition::WriteStep
77         (StepData_StepWriter& SW,
78          const Handle(StepBasic_ProductDefinition)& ent) const
79 {
80
81         // --- own field : id ---
82
83         SW.Send(ent->Id());
84
85         // --- own field : description ---
86
87         SW.Send(ent->Description());
88
89         // --- own field : formation ---
90
91         SW.Send(ent->Formation());
92
93         // --- own field : frameOfReference ---
94
95         SW.Send(ent->FrameOfReference());
96 }
97
98
99 void RWStepBasic_RWProductDefinition::Share(const Handle(StepBasic_ProductDefinition)& ent, Interface_EntityIterator& iter) const
100 {
101
102         iter.GetOneItem(ent->Formation());
103
104
105         iter.GetOneItem(ent->FrameOfReference());
106 }
107