0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / RWStepRepr / RWStepRepr_RWDescriptiveRepresentationItem.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 <RWStepRepr_RWDescriptiveRepresentationItem.hxx>
17 #include <StepData_StepReaderData.hxx>
18 #include <StepData_StepWriter.hxx>
19 #include <StepRepr_DescriptiveRepresentationItem.hxx>
20 #include <TCollection_HAsciiString.hxx>
21
22 RWStepRepr_RWDescriptiveRepresentationItem::RWStepRepr_RWDescriptiveRepresentationItem () {}
23
24 void RWStepRepr_RWDescriptiveRepresentationItem::ReadStep
25         (const Handle(StepData_StepReaderData)& data,
26          const Standard_Integer num,
27          Handle(Interface_Check)& ach,
28          const Handle(StepRepr_DescriptiveRepresentationItem)& ent) const
29 {
30
31
32         // --- Number of Parameter Control ---
33
34         //if (!data->CheckNbParams(num,2,ach,"descriptive_representation_item")) return;
35   // for the case when description is absent
36   if (data->NbParams(num) != 2 && data->NbParams(num) != 1)
37   {
38     Handle(TCollection_HAsciiString) errmess = new TCollection_HAsciiString(
39       "Count of Parameters is not 1 or 2 for descriptive_representation_item");
40     Handle(TCollection_HAsciiString) errmesso = new TCollection_HAsciiString(
41       "Count of Parameters is not %d or %d for %s");
42     ach->AddFail (errmess->ToCString(),errmesso->ToCString());
43     return;
44   }
45
46         // --- inherited field : name ---
47
48         Handle(TCollection_HAsciiString) aName;
49         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
50         data->ReadString (num,1,"name",ach,aName);
51
52         // --- own field : description ---
53
54         Handle(TCollection_HAsciiString) aDescription;
55         //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
56         data->ReadString (num,2,"description",ach,aDescription);
57
58         //--- Initialisation of the read entity ---
59
60
61         ent->Init(aName, aDescription);
62 }
63
64
65 void RWStepRepr_RWDescriptiveRepresentationItem::WriteStep
66         (StepData_StepWriter& SW,
67          const Handle(StepRepr_DescriptiveRepresentationItem)& ent) const
68 {
69
70         // --- inherited field name ---
71
72         SW.Send(ent->Name());
73
74         // --- own field : description ---
75
76         SW.Send(ent->Description());
77 }