From d48df25df16e6f63babd2fd226a7a655e9ca16c7 Mon Sep 17 00:00:00 2001 From: rkv Date: Fri, 6 Nov 2015 14:22:16 +0300 Subject: [PATCH] 0026780: Coding rules - eliminate warnings on Linux and Mac Avoid warnings by means of ifdef/ifndef or removing unused code. --- src/Draw/Draw_BasicCommands.cxx | 8 +- src/OSD/OSD_DirectoryIterator.cxx | 17 +- src/OSD/OSD_DirectoryIterator.hxx | 31 +--- src/OSD/OSD_FileIterator.cxx | 16 +- src/OSD/OSD_FileIterator.hxx | 45 ++---- src/OpenGl/OpenGl_Workspace.cxx | 5 - .../Select3D_SensitiveTriangulation.cxx | 6 +- .../Select3D_SensitiveTriangulation.hxx | 1 - src/TopOpeBRepTool/FILES | 1 - .../TopOpeBRepTool_ShapeExplorer.cxx | 153 ------------------ .../TopOpeBRepTool_ShapeExplorer.hxx | 87 +++++----- 11 files changed, 84 insertions(+), 286 deletions(-) delete mode 100644 src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.cxx diff --git a/src/Draw/Draw_BasicCommands.cxx b/src/Draw/Draw_BasicCommands.cxx index 3bf0a18ca1..02c5e9e935 100644 --- a/src/Draw/Draw_BasicCommands.cxx +++ b/src/Draw/Draw_BasicCommands.cxx @@ -411,13 +411,13 @@ static unsigned int __stdcall CpuFunc (void * /*param*/) aCurrent = clock_t(anUserSeconds + aSystemSeconds); anElapCurrent = clock_t(aTimer.ElapsedTime()); - if ((aCurrent - CPU_CURRENT) >= CPU_LIMIT) + if (CPU_LIMIT > 0 && (aCurrent - CPU_CURRENT) >= CPU_LIMIT) { cout << "Process killed by CPU limit (" << CPU_LIMIT << " sec)" << endl; aTimer.Stop(); ExitProcess (2); } - if ((anElapCurrent) >= CPU_LIMIT) + if (CPU_LIMIT > 0 && anElapCurrent >= CPU_LIMIT) { cout << "Process killed by elapsed limit (" << CPU_LIMIT << " sec)" << endl; aTimer.Stop(); @@ -438,9 +438,7 @@ static void *CpuFunc(void* /*threadarg*/) { sleep (5); anElapCurrent = clock_t(aTimer.ElapsedTime()); - if ( CPU_LIMIT < 0 ) - return NULL; - if ((anElapCurrent) >= CPU_LIMIT) { + if (CPU_LIMIT >0 && (anElapCurrent) >= CPU_LIMIT) { cout << "Process killed by elapsed limit (" << CPU_LIMIT << " sec)" << endl; exit(2); } diff --git a/src/OSD/OSD_DirectoryIterator.cxx b/src/OSD/OSD_DirectoryIterator.cxx index b5f1c5d211..104487a0c0 100644 --- a/src/OSD/OSD_DirectoryIterator.cxx +++ b/src/OSD/OSD_DirectoryIterator.cxx @@ -25,15 +25,22 @@ #include #include #include -//const OSD_WhoAmI Iam = OSD_WDirectoryIterator; -OSD_DirectoryIterator::OSD_DirectoryIterator() { - myDescr = NULL ; +OSD_DirectoryIterator::OSD_DirectoryIterator() +: myFlag(0), + myDescr(0), + myEntry(0), + myInit(0) +{ } OSD_DirectoryIterator::OSD_DirectoryIterator(const OSD_Path& where, - const TCollection_AsciiString& Mask){ - myDescr = NULL ; + const TCollection_AsciiString& Mask) +: myFlag(0), + myDescr(0), + myEntry(0), + myInit(0) +{ Initialize(where, Mask) ; } diff --git a/src/OSD/OSD_DirectoryIterator.hxx b/src/OSD/OSD_DirectoryIterator.hxx index 7ada601651..e04bb7e413 100644 --- a/src/OSD/OSD_DirectoryIterator.hxx +++ b/src/OSD/OSD_DirectoryIterator.hxx @@ -84,38 +84,23 @@ public: //! Returns error number if 'Failed' is TRUE. Standard_EXPORT Standard_Integer Error() const; - - - -protected: - - - - - private: - - - OSD_Directory TheIterator; Standard_Integer myFlag; TCollection_AsciiString myMask; TCollection_AsciiString myPlace; - Standard_Address myDescr; - Standard_Address myEntry; - Standard_Integer myInit; OSD_Error myError; + + // platform-specific fields +#ifdef _WIN32 Standard_Address myHandle; Standard_Address myData; Standard_Boolean myFirstCall; - - +#else + Standard_Address myDescr; + Standard_Address myEntry; + Standard_Integer myInit; +#endif }; - - - - - - #endif // _OSD_DirectoryIterator_HeaderFile diff --git a/src/OSD/OSD_FileIterator.cxx b/src/OSD/OSD_FileIterator.cxx index c5b32d9820..b5462671ca 100644 --- a/src/OSD/OSD_FileIterator.cxx +++ b/src/OSD/OSD_FileIterator.cxx @@ -50,13 +50,21 @@ extern char *vmsify PARAMS ((char *name, int type)); //const OSD_WhoAmI Iam = OSD_WFileIterator; -OSD_FileIterator::OSD_FileIterator() { - myDescr = NULL ; +OSD_FileIterator::OSD_FileIterator() +: myFlag(0), + myDescr(0), + myEntry(0), + myInit(0) +{ } OSD_FileIterator::OSD_FileIterator(const OSD_Path& where, - const TCollection_AsciiString& Mask){ - myDescr = NULL ; + const TCollection_AsciiString& Mask) +: myFlag(0), + myDescr(0), + myEntry(0), + myInit(0) +{ Initialize(where, Mask) ; } diff --git a/src/OSD/OSD_FileIterator.hxx b/src/OSD/OSD_FileIterator.hxx index 83f1ab95c5..0c583f8828 100644 --- a/src/OSD/OSD_FileIterator.hxx +++ b/src/OSD/OSD_FileIterator.hxx @@ -17,24 +17,15 @@ #ifndef _OSD_FileIterator_HeaderFile #define _OSD_FileIterator_HeaderFile -#include -#include -#include - #include -#include -#include -#include #include -#include +#include + class OSD_OSDError; class OSD_Path; -class TCollection_AsciiString; class OSD_File; - -//! Manages a breadth-only search for files in the specified -//! Path. +//! Manages a breadth-only search for files in the specified Path. //! There is no specific order of results. class OSD_FileIterator { @@ -84,38 +75,24 @@ public: //! Returns error number if 'Failed' is TRUE. Standard_EXPORT Standard_Integer Error() const; - - - -protected: - - - - - private: - - OSD_File TheIterator; Standard_Integer myFlag; TCollection_AsciiString myMask; TCollection_AsciiString myPlace; - Standard_Address myDescr; - Standard_Address myEntry; - Standard_Integer myInit; OSD_Error myError; + + // platform-specific fields +#ifdef _WIN32 Standard_Address myHandle; Standard_Address myData; Standard_Boolean myFirstCall; - - +#else + Standard_Address myDescr; + Standard_Address myEntry; + Standard_Integer myInit; +#endif }; - - - - - - #endif // _OSD_FileIterator_HeaderFile diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/OpenGl/OpenGl_Workspace.cxx index 03f3ba49fd..b05c7c0c62 100644 --- a/src/OpenGl/OpenGl_Workspace.cxx +++ b/src/OpenGl/OpenGl_Workspace.cxx @@ -54,11 +54,6 @@ namespace static const OpenGl_AspectFace myDefaultAspectFace; static const OpenGl_AspectMarker myDefaultAspectMarker; - static const OpenGl_TextParam myDefaultTextParam = - { - 16, Graphic3d_HTA_LEFT, Graphic3d_VTA_BOTTOM - }; - static const OpenGl_Matrix myDefaultMatrix = { {{ 1.0F, 0.0F, 0.0F, 0.0F }, diff --git a/src/Select3D/Select3D_SensitiveTriangulation.cxx b/src/Select3D/Select3D_SensitiveTriangulation.cxx index 914d3deb0f..7472cae3c1 100644 --- a/src/Select3D/Select3D_SensitiveTriangulation.cxx +++ b/src/Select3D/Select3D_SensitiveTriangulation.cxx @@ -51,8 +51,7 @@ Select3D_SensitiveTriangulation::Select3D_SensitiveTriangulation (const Handle(S const Standard_Boolean theIsInterior) : Select3D_SensitiveSet (theOwnerId), myTriangul (theTrg), - myInitLocation (theInitLoc), - myDetectedTr (-1) + myInitLocation (theInitLoc) { myInvInitLocation = myInitLocation.Transformation().Inverted(); mySensType = theIsInterior ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY; @@ -144,8 +143,7 @@ Select3D_SensitiveTriangulation::Select3D_SensitiveTriangulation (const Handle(S myTriangul (theTrg), myInitLocation (theInitLoc), myCDG3D (theCOG), - myFreeEdges (theFreeEdges), - myDetectedTr (-1) + myFreeEdges (theFreeEdges) { myInvInitLocation = myInitLocation.Transformation().Inverted(); mySensType = theIsInterior ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY; diff --git a/src/Select3D/Select3D_SensitiveTriangulation.hxx b/src/Select3D/Select3D_SensitiveTriangulation.hxx index d2cdcb45c9..f8f8938777 100644 --- a/src/Select3D/Select3D_SensitiveTriangulation.hxx +++ b/src/Select3D/Select3D_SensitiveTriangulation.hxx @@ -141,7 +141,6 @@ private: gp_Pnt myCDG3D; //!< Center of the whole triangulation Handle(TColStd_HArray1OfInteger) myFreeEdges; Standard_Boolean mySensType; //!< Type of sensitivity: boundary or interior - Standard_Integer myDetectedTr; Standard_Integer myPrimitivesNb; //!< Amount of free edges or triangles depending on sensitivity type Handle(TColStd_HArray1OfInteger) myBVHPrimIndexes; //!< Indexes of edges or triangles for BVH build mutable Select3D_BndBox3d myBndBox; //!< Bounding box of the whole triangulation diff --git a/src/TopOpeBRepTool/FILES b/src/TopOpeBRepTool/FILES index f021f16004..fcbfd0a5d3 100755 --- a/src/TopOpeBRepTool/FILES +++ b/src/TopOpeBRepTool/FILES @@ -75,7 +75,6 @@ TopOpeBRepTool_SC.cxx TopOpeBRepTool_SC.hxx TopOpeBRepTool_ShapeClassifier.cxx TopOpeBRepTool_ShapeClassifier.hxx -TopOpeBRepTool_ShapeExplorer.cxx TopOpeBRepTool_ShapeExplorer.hxx TopOpeBRepTool_ShapeTool.cxx TopOpeBRepTool_ShapeTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.cxx b/src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.cxx deleted file mode 100644 index 124909268c..0000000000 --- a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.cxx +++ /dev/null @@ -1,153 +0,0 @@ -// Created on: 1995-07-13 -// Created by: Jean Yves LEBEY -// Copyright (c) 1995-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 -#include -#include -#include -#include - -//======================================================================= -//function : TopOpeBRepTool_ShapeExplorer -//purpose : -//======================================================================= -TopOpeBRepTool_ShapeExplorer::TopOpeBRepTool_ShapeExplorer() : - myIndex(0), - myNbShapes(0) -{ -} - - -//======================================================================= -//function : TopOpeBRepTool_ShapeExplorer -//purpose : -//======================================================================= - -TopOpeBRepTool_ShapeExplorer::TopOpeBRepTool_ShapeExplorer - (const TopoDS_Shape& S, - const TopAbs_ShapeEnum ToFind, - const TopAbs_ShapeEnum ToAvoid) -{ - Init(S,ToFind,ToAvoid); -} - - -//======================================================================= -//function : Init -//purpose : -//======================================================================= - -void TopOpeBRepTool_ShapeExplorer::Init(const TopoDS_Shape& S, - const TopAbs_ShapeEnum ToFind, - const TopAbs_ShapeEnum ToAvoid) -{ - myExplorer.Init(S,ToFind,ToAvoid); - -#ifdef OCCT_DEBUG - myIndex = myNbShapes = 0; - for (;More();Next()) myNbShapes++; - myExplorer.ReInit(); - if (More()) myIndex = 1; -#endif - -} - -//======================================================================= -//function : More -//purpose : -//======================================================================= - -Standard_Boolean TopOpeBRepTool_ShapeExplorer::More()const -{ - Standard_Boolean b = myExplorer.More(); - return b; -} - -//======================================================================= -//function : Next -//purpose : -//======================================================================= - -void TopOpeBRepTool_ShapeExplorer::Next() -{ - myExplorer.Next(); -#ifdef OCCT_DEBUG - myIndex++; -#endif -} - -//======================================================================= -//function : Current -//purpose : -//======================================================================= - -const TopoDS_Shape& TopOpeBRepTool_ShapeExplorer::Current()const -{ - const TopoDS_Shape& S = myExplorer.Current(); - return S; -} - - -//======================================================================= -//function : NbShapes -//purpose : -//======================================================================= - -Standard_Integer TopOpeBRepTool_ShapeExplorer::NbShapes()const -{ - Standard_Integer n = 0; -#ifdef OCCT_DEBUG - n = myNbShapes; -#endif - return n; -} - - -//======================================================================= -//function : Index -//purpose : -//======================================================================= - -Standard_Integer TopOpeBRepTool_ShapeExplorer::Index()const -{ - Standard_Integer n = 0; -#ifdef OCCT_DEBUG - n = myIndex; -#endif - return n; -} - -//======================================================================= -//function : DumpCurrent -//purpose : -//======================================================================= - -Standard_OStream& TopOpeBRepTool_ShapeExplorer::DumpCurrent -(Standard_OStream& OS)const -{ -#ifdef OCCT_DEBUG - if ( More() ) { - const TopoDS_Shape& S = Current(); - TopAbs_ShapeEnum T = S.ShapeType(); - TopAbs_Orientation O = S.Orientation(); - Standard_Integer I = Index(); - TopAbs::Print(T,cout); - cout<<"("< -#include -#include - #include -#include -#include -#include -#include -class TopoDS_Shape; +#include +//! Extends TopExp_Explorer by counting index of current item +//! (for tracing and debug) - -class TopOpeBRepTool_ShapeExplorer +class TopOpeBRepTool_ShapeExplorer : public TopExp_Explorer { public: - DEFINE_STANDARD_ALLOC - - //! Creates an empty explorer, becomes usefull after Init. - Standard_EXPORT TopOpeBRepTool_ShapeExplorer(); + TopOpeBRepTool_ShapeExplorer() : myIndex(0) + { + } //! Creates an Explorer on the Shape . //! @@ -49,50 +41,43 @@ public: //! exploration. If is equal or less //! complex than or if is SHAPE it //! has no effect on the exploration. - Standard_EXPORT TopOpeBRepTool_ShapeExplorer(const TopoDS_Shape& S, const TopAbs_ShapeEnum ToFind, const TopAbs_ShapeEnum ToAvoid = TopAbs_SHAPE); + TopOpeBRepTool_ShapeExplorer(const TopoDS_Shape& S, const TopAbs_ShapeEnum ToFind, const TopAbs_ShapeEnum ToAvoid = TopAbs_SHAPE) + : TopExp_Explorer (S, ToFind, ToAvoid), myIndex(More() ? 1 : 0) + { + } - Standard_EXPORT void Init (const TopoDS_Shape& S, const TopAbs_ShapeEnum ToFind, const TopAbs_ShapeEnum ToAvoid = TopAbs_SHAPE); - - //! Returns True if there are more shapes in the - //! exploration. - Standard_EXPORT Standard_Boolean More() const; + void Init (const TopoDS_Shape& S, const TopAbs_ShapeEnum ToFind, const TopAbs_ShapeEnum ToAvoid = TopAbs_SHAPE) + { + TopExp_Explorer::Init(S,ToFind,ToAvoid); + myIndex = (More() ? 1 : 0); + } //! Moves to the next Shape in the exploration. - Standard_EXPORT void Next(); - - //! Returns the current shape in the exploration. - Standard_EXPORT const TopoDS_Shape& Current() const; - - Standard_EXPORT Standard_Integer NbShapes() const; - - Standard_EXPORT Standard_Integer Index() const; - - Standard_EXPORT Standard_OStream& DumpCurrent (Standard_OStream& OS) const; - - - - -protected: - - + void Next() + { + if (More()) + myIndex++; + TopExp_Explorer::Next(); + } + //! Index of current sub-shape + Standard_Integer Index() const { return myIndex; } + //! Dump info on current shape to stream + Standard_OStream& DumpCurrent (Standard_OStream& OS) const + { + if (More()) + { + TopAbs::Print (Current().ShapeType(), OS); + OS << "(" << Index() << ","; + TopAbs::Print (Current().Orientation(), OS); + OS << ") "; + } + return OS; + } private: - - - - TopExp_Explorer myExplorer; Standard_Integer myIndex; - Standard_Integer myNbShapes; - - }; - - - - - - #endif // _TopOpeBRepTool_ShapeExplorer_HeaderFile