Files
OCCT/src/IGESSelect/IGESSelect_WorkLibrary.cxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

198 lines
6.5 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <IFSelect_ContextWrite.hxx>
#include <IFSelect_GeneralModifier.hxx>
#include <IGESAppli.hxx>
#include <IGESAppli_Protocol.hxx>
#include <IGESData_FileProtocol.hxx>
#include <IGESData_IGESDumper.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESModel.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IGESData_Protocol.hxx>
#include <IGESDefs.hxx>
#include <IGESFile_Read.hxx>
#include <IGESSelect_Dumper.hxx>
#include <IGESSelect_FileModifier.hxx>
#include <IGESSelect_WorkLibrary.hxx>
#include <IGESSolid.hxx>
#include <IGESSolid_Protocol.hxx>
#include <Interface_Check.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Interface_Macros.hxx>
#include <Interface_Protocol.hxx>
#include <Interface_ReportEntity.hxx>
#include <Message.hxx>
#include <Message_Messenger.hxx>
#include <OSD_OpenFile.hxx>
#include <Standard_ErrorHandler.hxx>
#include <Standard_Stream.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Type.hxx>
#include <TColStd_HSequenceOfInteger.hxx>
#include <errno.h>
IMPLEMENT_STANDARD_RTTIEXT(IGESSelect_WorkLibrary,IFSelect_WorkLibrary)
static int deja = 0;
static Handle(IGESData_FileProtocol) IGESProto;
IGESSelect_WorkLibrary::IGESSelect_WorkLibrary
(const Standard_Boolean modefnes)
: themodefnes (modefnes)
{
IGESSolid::Init();
IGESAppli::Init();
IGESDefs::Init();
if (!deja) {
Handle(IGESSelect_Dumper) sesdump = new IGESSelect_Dumper; // ainsi,cestfait
deja = 1;
}
SetDumpLevels (4,6);
SetDumpHelp (0,"Only DNum");
SetDumpHelp (1,"DNum, IGES Type & Form");
SetDumpHelp (2,"Main Directory Informations");
SetDumpHelp (3,"Complete Directory Part");
SetDumpHelp (4,"Directory + Fields (except list contents)");
SetDumpHelp (5,"Complete (with list contents)");
SetDumpHelp (6,"Complete + Transformed data");
}
Standard_Integer IGESSelect_WorkLibrary::ReadFile
(const Standard_CString name,
Handle(Interface_InterfaceModel)& model,
const Handle(Interface_Protocol)& protocol) const
{
Handle(Message_Messenger) sout = Message::DefaultMessenger();
Handle(IGESData_IGESModel) igesmod = new IGESData_IGESModel;
DeclareAndCast(IGESData_Protocol,prot,protocol);
char* pname=(char*) name;
Standard_Integer status = IGESFile_Read (pname,igesmod,prot);
if (status < 0) sout<<"File not found : "<<name<<endl;
if (status > 0) sout<<"Error when reading file : "<<name<<endl;
if (status == 0) model = igesmod;
else model.Nullify();
return status;
}
Standard_Boolean IGESSelect_WorkLibrary::WriteFile
(IFSelect_ContextWrite& ctx) const
{
Handle(Message_Messenger) sout = Message::DefaultMessenger();
// Preparation
DeclareAndCast(IGESData_IGESModel,igesmod,ctx.Model());
DeclareAndCast(IGESData_Protocol,prot,ctx.Protocol());
if (igesmod.IsNull() || prot.IsNull()) return Standard_False;
ofstream fout;
OSD_OpenStream(fout,ctx.FileName(),ios::out );
if (!fout) {
ctx.CCheck(0)->AddFail("IGES File could not be created");
sout<<" - IGES File could not be created : " << ctx.FileName() << endl; return 0;
}
sout<<" IGES File Name : "<<ctx.FileName();
IGESData_IGESWriter VW(igesmod);
sout<<"("<<igesmod->NbEntities()<<" ents) ";
// File Modifiers
Standard_Integer nbmod = ctx.NbModifiers();
for (Standard_Integer numod = 1; numod <= nbmod; numod ++) {
ctx.SetModifier (numod);
DeclareAndCast(IGESSelect_FileModifier,filemod,ctx.FileModifier());
if (!filemod.IsNull()) filemod->Perform(ctx,VW);
// (impressions de mise au point)
sout << " .. FileMod." << numod <<" "<< filemod->Label();
if (ctx.IsForAll()) sout << " (all model)";
else sout << " (" << ctx.NbEntities() << " entities)";
// sout << flush;
}
// Envoi
VW.SendModel(prot);
sout<<" Write ";
if (themodefnes) VW.WriteMode() = 10;
Standard_Boolean status = VW.Print(fout); sout<<" Done"<<endl;
errno = 0;
fout.close();
status = fout.good() && status && !errno;
if(errno)
sout << strerror(errno) << endl;
return status;
}
Handle(IGESData_Protocol) IGESSelect_WorkLibrary::DefineProtocol ()
{
if (!IGESProto.IsNull()) return IGESProto;
Handle(IGESData_Protocol) IGESProto1 = IGESSolid::Protocol();
Handle(IGESData_Protocol) IGESProto2 = IGESAppli::Protocol();
// Handle(IGESData_FileProtocol) IGESProto = new IGESData_FileProtocol;
IGESProto = new IGESData_FileProtocol;
IGESProto->Add(IGESProto1);
IGESProto->Add(IGESProto2);
return IGESProto;
}
void IGESSelect_WorkLibrary::DumpEntity
(const Handle(Interface_InterfaceModel)& model,
const Handle(Interface_Protocol)& protocol,
const Handle(Standard_Transient)& entity,
const Handle(Message_Messenger)& S, const Standard_Integer level) const
{
DeclareAndCast(IGESData_IGESModel,igesmod,model);
DeclareAndCast(IGESData_Protocol,igespro,protocol);
DeclareAndCast(IGESData_IGESEntity,igesent,entity);
if (igesmod.IsNull() || igespro.IsNull() || igesent.IsNull()) return;
Standard_Integer num = igesmod->Number(igesent);
if (num == 0) return;
S<<" --- Entity "<<num;
Standard_Boolean iserr = model->IsRedefinedContent(num);
Handle(Standard_Transient) con;
if (iserr) con = model->ReportEntity(num)->Content();
if (entity.IsNull()) { S<<" Null"<<endl; return ; }
// On attaque le dump : d abord cas de l Erreur
if (iserr) {
S << " ERRONEOUS, Content, Type cdl : ";
if (!con.IsNull()) S << con->DynamicType()->Name();
else S << "(undefined)" << endl;
igesent = GetCasted(IGESData_IGESEntity,con);
con.Nullify();
Handle(Interface_Check) check = model->ReportEntity(num)->Check();
Interface_CheckIterator chlist;
chlist.Add (check,num);
chlist.Print (S,igesmod,Standard_False);
if (igesent.IsNull()) return;
}
else S << " Type cdl : " << igesent->DynamicType()->Name();
IGESData_IGESDumper dump(igesmod,igespro);
try {
OCC_CATCH_SIGNALS
dump.Dump(igesent,S,level,(level-1)/3);
}
catch (Standard_Failure) {
S << " ** Dump Interrupt **" << endl;
}
}