0026377: Passing Handle objects as arguments to functions as non-const reference...
[occt.git] / src / RWStepBasic / RWStepBasic_RWProductType.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Interface_Check.hxx>
16 #include <Interface_EntityIterator.hxx>
17 #include <RWStepBasic_RWProductType.hxx>
18 #include <StepBasic_HArray1OfProduct.hxx>
19 #include <StepBasic_Product.hxx>
20 #include <StepBasic_ProductType.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23
24 RWStepBasic_RWProductType::RWStepBasic_RWProductType () {}
25
26 void RWStepBasic_RWProductType::ReadStep
27         (const Handle(StepData_StepReaderData)& data,
28          const Standard_Integer num,
29          Handle(Interface_Check)& ach,
30          const Handle(StepBasic_ProductType)& ent) const
31 {
32
33
34         // --- Number of Parameter Control ---
35
36         if (!data->CheckNbParams(num,3,ach,"product_type")) return;
37
38         // --- inherited field : name ---
39
40         Handle(TCollection_HAsciiString) aName;
41         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
42         data->ReadString (num,1,"name",ach,aName);
43
44         // --- inherited field : description ---
45
46         Handle(TCollection_HAsciiString) aDescription;
47         Standard_Boolean hasAdescription = Standard_True;
48         if (data->IsParamDefined(num,2)) {
49           //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
50           data->ReadString (num,2,"description",ach,aDescription);
51         }
52         else {
53           hasAdescription = Standard_False;
54           aDescription.Nullify();
55         }
56
57         // --- inherited field : products ---
58
59         Handle(StepBasic_HArray1OfProduct) aProducts;
60         Handle(StepBasic_Product) anent3;
61         Standard_Integer nsub3;
62         if (data->ReadSubList (num,3,"products",ach,nsub3)) {
63           Standard_Integer nb3 = data->NbParams(nsub3);
64           aProducts = new StepBasic_HArray1OfProduct (1, nb3);
65           for (Standard_Integer i3 = 1; i3 <= nb3; i3 ++) {
66             //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
67             if (data->ReadEntity (nsub3, i3,"product", ach, STANDARD_TYPE(StepBasic_Product), anent3))
68               aProducts->SetValue(i3, anent3);
69           }
70         }
71
72         //--- Initialisation of the read entity ---
73
74
75         ent->Init(aName, hasAdescription, aDescription, aProducts);
76 }
77
78
79 void RWStepBasic_RWProductType::WriteStep
80         (StepData_StepWriter& SW,
81          const Handle(StepBasic_ProductType)& ent) const
82 {
83
84         // --- inherited field name ---
85
86         SW.Send(ent->Name());
87
88         // --- inherited field description ---
89
90         Standard_Boolean hasAdescription = ent->HasDescription();
91         if (hasAdescription) {
92           SW.Send(ent->Description());
93         }
94         else {
95           SW.SendUndef();
96         }
97
98         // --- inherited field products ---
99
100         SW.OpenSub();
101         for (Standard_Integer i3 = 1;  i3 <= ent->NbProducts();  i3 ++) {
102           SW.Send(ent->ProductsValue(i3));
103         }
104         SW.CloseSub();
105 }
106
107
108 void RWStepBasic_RWProductType::Share(const Handle(StepBasic_ProductType)& ent, Interface_EntityIterator& iter) const
109 {
110
111         Standard_Integer nbElem1 = ent->NbProducts();
112         for (Standard_Integer is1=1; is1<=nbElem1; is1 ++) {
113           iter.GetOneItem(ent->ProductsValue(is1));
114         }
115
116 }
117