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_ExternalRefFile.hxx>
20 #include <IGESBasic_ToolExternalRefFile.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
IGESBasic_ToolExternalRefFile()37 IGESBasic_ToolExternalRefFile::IGESBasic_ToolExternalRefFile () { }
38
39
ReadOwnParams(const Handle (IGESBasic_ExternalRefFile)& ent,const Handle (IGESData_IGESReaderData)&,IGESData_ParamReader & PR) const40 void IGESBasic_ToolExternalRefFile::ReadOwnParams
41 (const Handle(IGESBasic_ExternalRefFile)& 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) tempExtRefFileIdentifier;
46 PR.ReadText(PR.Current(), "External Reference File Identifier",
47 tempExtRefFileIdentifier); //szv#4:S4163:12Mar99 `st=` not needed
48
49 DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
50 ent->Init(tempExtRefFileIdentifier);
51 }
52
WriteOwnParams(const Handle (IGESBasic_ExternalRefFile)& ent,IGESData_IGESWriter & IW) const53 void IGESBasic_ToolExternalRefFile::WriteOwnParams
54 (const Handle(IGESBasic_ExternalRefFile)& ent, IGESData_IGESWriter& IW) const
55 {
56 IW.Send(ent->FileId());
57 }
58
OwnShared(const Handle (IGESBasic_ExternalRefFile)&,Interface_EntityIterator &) const59 void IGESBasic_ToolExternalRefFile::OwnShared
60 (const Handle(IGESBasic_ExternalRefFile)& /* ent */, Interface_EntityIterator& /* iter */) const
61 {
62 }
63
OwnCopy(const Handle (IGESBasic_ExternalRefFile)& another,const Handle (IGESBasic_ExternalRefFile)& ent,Interface_CopyTool &) const64 void IGESBasic_ToolExternalRefFile::OwnCopy
65 (const Handle(IGESBasic_ExternalRefFile)& another,
66 const Handle(IGESBasic_ExternalRefFile)& ent, Interface_CopyTool& /* TC */) const
67 {
68 Handle(TCollection_HAsciiString) tempFileId =
69 new TCollection_HAsciiString(another->FileId());
70 ent->Init(tempFileId);
71 }
72
DirChecker(const Handle (IGESBasic_ExternalRefFile)&) const73 IGESData_DirChecker IGESBasic_ToolExternalRefFile::DirChecker
74 (const Handle(IGESBasic_ExternalRefFile)& /* ent */ ) const
75 {
76 IGESData_DirChecker DC(416, 1);
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.BlankStatusIgnored();
83 DC.HierarchyStatusIgnored();
84 return DC;
85 }
86
OwnCheck(const Handle (IGESBasic_ExternalRefFile)&,const Interface_ShareTool &,Handle (Interface_Check)&) const87 void IGESBasic_ToolExternalRefFile::OwnCheck
88 (const Handle(IGESBasic_ExternalRefFile)& /* ent */,
89 const Interface_ShareTool& , Handle(Interface_Check)& /* ach */) const
90 {
91 }
92
OwnDump(const Handle (IGESBasic_ExternalRefFile)& ent,const IGESData_IGESDumper &,Standard_OStream & S,const Standard_Integer) const93 void IGESBasic_ToolExternalRefFile::OwnDump
94 (const Handle(IGESBasic_ExternalRefFile)& ent, const IGESData_IGESDumper& /* dumper */,
95 Standard_OStream& S, const Standard_Integer /* level */) const
96 {
97 S << "IGESBasic_ExternalRefFile\n"
98 << "External Reference File Identifier : ";
99 IGESData_DumpString(S,ent->FileId());
100 S << std::endl;
101 }
102