1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/IGESGeom/IGESGeom_ToolBoundedSurface.cxx
abv aa00364da7 0026377: Passing Handle objects as arguments to functions as non-const reference to base type is dangerous
Operator of cast to non-const reference is declared deprecated to produce compiler warning if used (usually implicitly).

OCCT code is updated to avoid that cast, occurring when function accepting non-const reference to handle is called with handle to derived type.
For that, local variable of argument type is passed instead, and down-cast is used to get it to desired type after the call.
A few occurrences of use of uninitialized variable are corrected.
2016-02-20 10:10:11 +03:00

266 lines
9.1 KiB
C++

// Created by: CKY / Contract Toubro-Larsen
// Copyright (c) 1993-1999 Matra Datavision
// 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 <IGESData_DirChecker.hxx>
#include <IGESData_Dump.hxx>
#include <IGESData_IGESDumper.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_Status.hxx>
#include <IGESGeom_Boundary.hxx>
#include <IGESGeom_BoundedSurface.hxx>
#include <IGESGeom_HArray1OfBoundary.hxx>
#include <IGESGeom_ToolBoundedSurface.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Macros.hxx>
#include <Interface_ShareTool.hxx>
#include <Message_Messenger.hxx>
#include <Message_Msg.hxx>
#include <Standard_DomainError.hxx>
// MGE 31/07/98
//=======================================================================
//function : IGESGeom_ToolBoundedSurface
//purpose :
//=======================================================================
IGESGeom_ToolBoundedSurface::IGESGeom_ToolBoundedSurface ()
{
}
//=======================================================================
//function : ReadOwnParams
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::ReadOwnParams(const Handle(IGESGeom_BoundedSurface)& ent,
const Handle(IGESData_IGESReaderData)& IR,
IGESData_ParamReader& PR) const
{
// MGE 31/07/98
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
Standard_Integer num, i;
Standard_Integer tempType;
Handle(IGESData_IGESEntity) tempSurface;
Handle(IGESGeom_HArray1OfBoundary) tempBounds;
IGESData_Status aStatus;
//szv#4:S4163:12Mar99 `st=` not needed
if (!PR.ReadInteger(PR.Current(), tempType)){
Message_Msg Msg165("XTSEP_165");
PR.SendFail(Msg165);
}
if (!PR.ReadEntity(IR, PR.Current(), aStatus, tempSurface)){
Message_Msg Msg166("XTSEP_166");
switch(aStatus) {
case IGESData_ReferenceError: {
Message_Msg Msg216 ("IGES_216");
Msg166.Arg(Msg216.Value());
PR.SendFail(Msg166);
break; }
case IGESData_EntityError: {
Message_Msg Msg217 ("IGES_217");
Msg166.Arg(Msg217.Value());
PR.SendFail(Msg166);
break; }
default:{
}
}
}
//st = PR.ReadInteger(PR.Current(), Msg167, num); //szv#4:S4163:12Mar99 moved in if
/*
st = PR.ReadInteger(PR.Current(), "Bounded Surface Representation Type", tempType);
st = PR.ReadEntity(IR, PR.Current(), "Surface to be Bounded", tempSurface);
st = PR.ReadInteger(PR.Current(), "Number Of Boundary Entities", num);
*/
//szv#4:S4163:12Mar99 optimized
//if (st && num > 0) tempBounds = new IGESGeom_HArray1OfBoundary(1, num);
//if (st && num <= 0) PR.SendFail(Msg167);
if (PR.ReadInteger(PR.Current(), num) && (num > 0)) {
tempBounds = new IGESGeom_HArray1OfBoundary(1, num);
}
else{
Message_Msg Msg167("XTSEP_167");
PR.SendFail(Msg167);
}
if (!tempBounds.IsNull()){
for ( i = 1; i <= num; i++ )
{
Handle(IGESData_IGESEntity) tempEnt;
//st = PR.ReadEntity(IR, PR.Current(), Msg168, tempEnt); //szv#4:S4163:12Mar99 moved in if
//st = PR.ReadEntity(IR, PR.Current(), "Boundary Entities", tempEnt);
if (PR.ReadEntity(IR, PR.Current(), aStatus, tempEnt))
tempBounds->SetValue(i, Handle(IGESGeom_Boundary)::DownCast (tempEnt));
else{
Message_Msg Msg168("XTSEP_168");
switch(aStatus) {
case IGESData_ReferenceError: {
Message_Msg Msg216 ("IGES_216");
Msg168.Arg(Msg216.Value());
PR.SendFail(Msg168);
break; }
case IGESData_EntityError: {
Message_Msg Msg217 ("IGES_217");
Msg168.Arg(Msg217.Value());
PR.SendFail(Msg168);
break; }
default:{
}
}
}
}
}
//sln 28.09.2001, BUC61004, If(tempBounds.IsNull()) function ent->Init is not called in order to avoid exception
if(!tempBounds.IsNull())
{
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init(tempType, tempSurface, tempBounds);
}
}
//=======================================================================
//function : WriteOwnParams
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::WriteOwnParams(const Handle(IGESGeom_BoundedSurface)& ent,
IGESData_IGESWriter& IW) const
{
Standard_Integer i, num;
IW.Send(ent->RepresentationType());
IW.Send(ent->Surface());
IW.Send(ent->NbBoundaries());
for ( num = ent->NbBoundaries(), i = 1; i <= num; i++ )
IW.Send(ent->Boundary(i));
}
//=======================================================================
//function : OwnShared
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::OwnShared(const Handle(IGESGeom_BoundedSurface)& ent,
Interface_EntityIterator& iter) const
{
Standard_Integer i, num;
iter.GetOneItem(ent->Surface());
for ( num = ent->NbBoundaries(), i = 1; i <= num; i++ )
iter.GetOneItem(ent->Boundary(i));
}
//=======================================================================
//function : OwnCopy
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::OwnCopy(const Handle(IGESGeom_BoundedSurface)& another,
const Handle(IGESGeom_BoundedSurface)& ent,
Interface_CopyTool& TC) const
{
Standard_Integer i, num;
Standard_Integer tempType = another->RepresentationType();
DeclareAndCast(IGESData_IGESEntity, tempSurface,
TC.Transferred(another->Surface()));
num = another->NbBoundaries();
Handle(IGESGeom_HArray1OfBoundary) tempBounds;
if (num > 0) tempBounds = new IGESGeom_HArray1OfBoundary(1, num);
for (i = 1; i <= num; i++)
{
DeclareAndCast(IGESGeom_Boundary, tempBoundary,
TC.Transferred(another->Boundary(i)));
tempBounds->SetValue(i, tempBoundary);
}
ent->Init(tempType, tempSurface, tempBounds);
}
//=======================================================================
//function : DirChecker
//purpose :
//=======================================================================
IGESData_DirChecker IGESGeom_ToolBoundedSurface::DirChecker
(const Handle(IGESGeom_BoundedSurface)& /* ent */ ) const
{
IGESData_DirChecker DC(143,0);
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.LineFont(IGESData_DefAny);
// DC.LineWeight(IGESData_DefValue);
DC.Color(IGESData_DefAny);
DC.UseFlagRequired(0);
DC.HierarchyStatusIgnored();
return DC;
}
//=======================================================================
//function : OwnCheck
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::OwnCheck(const Handle(IGESGeom_BoundedSurface)& ent,
const Interface_ShareTool&,
Handle(Interface_Check)& ach) const
{
// MGE 31/07/98
// Building of messages
//========================================
//Message_Msg Msg165("XTSEP_165");
//========================================
if ((ent->RepresentationType() != 0) && (ent->RepresentationType() != 1)) {
Message_Msg Msg165("XTSEP_165");
ach->SendFail(Msg165);
}
}
//=======================================================================
//function : OwnDump
//purpose :
//=======================================================================
void IGESGeom_ToolBoundedSurface::OwnDump(const Handle(IGESGeom_BoundedSurface)& ent,
const IGESData_IGESDumper& dumper,
const Handle(Message_Messenger)& S,
const Standard_Integer level) const
{
Standard_Integer sublevel = (level > 4) ? 1 : 0;
S << "IGESGeom_BoundedSurface" << endl;
S << "Representation Type : " << ent->RepresentationType() << endl;
S << "Surface to be Bounded : ";
dumper.Dump(ent->Surface(),S, sublevel);
S << endl;
S << "Boundary Entities : ";
IGESData_DumpEntities(S,dumper ,level,1, ent->NbBoundaries(),ent->Boundary);
S << endl;
}