ab4daea9d3ed1403dfca8e8cf56e74c205d51d55
[occt.git] / src / IGESBasic / IGESBasic_ToolExternalRefName.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <IGESBasic_ExternalRefName.hxx>
20 #include <IGESBasic_ToolExternalRefName.hxx>
21 #include <IGESData_DirChecker.hxx>
22 #include <IGESData_Dump.hxx>
23 #include <IGESData_IGESDumper.hxx>
24 #include <IGESData_IGESReaderData.hxx>
25 #include <IGESData_IGESWriter.hxx>
26 #include <IGESData_ParamCursor.hxx>
27 #include <IGESData_ParamReader.hxx>
28 #include <Interface_Check.hxx>
29 #include <Interface_CopyTool.hxx>
30 #include <Interface_EntityIterator.hxx>
31 #include <Interface_Macros.hxx>
32 #include <Interface_ShareTool.hxx>
33 #include <Message_Messenger.hxx>
34 #include <Standard_DomainError.hxx>
35 #include <TCollection_HAsciiString.hxx>
36
37 IGESBasic_ToolExternalRefName::IGESBasic_ToolExternalRefName ()    {  }
38
39
40 void  IGESBasic_ToolExternalRefName::ReadOwnParams
41   (const Handle(IGESBasic_ExternalRefName)& ent,
42    const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
43 {
44   //Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
45   Handle(TCollection_HAsciiString) tempExtRefEntitySymbName;
46   PR.ReadText(PR.Current(), "External Reference Symbolic Name",
47               tempExtRefEntitySymbName); //szv#4:S4163:12Mar99 `st=` not needed
48
49   DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
50   ent->Init(tempExtRefEntitySymbName);
51 }
52
53 void  IGESBasic_ToolExternalRefName::WriteOwnParams
54   (const Handle(IGESBasic_ExternalRefName)& ent, IGESData_IGESWriter& IW) const
55 {
56   IW.Send(ent->ReferenceName());
57 }
58
59 void  IGESBasic_ToolExternalRefName::OwnShared
60   (const Handle(IGESBasic_ExternalRefName)& /* ent */, Interface_EntityIterator& /* iter */) const
61 {
62 }
63
64 void  IGESBasic_ToolExternalRefName::OwnCopy
65   (const Handle(IGESBasic_ExternalRefName)& another,
66    const Handle(IGESBasic_ExternalRefName)& ent, Interface_CopyTool& /* TC */) const
67 {
68   Handle(TCollection_HAsciiString) tempRefName =
69     new TCollection_HAsciiString(another->ReferenceName());
70   ent->Init(tempRefName);
71 }
72
73 IGESData_DirChecker  IGESBasic_ToolExternalRefName::DirChecker
74   (const Handle(IGESBasic_ExternalRefName)& /* ent */ ) const
75 {
76   IGESData_DirChecker DC(416, 3);
77   DC.Structure(IGESData_DefVoid);
78   DC.GraphicsIgnored();
79   DC.LineFont(IGESData_DefVoid);
80   DC.LineWeight(IGESData_DefVoid);
81   DC.Color(IGESData_DefVoid);
82   DC.BlankStatusRequired(0);
83   DC.HierarchyStatusRequired(0);
84   return DC;
85 }
86
87 void  IGESBasic_ToolExternalRefName::OwnCheck
88   (const Handle(IGESBasic_ExternalRefName)& /* ent */,
89    const Interface_ShareTool& , Handle(Interface_Check)& /* ach */) const
90 {
91 }
92
93 void  IGESBasic_ToolExternalRefName::OwnDump
94   (const Handle(IGESBasic_ExternalRefName)& ent, const IGESData_IGESDumper& /* dumper */,
95    Standard_OStream& S, const Standard_Integer /* level */) const
96 {
97   S << "IGESBasic_ExternalRefName\n"
98     << "External Reference Symbolic Name : ";
99   IGESData_DumpString(S,ent->ReferenceName());
100   S << std::endl;
101 }