4764e8e6f8cc0ad90850dedca23d27cbd1248f97
[occt.git] / src / RWStepAP214 / RWStepAP214_RWAppliedPersonAndOrganizationAssignment.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
19 #include <RWStepAP214_RWAppliedPersonAndOrganizationAssignment.ixx>
20 #include <StepAP214_HArray1OfPersonAndOrganizationItem.hxx>
21 #include <StepAP214_PersonAndOrganizationItem.hxx>
22 #include <StepBasic_PersonAndOrganization.hxx>
23 #include <StepBasic_PersonAndOrganizationRole.hxx>
24
25
26 #include <Interface_EntityIterator.hxx>
27
28
29 #include <StepAP214_AppliedPersonAndOrganizationAssignment.hxx>
30
31
32 RWStepAP214_RWAppliedPersonAndOrganizationAssignment::RWStepAP214_RWAppliedPersonAndOrganizationAssignment () {}
33
34 void RWStepAP214_RWAppliedPersonAndOrganizationAssignment::ReadStep
35         (const Handle(StepData_StepReaderData)& data,
36          const Standard_Integer num,
37          Handle(Interface_Check)& ach,
38          const Handle(StepAP214_AppliedPersonAndOrganizationAssignment)& ent) const
39 {
40
41
42   // --- Number of Parameter Control ---
43
44   if (!data->CheckNbParams(num,3,ach,"applied_person_and_organization_assignment")) return;
45
46   // --- inherited field : assignedPersonAndOrganization ---
47   
48   Handle(StepBasic_PersonAndOrganization) aAssignedPersonAndOrganization;
49 #ifdef DEB
50   Standard_Boolean stat1 = 
51 #endif
52     data->ReadEntity(num, 1,"assigned_person_and_organization", ach, STANDARD_TYPE(StepBasic_PersonAndOrganization), aAssignedPersonAndOrganization);
53   
54   // --- inherited field : role ---
55   
56   Handle(StepBasic_PersonAndOrganizationRole) aRole;
57 #ifdef DEB
58   Standard_Boolean stat2 = 
59 #endif
60     data->ReadEntity(num, 2,"role", ach, STANDARD_TYPE(StepBasic_PersonAndOrganizationRole), aRole);
61   
62   // --- own field : items ---
63   
64   Handle(StepAP214_HArray1OfPersonAndOrganizationItem) aItems;
65   StepAP214_PersonAndOrganizationItem aItemsItem;
66   Standard_Integer nsub3;
67   if (data->ReadSubList (num,3,"items",ach,nsub3)) {
68     Standard_Integer nb3 = data->NbParams(nsub3);
69     aItems = new StepAP214_HArray1OfPersonAndOrganizationItem (1, nb3);
70     for (Standard_Integer i3 = 1; i3 <= nb3; i3 ++) {
71       Standard_Boolean stat3 = data->ReadEntity
72         (nsub3,i3,"items",ach,aItemsItem); 
73       if (stat3) aItems->SetValue(i3,aItemsItem);
74     }
75   }
76
77   //--- Initialisation of the read entity ---
78
79
80   ent->Init(aAssignedPersonAndOrganization, aRole, aItems);
81 }
82
83
84 void RWStepAP214_RWAppliedPersonAndOrganizationAssignment::WriteStep
85         (StepData_StepWriter& SW,
86          const Handle(StepAP214_AppliedPersonAndOrganizationAssignment)& ent) const
87 {
88
89   // --- inherited field assignedPersonAndOrganization ---
90
91   SW.Send(ent->AssignedPersonAndOrganization());
92         
93   // --- inherited field role ---
94
95   SW.Send(ent->Role());
96
97   // --- own field : items ---
98
99   SW.OpenSub();
100   for (Standard_Integer i3 = 1;  i3 <= ent->NbItems();  i3 ++) {
101     SW.Send(ent->ItemsValue(i3).Value());
102   }
103   SW.CloseSub();
104 }
105
106
107 void RWStepAP214_RWAppliedPersonAndOrganizationAssignment::Share(const Handle(StepAP214_AppliedPersonAndOrganizationAssignment)& ent, Interface_EntityIterator& iter) const
108 {
109
110   iter.GetOneItem(ent->AssignedPersonAndOrganization());
111   iter.GetOneItem(ent->Role());
112   Standard_Integer nbElem3 = ent->NbItems();
113   for (Standard_Integer is3=1; is3<=nbElem3; is3 ++) {
114     iter.GetOneItem(ent->ItemsValue(is3).Value());
115   }
116
117 }
118