0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / RWStepVisual / RWStepVisual_RWCompositeTextWithExtent.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 <RWStepVisual_RWCompositeTextWithExtent.hxx>
18 #include <StepData_StepReaderData.hxx>
19 #include <StepData_StepWriter.hxx>
20 #include <StepVisual_CompositeTextWithExtent.hxx>
21 #include <StepVisual_HArray1OfTextOrCharacter.hxx>
22 #include <StepVisual_PlanarExtent.hxx>
23 #include <StepVisual_TextOrCharacter.hxx>
24
25 RWStepVisual_RWCompositeTextWithExtent::RWStepVisual_RWCompositeTextWithExtent () {}
26
27 void RWStepVisual_RWCompositeTextWithExtent::ReadStep
28         (const Handle(StepData_StepReaderData)& data,
29          const Standard_Integer num,
30          Handle(Interface_Check)& ach,
31          const Handle(StepVisual_CompositeTextWithExtent)& ent) const
32 {
33
34
35         // --- Number of Parameter Control ---
36
37         if (!data->CheckNbParams(num,3,ach,"composite_text_with_extent has not 3 parameter(s)")) return;
38
39         // --- inherited field : name ---
40
41         Handle(TCollection_HAsciiString) aName;
42         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
43         data->ReadString (num,1,"name",ach,aName);
44
45         // --- inherited field : collectedText ---
46
47         Handle(StepVisual_HArray1OfTextOrCharacter) aCollectedText;
48         StepVisual_TextOrCharacter aCollectedTextItem;
49         Standard_Integer nsub2;
50         nsub2 = data->SubListNumber(num, 2, Standard_False);
51         if (nsub2 !=0) {
52           Standard_Integer nb2 = data->NbParams(nsub2);
53           aCollectedText = new StepVisual_HArray1OfTextOrCharacter (1, nb2);
54           for (Standard_Integer i2 = 1; i2 <= nb2; i2 ++) {
55             //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
56             if (data->ReadEntity (nsub2,i2,"collected_text",ach,aCollectedTextItem))
57               aCollectedText->SetValue(i2,aCollectedTextItem);
58           }
59         }
60         else {
61           ach->AddFail("Parameter #2 (collected_text) is not a LIST");
62         }
63
64         // --- own field : extent ---
65
66         Handle(StepVisual_PlanarExtent) aExtent;
67         //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
68         data->ReadEntity(num, 3,"extent", ach, STANDARD_TYPE(StepVisual_PlanarExtent), aExtent);
69
70         //--- Initialisation of the read entity ---
71
72
73         ent->Init(aName, aCollectedText, aExtent);
74 }
75
76
77 void RWStepVisual_RWCompositeTextWithExtent::WriteStep
78         (StepData_StepWriter& SW,
79          const Handle(StepVisual_CompositeTextWithExtent)& ent) const
80 {
81
82         // --- inherited field name ---
83
84         SW.Send(ent->Name());
85
86         // --- inherited field collectedText ---
87
88         SW.OpenSub();
89         for (Standard_Integer i2 = 1;  i2 <= ent->NbCollectedText();  i2 ++) {
90           SW.Send(ent->CollectedTextValue(i2).Value());
91         }
92         SW.CloseSub();
93
94         // --- own field : extent ---
95
96         SW.Send(ent->Extent());
97 }
98
99
100 void RWStepVisual_RWCompositeTextWithExtent::Share(const Handle(StepVisual_CompositeTextWithExtent)& ent, Interface_EntityIterator& iter) const
101 {
102
103         Standard_Integer nbElem1 = ent->NbCollectedText();
104         for (Standard_Integer is1=1; is1<=nbElem1; is1 ++) {
105           iter.GetOneItem(ent->CollectedTextValue(is1).Value());
106         }
107
108
109
110         iter.GetOneItem(ent->Extent());
111 }
112