1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-07 18:30:55 +03:00
occt/src/IGESBasic/IGESBasic_ReadWriteModule.cxx
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

349 lines
10 KiB
C++
Executable File

// Copyright (c) 1999-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <IGESBasic_ReadWriteModule.ixx>
#include <Interface_Macros.hxx>
#include <IGESBasic_AssocGroupType.hxx>
#include <IGESBasic_ExternalRefFile.hxx>
#include <IGESBasic_ExternalRefFileIndex.hxx>
#include <IGESBasic_ExternalRefFileName.hxx>
#include <IGESBasic_ExternalRefLibName.hxx>
#include <IGESBasic_ExternalRefName.hxx>
#include <IGESBasic_ExternalReferenceFile.hxx>
#include <IGESBasic_Group.hxx>
#include <IGESBasic_GroupWithoutBackP.hxx>
#include <IGESBasic_Hierarchy.hxx>
#include <IGESBasic_Name.hxx>
#include <IGESBasic_OrderedGroup.hxx>
#include <IGESBasic_OrderedGroupWithoutBackP.hxx>
#include <IGESBasic_SingleParent.hxx>
#include <IGESBasic_SingularSubfigure.hxx>
#include <IGESBasic_SubfigureDef.hxx>
#include <IGESBasic_ToolAssocGroupType.hxx>
#include <IGESBasic_ToolExternalRefFile.hxx>
#include <IGESBasic_ToolExternalRefFileIndex.hxx>
#include <IGESBasic_ToolExternalRefFileName.hxx>
#include <IGESBasic_ToolExternalRefLibName.hxx>
#include <IGESBasic_ToolExternalRefName.hxx>
#include <IGESBasic_ToolExternalReferenceFile.hxx>
#include <IGESBasic_ToolGroup.hxx>
#include <IGESBasic_ToolGroupWithoutBackP.hxx>
#include <IGESBasic_ToolHierarchy.hxx>
#include <IGESBasic_ToolName.hxx>
#include <IGESBasic_ToolOrderedGroup.hxx>
#include <IGESBasic_ToolOrderedGroupWithoutBackP.hxx>
#include <IGESBasic_ToolSingleParent.hxx>
#include <IGESBasic_ToolSingularSubfigure.hxx>
#include <IGESBasic_ToolSubfigureDef.hxx>
// Each Module is attached to a Protocol : it must interprete Case Numbers
// (arguments <CN> of various methods) in accordance to values returned by
// the method TypeNumber from this Protocol
IGESBasic_ReadWriteModule::IGESBasic_ReadWriteModule () { }
Standard_Integer IGESBasic_ReadWriteModule::CaseIGES
(const Standard_Integer typenum, const Standard_Integer formnum) const
{
switch (typenum) {
case 308 : return 16;
case 402 :
switch (formnum) {
case 1 : return 8;
case 7 : return 9;
case 9 : return 14;
case 12 : return 3;
case 14 : return 12;
case 15 : return 13;
default : break;
}
break;
case 406 :
switch (formnum) {
case 10 : return 10;
case 12 : return 7;
case 15 : return 11;
case 23 : return 1;
default : break;
}
break;
case 408 : return 15;
case 416 :
switch (formnum) {
case 0 : return 4;
case 1 : return 2;
case 2 : return 4;
case 3 : return 6;
case 4 : return 5;
default : break;
}
break;
default : break;
}
return 0;
}
void IGESBasic_ReadWriteModule::ReadOwnParams
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESBasic_AssocGroupType,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolAssocGroupType tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 2 : {
DeclareAndCast(IGESBasic_ExternalRefFile,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFile tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 3 : {
DeclareAndCast(IGESBasic_ExternalRefFileIndex,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFileIndex tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 4 : {
DeclareAndCast(IGESBasic_ExternalRefFileName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFileName tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 5 : {
DeclareAndCast(IGESBasic_ExternalRefLibName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefLibName tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 6 : {
DeclareAndCast(IGESBasic_ExternalRefName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefName tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 7 : {
DeclareAndCast(IGESBasic_ExternalReferenceFile,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalReferenceFile tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 8 : {
DeclareAndCast(IGESBasic_Group,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolGroup tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 9 : {
DeclareAndCast(IGESBasic_GroupWithoutBackP,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolGroupWithoutBackP tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 10 : {
DeclareAndCast(IGESBasic_Hierarchy,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolHierarchy tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 11 : {
DeclareAndCast(IGESBasic_Name,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolName tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 12 : {
DeclareAndCast(IGESBasic_OrderedGroup,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolOrderedGroup tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 13 : {
DeclareAndCast(IGESBasic_OrderedGroupWithoutBackP,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolOrderedGroupWithoutBackP tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 14 : {
DeclareAndCast(IGESBasic_SingleParent,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSingleParent tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 15 : {
DeclareAndCast(IGESBasic_SingularSubfigure,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSingularSubfigure tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
case 16 : {
DeclareAndCast(IGESBasic_SubfigureDef,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSubfigureDef tool;
tool.ReadOwnParams(anent,IR,PR);
}
break;
default : break;
}
}
void IGESBasic_ReadWriteModule::WriteOwnParams
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
IGESData_IGESWriter& IW) const
{
switch (CN) {
case 1 : {
DeclareAndCast(IGESBasic_AssocGroupType,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolAssocGroupType tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 2 : {
DeclareAndCast(IGESBasic_ExternalRefFile,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFile tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 3 : {
DeclareAndCast(IGESBasic_ExternalRefFileIndex,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFileIndex tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 4 : {
DeclareAndCast(IGESBasic_ExternalRefFileName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefFileName tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 5 : {
DeclareAndCast(IGESBasic_ExternalRefLibName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefLibName tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 6 : {
DeclareAndCast(IGESBasic_ExternalRefName,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalRefName tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 7 : {
DeclareAndCast(IGESBasic_ExternalReferenceFile,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolExternalReferenceFile tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 8 : {
DeclareAndCast(IGESBasic_Group,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolGroup tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 9 : {
DeclareAndCast(IGESBasic_GroupWithoutBackP,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolGroupWithoutBackP tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 10 : {
DeclareAndCast(IGESBasic_Hierarchy,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolHierarchy tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 11 : {
DeclareAndCast(IGESBasic_Name,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolName tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 12 : {
DeclareAndCast(IGESBasic_OrderedGroup,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolOrderedGroup tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 13 : {
DeclareAndCast(IGESBasic_OrderedGroupWithoutBackP,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolOrderedGroupWithoutBackP tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 14 : {
DeclareAndCast(IGESBasic_SingleParent,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSingleParent tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 15 : {
DeclareAndCast(IGESBasic_SingularSubfigure,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSingularSubfigure tool;
tool.WriteOwnParams(anent,IW);
}
break;
case 16 : {
DeclareAndCast(IGESBasic_SubfigureDef,anent,ent);
if (anent.IsNull()) return;
IGESBasic_ToolSubfigureDef tool;
tool.WriteOwnParams(anent,IW);
}
break;
default : break;
}
}