1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025689: IGESCAFControl_Writer crash in constructor.

Cause of bug is that the IGESData_BasicEditor is created before an initialization of IGESControl_Controller::Init(). IGESData_BasicEditor cannot find template "iges", so the model is still empty after creation.

1) Added a default constructor to the IGESData_BasicEditor. Can be initialized via Init() method.
2) Added some null checks in the places, where are provided access to the model (IGESData_BasicEditor's member).
3) Initialization of the IGESData_BasicEditor was placed after initialization if the IGESControl_Controller.
This commit is contained in:
akz 2015-01-26 19:12:41 +03:00 committed by bugmaster
parent b9c1e44004
commit 843e15cd32
3 changed files with 44 additions and 12 deletions

View File

@ -48,11 +48,11 @@
IGESControl_Writer::IGESControl_Writer ()
: theTP (new Transfer_FinderProcess(10000)) ,
thedit (IGESSelect_WorkLibrary::DefineProtocol()) ,
thest (Standard_False)
{
// faudrait aussi (?) prendre les parametres par defaut ... ?
IGESControl_Controller::Init();
thedit.Init(IGESSelect_WorkLibrary::DefineProtocol());
thedit.SetUnitName(Interface_Static::CVal ("write.iges.unit"));
thedit.ApplyUnit();
thecr = Interface_Static::IVal ("write.iges.brep.mode");
@ -62,11 +62,11 @@ IGESControl_Writer::IGESControl_Writer ()
IGESControl_Writer::IGESControl_Writer
(const Standard_CString unit, const Standard_Integer modecr)
: theTP (new Transfer_FinderProcess(10000)) ,
thedit (IGESSelect_WorkLibrary::DefineProtocol()) ,
thecr (modecr) , thest (Standard_False)
{
// faudrait aussi (?) prendre les parametres par defaut ... ?
IGESControl_Controller::Init();
thedit.Init(IGESSelect_WorkLibrary::DefineProtocol());
thedit.SetUnitName(unit);
thedit.ApplyUnit();
themod = thedit.Model();

View File

@ -31,6 +31,9 @@ uses GeneralLib, SpecificLib,
is
Create returns BasicEditor;
---Purpose : Creates an empty Basic Editor which should be initialized via Init() method.
Create (protocol : Protocol from IGESData) returns BasicEditor;
---Purpose : Creates a Basic Editor, with a new IGESModel, ready to run
@ -38,6 +41,12 @@ is
returns BasicEditor;
---Purpose : Creates a Basic Editor for IGES Data, ready to run
Init (me : in out; protocol : Protocol from IGESData);
---Purpose : Initialize a Basic Editor, with a new IGESModel, ready to run
Init (me : in out; model : IGESModel; protocol : Protocol from IGESData);
---Purpose : Initialize a Basic Editor for IGES Data, ready to run
Model (me) returns IGESModel;
---Purpose : Returns the designated model

View File

@ -35,18 +35,36 @@
#include <UnitsMethods.hxx>
IGESData_BasicEditor::IGESData_BasicEditor
IGESData_BasicEditor::IGESData_BasicEditor(const Handle(IGESData_Protocol)& protocol)
{
Init(protocol);
}
(const Handle(IGESData_Protocol)& protocol)
: theunit (Standard_False) , theproto (protocol) ,
themodel (GetCasted(IGESData_IGESModel,Interface_InterfaceModel::Template("iges"))) ,
theglib (protocol) , theslib (protocol) { }
IGESData_BasicEditor::IGESData_BasicEditor
(const Handle(IGESData_IGESModel)& model,
IGESData_BasicEditor::IGESData_BasicEditor(const Handle(IGESData_IGESModel)& model,
const Handle(IGESData_Protocol)& protocol)
: theunit (Standard_False) , theproto (protocol) , themodel (model) ,
theglib (protocol) , theslib (protocol) { }
{
Init(model, protocol);
}
IGESData_BasicEditor::IGESData_BasicEditor() { }
void IGESData_BasicEditor::Init (const Handle(IGESData_Protocol)& protocol)
{
theunit = Standard_False;
theproto = protocol;
themodel = GetCasted(IGESData_IGESModel,Interface_InterfaceModel::Template("iges"));
theglib = protocol;
theslib = protocol;
}
void IGESData_BasicEditor::Init (const Handle(IGESData_IGESModel)& model, const Handle(IGESData_Protocol)& protocol)
{
theunit = Standard_False;
theproto = protocol;
themodel = model;
theglib = protocol;
theslib = protocol;
}
Handle(IGESData_IGESModel) IGESData_BasicEditor::Model () const
{ return themodel; }
@ -56,6 +74,7 @@ IGESData_BasicEditor::IGESData_BasicEditor
Standard_Boolean IGESData_BasicEditor::SetUnitFlag
(const Standard_Integer flag)
{
if (themodel.IsNull()) return Standard_False;
if (flag < 1 || flag > 11) return Standard_False;
IGESData_GlobalSection GS = themodel->GlobalSection();
Handle(TCollection_HAsciiString) name = GS.UnitName();
@ -95,6 +114,7 @@ IGESData_BasicEditor::IGESData_BasicEditor
//=======================================================================
Standard_Boolean IGESData_BasicEditor::SetUnitName (const Standard_CString name)
{
if (themodel.IsNull()) return Standard_False;
Standard_Integer flag = IGESData_BasicEditor::UnitNameFlag (name);
IGESData_GlobalSection GS = themodel->GlobalSection();
if (GS.UnitFlag() == 3) {
@ -110,6 +130,7 @@ Standard_Boolean IGESData_BasicEditor::SetUnitName (const Standard_CString name)
void IGESData_BasicEditor::ApplyUnit (const Standard_Boolean enforce)
{
if (themodel.IsNull()) return;
if (!enforce && !theunit) return;
IGESData_GlobalSection GS = themodel->GlobalSection();
Standard_Real unit = GS.UnitValue();
@ -128,6 +149,7 @@ Standard_Boolean IGESData_BasicEditor::SetUnitName (const Standard_CString name)
void IGESData_BasicEditor::ComputeStatus ()
{
if (themodel.IsNull()) return;
Standard_Integer nb = themodel->NbEntities();
if (nb == 0) return;
TColStd_Array1OfInteger subs (0,nb); subs.Init(0); // gere Subordinate Status
@ -216,6 +238,7 @@ Standard_Boolean IGESData_BasicEditor::SetUnitName (const Standard_CString name)
Standard_Boolean IGESData_BasicEditor::AutoCorrect
(const Handle(IGESData_IGESEntity)& ent)
{
if (themodel.IsNull()) return Standard_False;
Handle(IGESData_IGESEntity) bof, subent;
Handle(IGESData_LineFontEntity) linefont;
Handle(IGESData_LevelListEntity) levelist;