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

0023042: Potential mistakes in (s)printf usage

Use PRIuPTR macros for Standard_Size values in printf.
Use STL streams instead of printf when reasonable.
This commit is contained in:
omy 2013-07-12 12:25:44 +04:00
parent bda8360543
commit 64531d9c98
12 changed files with 346 additions and 322 deletions

View File

@ -88,49 +88,36 @@ static Standard_Integer bhaspc (Draw_Interpretor& , Standard_Integer , con
//function : bclassify //function : bclassify
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Integer bclassify (Draw_Interpretor& aDI, Standard_Integer bclassify (Draw_Interpretor& theDI,
Standard_Integer n, Standard_Integer theArgNb,
const char** a) const char** theArgVec)
{ {
char sbf[512]; if (theArgNb < 3)
{
if (n < 3) { theDI << " Use >bclassify Solid Point [Tolerance=1.e-7]\n";
Sprintf(sbf, " Use >bclassify Solid Point [Tolerance=1.e-7]\n");
aDI<<sbf;
return 1; return 1;
} }
TopoDS_Shape aS = DBRep::Get(a[1]); TopoDS_Shape aS = DBRep::Get (theArgVec[1]);
if (aS.IsNull()) { if (aS.IsNull())
Sprintf(sbf, " Null Shape is not allowed here\n"); {
aDI<<sbf; theDI << " Null Shape is not allowed here\n";
return 1; return 1;
} }
else if (aS.ShapeType() != TopAbs_SOLID)
if (aS.ShapeType()!=TopAbs_SOLID) { {
Sprintf(sbf, " Shape type must be SOLID\n"); theDI << " Shape type must be SOLID\n";
aDI<<sbf;
return 1; return 1;
} }
//
Standard_Real aTol=1.e-7; gp_Pnt aP (8., 9., 10.);
TopAbs_State aState = TopAbs_UNKNOWN; DrawTrSurf::GetPoint (theArgVec[2], aP);
gp_Pnt aP(8., 9., 10.); const Standard_Real aTol = (theArgNb == 4) ? Draw::Atof (theArgVec[3]) : 1.e-7; //Precision::Confusion();
DrawTrSurf::GetPoint(a[2], aP); BRepClass3d_SolidClassifier aSC (aS);
aSC.Perform (aP,aTol);
aTol=1.e-7;
if (n==4) { PrintState (theDI, aSC.State());
aTol=Draw::Atof(a[3]);
}
//
BRepClass3d_SolidClassifier aSC(aS);
aSC.Perform(aP,aTol);
//
aState = aSC.State();
//
PrintState (aDI, aState);
//
return 0; return 0;
} }
// //
@ -138,50 +125,37 @@ Standard_Integer bclassify (Draw_Interpretor& aDI,
//function : b2dclassify //function : b2dclassify
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Integer b2dclassify (Draw_Interpretor& aDI, Standard_Integer b2dclassify (Draw_Interpretor& theDI,
Standard_Integer n, Standard_Integer theArgNb,
const char** a) const char** theArgVec)
{ {
char sbf[512]; if (theArgNb < 3)
{
if (n < 3) { theDI << " Use >bclassify Face Point2d [Tol2D=Tol(Face)]\n";
Sprintf(sbf, " Use >bclassify Face Point2d [Tol2D=Tol(Face)]\n");
aDI<<sbf;
return 1; return 1;
} }
TopoDS_Shape aS = DBRep::Get(a[1]); TopoDS_Shape aS = DBRep::Get (theArgVec[1]);
if (aS.IsNull()) { if (aS.IsNull())
Sprintf(sbf, " Null Shape is not allowed here\n"); {
aDI<<sbf; theDI << " Null Shape is not allowed here\n";
return 1; return 1;
} }
else if (aS.ShapeType() != TopAbs_FACE)
if (aS.ShapeType()!=TopAbs_FACE) { {
Sprintf(sbf, " Shape type must be FACE\n"); theDI << " Shape type must be FACE\n";
aDI<<sbf;
return 1; return 1;
} }
//
Standard_Real aTol; gp_Pnt2d aP (8., 9.);
TopAbs_State aState = TopAbs_UNKNOWN; DrawTrSurf::GetPoint2d (theArgVec[2], aP);
gp_Pnt2d aP(8., 9.); const TopoDS_Face& aF = TopoDS::Face(aS);
const Standard_Real aTol = (theArgNb == 4) ? Draw::Atof (theArgVec[3]) : BRep_Tool::Tolerance (aF);
DrawTrSurf::GetPoint2d(a[2], aP);
const TopoDS_Face& aF=TopoDS::Face(aS);
aTol=BRep_Tool::Tolerance(aF);
if (n==4) {
aTol=Draw::Atof(a[3]);
}
//
BRepClass_FaceClassifier aClassifier; BRepClass_FaceClassifier aClassifier;
aClassifier.Perform(aF, aP, aTol); aClassifier.Perform(aF, aP, aTol);
//
aState = aClassifier.State(); PrintState (theDI, aClassifier.State());
//
PrintState (aDI, aState);
//
return 0; return 0;
} }
@ -232,38 +206,19 @@ Standard_Integer bhaspc (Draw_Interpretor& di, Standard_Integer n, const char**
//======================================================================= //=======================================================================
//function : PrintState //function : PrintState
//purpose : //purpose :
//======================================================================= //=======================================================================
void PrintState (Draw_Interpretor& aDI, void PrintState (Draw_Interpretor& theDI,
const TopAbs_State& aState) const TopAbs_State& theState)
{ {
char sbf[512]; switch (theState)
TCollection_AsciiString sIN("IN"), sOUT("OUT of"), sON("ON"), sUNKNOWN("UNKNOWN"); {
// case TopAbs_IN: theDI << "The point is IN shape\n"; return;
Sprintf(sbf, "The point is "); aDI<<sbf; case TopAbs_OUT: theDI << "The point is OUT of shape\n"; return;
// case TopAbs_ON: theDI << "The point is ON shape\n"; return;
switch (aState) { case TopAbs_UNKNOWN:
case TopAbs_IN: default: theDI << "The point is UNKNOWN shape\n"; return;
Sprintf(sbf, sIN.ToCString());
break;
case TopAbs_OUT:
Sprintf(sbf, sOUT.ToCString());
break;
case TopAbs_ON:
Sprintf(sbf, sON.ToCString());
break;
case TopAbs_UNKNOWN:
Sprintf(sbf, sUNKNOWN.ToCString());
break;
default:
Sprintf(sbf, sUNKNOWN.ToCString());
break;
} }
aDI<<sbf;
//
Sprintf(sbf, " shape\n");
aDI<<sbf;
} }
//======================================================================= //=======================================================================
@ -316,4 +271,3 @@ Handle(Geom2d_Curve) CurveOnSurface(const TopoDS_Edge& E,
} }
return nullPCurve; return nullPCurve;
} }

View File

@ -239,7 +239,7 @@ static TCollection_AsciiString nulword;
for (;;) { for (;;) {
char ligne[100]; char ligne[100];
if (!lefic) printf (theprompt.ToCString()); if (!lefic) std::cout << theprompt.ToCString();
ligne[0] = '\0'; ligne[0] = '\0';
fgets(ligne,100,fic); fgets(ligne,100,fic);
if (feof(fic)) break; if (feof(fic)) break;

View File

@ -24,6 +24,8 @@
#include <NCollection_Map.hxx> #include <NCollection_Map.hxx>
#include <NCollection_List.hxx> #include <NCollection_List.hxx>
#include <Standard_Mutex.hxx> #include <Standard_Mutex.hxx>
#include <fstream>
#include <iomanip>
IMPLEMENT_STANDARD_HANDLE(NCollection_BaseAllocator,MMgt_TShared) IMPLEMENT_STANDARD_HANDLE(NCollection_BaseAllocator,MMgt_TShared)
IMPLEMENT_STANDARD_RTTIEXT(NCollection_BaseAllocator,MMgt_TShared) IMPLEMENT_STANDARD_RTTIEXT(NCollection_BaseAllocator,MMgt_TShared)
@ -254,35 +256,55 @@ void NCollection_BaseAllocator::PrintMemUsageStatistics()
} }
Standard_Size aTotAlloc = 0; Standard_Size aTotAlloc = 0;
Standard_Size aTotLeft = 0; Standard_Size aTotLeft = 0;
// print // print
FILE * ff = fopen("memstat.d", "wt"); std::ofstream aFileOut ("memstat.d", std::ios_base::trunc | std::ios_base::out);
if (ff == NULL) if (!aFileOut.is_open())
{ {
cout << "failure writing file memstat.d" << endl; std::cout << "failure writing file memstat.d" << std::endl;
return; return;
} }
fprintf(ff, "%12s %12s %12s %12s %12s\n", aFileOut.imbue (std::locale ("C"));
"BlockSize", "NbAllocated", "NbLeft", "Allocated", "Left");
// header
aFileOut << std::setw(20) << "BlockSize" << ' '
<< std::setw(12) << "NbAllocated" << ' '
<< std::setw(12) << "NbLeft" << ' '
<< std::setw(20) << "Allocated" << ' '
<< std::setw(20) << "Left" << '\n';
// body
for (itLst.Init(aColl); itLst.More(); itLst.Next()) for (itLst.Init(aColl); itLst.More(); itLst.Next())
{ {
const StorageInfo& aInfo = itLst.Value(); const StorageInfo& aInfo = itLst.Value();
Standard_Integer nbLeft = aInfo.nbAlloc - aInfo.nbFree; Standard_Integer nbLeft = aInfo.nbAlloc - aInfo.nbFree;
Standard_Size aSizeAlloc = aInfo.nbAlloc * aInfo.roundSize; Standard_Size aSizeAlloc = aInfo.nbAlloc * aInfo.roundSize;
Standard_Size aSizeLeft = nbLeft * aInfo.roundSize; Standard_Size aSizeLeft = nbLeft * aInfo.roundSize;
fprintf(ff, "%12d %12d %12d %12d %12d\n", aInfo.roundSize,
aInfo.nbAlloc, nbLeft, aSizeAlloc, aSizeLeft); aFileOut << std::setw(20) << aInfo.roundSize << ' '
<< std::setw(12) << aInfo.nbAlloc << ' '
<< std::setw(12) << nbLeft << ' '
<< std::setw(20) << aSizeAlloc << ' '
<< std::setw(20) << aSizeLeft << '\n';
aTotAlloc += aSizeAlloc; aTotAlloc += aSizeAlloc;
aTotLeft += aSizeLeft; aTotLeft += aSizeLeft;
} }
fprintf(ff, "%12s %12s %12s %12d %12d\n", "Total:", "", "",
aTotAlloc, aTotLeft); // footer
aFileOut << std::setw(20) << "Total:" << ' '
<< std::setw(12) << "" << ' '
<< std::setw(12) << "" << ' '
<< std::setw(20) << aTotAlloc << ' '
<< std::setw(20) << aTotLeft << '\n';
if (!StorageIDSet().IsEmpty()) if (!StorageIDSet().IsEmpty())
{ {
fprintf(ff, "Alive allocation numbers of size=%d\n", StandardCallBack_CatchSize()); aFileOut << "Alive allocation numbers of size=" << StandardCallBack_CatchSize() << '\n';
NCollection_Map<Standard_Size>::Iterator itMap1(StorageIDSet()); for (NCollection_Map<Standard_Size>::Iterator itMap1(StorageIDSet()); itMap1.More(); itMap1.Next())
for (; itMap1.More(); itMap1.Next()) {
fprintf(ff, "%d\n", itMap1.Key()); aFileOut << itMap1.Key() << '\n';
}
} }
fclose(ff); aFileOut.close();
} }

View File

@ -17,8 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <NCollection_HeapAllocator.hxx> #include <NCollection_HeapAllocator.hxx>
#include <Standard_OutOfMemory.hxx> #include <Standard_OutOfMemory.hxx>
#include <Standard_Mutex.hxx> #include <Standard_Mutex.hxx>
@ -35,13 +33,14 @@ void * NCollection_HeapAllocator::Allocate (const Standard_Size theSize)
{ {
// the size is rounded up to word size. // the size is rounded up to word size.
const Standard_Size aRoundSize = (theSize + 3) & ~0x3; const Standard_Size aRoundSize = (theSize + 3) & ~0x3;
void * pResult = malloc(aRoundSize); void* aResult = malloc (aRoundSize);
if (!pResult) { if (aResult == NULL)
char buf[128]; {
sprintf (buf, "Failed to allocate %d bytes in global dynamic heap",theSize); char aBuffer[96];
Standard_OutOfMemory::Raise(&buf[0]); Sprintf (aBuffer, "Failed to allocate %" PRIuPTR " bytes in global dynamic heap", theSize);
Standard_OutOfMemory::Raise (aBuffer);
} }
return pResult; return aResult;
} }
//======================================================================= //=======================================================================

View File

@ -17,13 +17,14 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <NCollection_IncAllocator.hxx> #include <NCollection_IncAllocator.hxx>
#include <NCollection_DataMap.hxx> #include <NCollection_DataMap.hxx>
#include <NCollection_Map.hxx> #include <NCollection_Map.hxx>
#include <Standard_Mutex.hxx> #include <Standard_Mutex.hxx>
#include <Standard_OutOfMemory.hxx> #include <Standard_OutOfMemory.hxx>
#include <stdio.h> #include <stdio.h>
#include <fstream>
#include <iomanip>
IMPLEMENT_STANDARD_HANDLE (NCollection_IncAllocator,NCollection_BaseAllocator) IMPLEMENT_STANDARD_HANDLE (NCollection_IncAllocator,NCollection_BaseAllocator)
IMPLEMENT_STANDARD_RTTIEXT (NCollection_IncAllocator,NCollection_BaseAllocator) IMPLEMENT_STANDARD_RTTIEXT (NCollection_IncAllocator,NCollection_BaseAllocator)
@ -134,34 +135,40 @@ static void Debug_Destroy(Standard_Address theAlloc)
Standard_EXPORT void IncAllocator_PrintAlive() Standard_EXPORT void IncAllocator_PrintAlive()
{ {
if (!StorageIDSet().IsEmpty()) if (StorageIDSet().IsEmpty())
{ {
FILE * ff = fopen("inc_alive.d", "wt"); return;
if (ff == NULL)
{
cout << "failure writing file inc_alive.d" << endl;
}
else
{
fprintf(ff, "Alive IncAllocators (number, size in Kb)\n");
NCollection_DataMap<Standard_Address, Standard_Size>::Iterator
itMap(StorageIDMap());
Standard_Size aTotSize = 0;
Standard_Integer nbAlloc = 0;
for (; itMap.More(); itMap.Next())
{
NCollection_IncAllocator* anAlloc =
static_cast<NCollection_IncAllocator*>(itMap.Key());
Standard_Size anID = itMap.Value();
Standard_Size aSize = anAlloc->GetMemSize();
aTotSize += aSize;
nbAlloc++;
fprintf(ff, "%-8d %8.1f\n", anID, double(aSize)/1024);
}
fprintf(ff, "Total:\n%-8d %8.1f\n", nbAlloc, double(aTotSize)/1024);
fclose(ff);
}
} }
std::ofstream aFileOut ("inc_alive.d", std::ios_base::trunc | std::ios_base::out);
if (!aFileOut.is_open())
{
std::cout << "failure writing file inc_alive.d" << std::endl;
return;
}
aFileOut.imbue (std::locale ("C"));
aFileOut << std::fixed << std::setprecision(1);
aFileOut << "Alive IncAllocators (number, size in Kb)\n";
Standard_Size aTotSize = 0;
Standard_Integer nbAlloc = 0;
for (NCollection_DataMap<Standard_Address, Standard_Size>::Iterator itMap (StorageIDMap());
itMap.More(); itMap.Next())
{
const NCollection_IncAllocator* anAlloc = static_cast<NCollection_IncAllocator*>(itMap.Key());
Standard_Size anID = itMap.Value();
Standard_Size aSize = anAlloc->GetMemSize();
aTotSize += aSize;
nbAlloc++;
aFileOut << std::setw(20) << anID << ' '
<< std::setw(20) << (double(aSize) / 1024.0)
<< '\n';
}
aFileOut << "Total:\n"
<< std::setw(20) << nbAlloc << ' '
<< std::setw(20) << (double(aTotSize) / 1024.0)
<< '\n';
aFileOut.close();
} }
//======================================================================= //=======================================================================

View File

@ -17,8 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#ifndef NCollection_IncAllocator_HeaderFile #ifndef NCollection_IncAllocator_HeaderFile
#define NCollection_IncAllocator_HeaderFile #define NCollection_IncAllocator_HeaderFile
@ -123,5 +121,4 @@ class NCollection_IncAllocator : public NCollection_BaseAllocator
// Definition of HANDLE object using Standard_DefineHandle.hxx // Definition of HANDLE object using Standard_DefineHandle.hxx
DEFINE_STANDARD_HANDLE (NCollection_IncAllocator, NCollection_BaseAllocator) DEFINE_STANDARD_HANDLE (NCollection_IncAllocator, NCollection_BaseAllocator)
#endif #endif

View File

@ -17,7 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <OSD_MAllocHook.hxx> #include <OSD_MAllocHook.hxx>
#ifndef WNT #ifndef WNT
@ -30,6 +29,7 @@
#include <set> #include <set>
#include <map> #include <map>
#include <cstdlib> #include <cstdlib>
#include <iomanip>
#ifndef SIZE_MAX #ifndef SIZE_MAX
#define SIZE_MAX UINT_MAX #define SIZE_MAX UINT_MAX
@ -175,9 +175,9 @@ void OSD_MAllocHook::SetCallback(Callback* theCB)
//======================================================================= //=======================================================================
OSD_MAllocHook::LogFileHandler::LogFileHandler() OSD_MAllocHook::LogFileHandler::LogFileHandler()
: myLogFile(NULL), : myBreakSize(0)
myBreakSize(0)
{ {
myLogFile.imbue (std::locale ("C"));
} }
//======================================================================= //=======================================================================
@ -198,13 +198,15 @@ OSD_MAllocHook::LogFileHandler::~LogFileHandler()
Standard_Boolean OSD_MAllocHook::LogFileHandler::Open(const char* theFileName) Standard_Boolean OSD_MAllocHook::LogFileHandler::Open(const char* theFileName)
{ {
Close(); Close();
myLogFile = fopen(theFileName, "w"); myLogFile.open (theFileName);
if (myLogFile != NULL) if (!myLogFile.is_open())
{ {
fputs("Operation type; Request Number; Block Size\n", myLogFile); return Standard_False;
fputs("------------------------------------------\n", myLogFile);
} }
return myLogFile != NULL;
myLogFile << "Operation type; Request Number; Block Size\n"
"------------------------------------------\n";
return Standard_True;
} }
//======================================================================= //=======================================================================
@ -214,10 +216,9 @@ Standard_Boolean OSD_MAllocHook::LogFileHandler::Open(const char* theFileName)
void OSD_MAllocHook::LogFileHandler::Close() void OSD_MAllocHook::LogFileHandler::Close()
{ {
if (myLogFile != NULL) if (myLogFile.is_open())
{ {
fclose(myLogFile); myLogFile.close();
myLogFile = NULL;
} }
} }
@ -342,12 +343,21 @@ Standard_Boolean OSD_MAllocHook::LogFileHandler::MakeReport
fclose(aLogFile); fclose(aLogFile);
// print the report // print the report
FILE* aRepFile = fopen(theOutFile, "w"); std::ofstream aRepFile (theOutFile);
if (aRepFile == NULL) if(!aRepFile.is_open())
{
return Standard_False; return Standard_False;
fprintf(aRepFile, "%10s %10s %10s %10s %10s %10s %10s\n", }
"BlockSize", "NbAlloc", "NbLeft", "NbLeftPeak", aRepFile.imbue (std::locale ("C"));
"AllocSize", "LeftSize", "PeakSize");
aRepFile << std::setw(20) << "BlockSize "
<< std::setw(10) << "NbAlloc "
<< std::setw(10) << "NbLeft "
<< std::setw(10) << "NbLeftPeak "
<< std::setw(20) << "AllocSize "
<< std::setw(20) << "LeftSize "
<< std::setw(20) << "PeakSize " << std::endl;
Standard_Size aTotAlloc = 0; Standard_Size aTotAlloc = 0;
for (std::set<StorageInfo>::const_iterator it = aStMap.begin(); for (std::set<StorageInfo>::const_iterator it = aStMap.begin();
it != aStMap.end(); ++it) it != aStMap.end(); ++it)
@ -357,9 +367,15 @@ Standard_Boolean OSD_MAllocHook::LogFileHandler::MakeReport
Standard_Size aSizeAlloc = aInfo.nbAlloc * aInfo.size; Standard_Size aSizeAlloc = aInfo.nbAlloc * aInfo.size;
Standard_Size aSizeLeft = nbLeft * aInfo.size; Standard_Size aSizeLeft = nbLeft * aInfo.size;
Standard_Size aSizePeak = aInfo.nbLeftPeak * aInfo.size; Standard_Size aSizePeak = aInfo.nbLeftPeak * aInfo.size;
fprintf(aRepFile, "%10d %10d %10d %10d %10Iu %10Iu %10Iu\n", aInfo.size,
aInfo.nbAlloc, nbLeft, aInfo.nbLeftPeak, aRepFile << std::setw(20) << aInfo.size << ' '
aSizeAlloc, aSizeLeft, aSizePeak); << std::setw(10) << aInfo.nbAlloc << ' '
<< std::setw(10) << nbLeft << ' '
<< std::setw(10) << aInfo.nbLeftPeak << ' '
<< std::setw(20) << aSizeAlloc << ' '
<< std::setw(20) << aSizeLeft << ' '
<< std::setw(20) << aSizePeak << std::endl;
if (aTotAlloc + aSizeAlloc < aTotAlloc) // overflow ? if (aTotAlloc + aSizeAlloc < aTotAlloc) // overflow ?
aTotAlloc = SIZE_MAX; aTotAlloc = SIZE_MAX;
else else
@ -368,13 +384,19 @@ Standard_Boolean OSD_MAllocHook::LogFileHandler::MakeReport
{ {
for (std::set<unsigned long>::const_iterator it1 = aInfo.alive->begin(); for (std::set<unsigned long>::const_iterator it1 = aInfo.alive->begin();
it1 != aInfo.alive->end(); ++it1) it1 != aInfo.alive->end(); ++it1)
fprintf(aRepFile, "%10lu\n", *it1); aRepFile << std::setw(10) << *it1;
} }
} }
fprintf(aRepFile, "%10s %10s %10s %10s%c%10Iu %10Iu %10Iu\n", "Total:", aRepFile << std::setw(20) << "Total:"
"", "", "", (aTotAlloc == SIZE_MAX ? '>' : ' '), aTotAlloc, << std::setw(10) << "" << ' '
aTotalLeftSize, aTotalPeakSize); << std::setw(10) << "" << ' '
fclose(aRepFile); << std::setw(10) << "" << ' '
<< (aTotAlloc == SIZE_MAX ? '>' : ' ')
<< std::setw(20) << aTotAlloc << ' '
<< std::setw(20) << aTotalLeftSize << ' '
<< std::setw(20) << aTotalPeakSize << std::endl;
aRepFile.close();
return Standard_True; return Standard_True;
} }
@ -387,10 +409,11 @@ void OSD_MAllocHook::LogFileHandler::AllocEvent
(size_t theSize, (size_t theSize,
long theRequestNum) long theRequestNum)
{ {
if (myLogFile != NULL) if (myLogFile.is_open())
{ {
myMutex.Lock(); myMutex.Lock();
fprintf(myLogFile, "alloc %10lu %10u\n", theRequestNum, theSize); myLogFile << "alloc "<< std::setw(10) << theRequestNum
<< std::setw(20) << theSize << std::endl;
myMutex.Unlock(); myMutex.Unlock();
if (myBreakSize == theSize) if (myBreakSize == theSize)
{ {
@ -409,10 +432,11 @@ void OSD_MAllocHook::LogFileHandler::FreeEvent
size_t theSize, size_t theSize,
long theRequestNum) long theRequestNum)
{ {
if (myLogFile != NULL) if (myLogFile.is_open())
{ {
myMutex.Lock(); myMutex.Lock();
fprintf(myLogFile, "free %10lu %10u\n", theRequestNum, theSize); myLogFile << "free " << std::setw(20) << theRequestNum
<< std::setw(20) << theSize << std::endl;
myMutex.Unlock(); myMutex.Unlock();
} }
} }
@ -477,12 +501,20 @@ void OSD_MAllocHook::CollectBySize::Reset()
Standard_Boolean OSD_MAllocHook::CollectBySize::MakeReport(const char* theOutFile) Standard_Boolean OSD_MAllocHook::CollectBySize::MakeReport(const char* theOutFile)
{ {
// print the report // print the report
FILE* aRepFile = fopen(theOutFile, "w"); std::ofstream aRepFile(theOutFile);
if (aRepFile == NULL) if (!aRepFile.is_open())
return Standard_False; return Standard_False;
fprintf(aRepFile, "%10s %10s %10s %10s %10s %10s %10s\n", std::locale aCLoc("C");
"BlockSize", "NbAlloc", "NbLeft", "NbLeftPeak", aRepFile.imbue(aCLoc);
"AllocSize", "LeftSize", "PeakSize");
aRepFile << std::setw(10) << "BlockSize "
<< std::setw(10) << "NbAlloc "
<< std::setw(10) << "NbLeft "
<< std::setw(10) << "NbLeftPeak "
<< std::setw(20) << "AllocSize "
<< std::setw(20) << "LeftSize "
<< std::setw(20) << "PeakSize " << std::endl;
Standard_Size aTotAlloc = 0; Standard_Size aTotAlloc = 0;
for (int i = 0; i < MAX_ALLOC_SIZE; i++) for (int i = 0; i < MAX_ALLOC_SIZE; i++)
{ {
@ -493,19 +525,30 @@ Standard_Boolean OSD_MAllocHook::CollectBySize::MakeReport(const char* theOutFil
Standard_Size aSizeAlloc = myArray[i].nbAlloc * aSize; Standard_Size aSizeAlloc = myArray[i].nbAlloc * aSize;
ptrdiff_t aSizeLeft = nbLeft * aSize; ptrdiff_t aSizeLeft = nbLeft * aSize;
Standard_Size aSizePeak = myArray[i].nbLeftPeak * aSize; Standard_Size aSizePeak = myArray[i].nbLeftPeak * aSize;
fprintf(aRepFile, "%10d %10d %10d %10d %10Iu %10Id %10Iu\n", aSize,
myArray[i].nbAlloc, nbLeft, myArray[i].nbLeftPeak, aRepFile << std::setw(10) << aSize << ' '
aSizeAlloc, aSizeLeft, aSizePeak); << std::setw(10) << myArray[i].nbAlloc << ' '
<< std::setw(10) << nbLeft << ' '
<< std::setw(10) << myArray[i].nbLeftPeak << ' '
<< std::setw(20) << aSizeAlloc << ' '
<< std::setw(20) << aSizeLeft << ' '
<< std::setw(20) << aSizePeak << std::endl;
if (aTotAlloc + aSizeAlloc < aTotAlloc) // overflow ? if (aTotAlloc + aSizeAlloc < aTotAlloc) // overflow ?
aTotAlloc = SIZE_MAX; aTotAlloc = SIZE_MAX;
else else
aTotAlloc += aSizeAlloc; aTotAlloc += aSizeAlloc;
} }
} }
fprintf(aRepFile, "%10s %10s %10s %10s%c%10Iu %10Id %10Iu\n", "Total:", aRepFile << std::setw(10) << "Total:" << ' '
"", "", "", (aTotAlloc == SIZE_MAX ? '>' : ' '), aTotAlloc, << std::setw(10) << "" << ' '
myTotalLeftSize, myTotalPeakSize); << std::setw(10) << "" << ' '
fclose(aRepFile); << std::setw(10) << "" << ' '
<< (aTotAlloc == SIZE_MAX ? '>' : ' ')
<< std::setw(20) << aTotAlloc << ' '
<< std::setw(20) << myTotalLeftSize << ' '
<< std::setw(20) << myTotalPeakSize << std::endl;
aRepFile.close();
return Standard_True; return Standard_True;
} }

View File

@ -24,6 +24,7 @@
#include <Standard_TypeDef.hxx> #include <Standard_TypeDef.hxx>
#include <Standard_Mutex.hxx> #include <Standard_Mutex.hxx>
#include <stdio.h> #include <stdio.h>
#include <fstream>
/** /**
* This class provides the possibility to set callback for memory * This class provides the possibility to set callback for memory
@ -105,7 +106,7 @@ public:
Standard_EXPORT virtual void FreeEvent(void*, size_t, long); Standard_EXPORT virtual void FreeEvent(void*, size_t, long);
private: private:
FILE* myLogFile; std::ofstream myLogFile;
Standard_Mutex myMutex; Standard_Mutex myMutex;
size_t myBreakSize; size_t myBreakSize;
}; };

View File

@ -17,8 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <stdio.h> #include <stdio.h>
#include <QABugs.hxx> #include <QABugs.hxx>
@ -885,76 +883,47 @@ static Standard_Integer OCC381_SaveAs (Draw_Interpretor& di, Standard_Integer nb
#include <BRepClass3d_SolidClassifier.hxx> #include <BRepClass3d_SolidClassifier.hxx>
Standard_Integer OCC299bug (Draw_Interpretor& di, Standard_Integer OCC299bug (Draw_Interpretor& theDi,
Standard_Integer n, Standard_Integer theArgNb,
const char ** a) const char** theArgVec)
{ {
char sbf[512]; if (theArgNb < 3)
{
if (n < 3) { theDi << "Usage : " << theArgVec[0] << " Solid Point [Tolerance=1.e-7]\n";
di << "Usage : " << a[0] << " Solid Point [Tolerance=1.e-7]" << "\n";
return -1; return -1;
} }
TopoDS_Shape aS = DBRep::Get(a[1]); TopoDS_Shape aS = DBRep::Get (theArgVec[1]);
if (aS.IsNull()) { if (aS.IsNull())
Sprintf(sbf, " Null Shape is not allowed here\n"); {
di<<sbf; theDi << " Null Shape is not allowed here\n";
return 1;
}
else if (aS.ShapeType() != TopAbs_SOLID)
{
theDi << " Shape type must be SOLID\n";
return 1; return 1;
} }
if (aS.ShapeType()!=TopAbs_SOLID) { gp_Pnt aP (8., 9., 10.);
Sprintf(sbf, " Shape type must be SOLID\n"); if (!DrawTrSurf::GetPoint (theArgVec[2], aP))
di<<sbf; {
theDi << " Null Point is not allowed here\n";
return 1; return 1;
} }
// const Standard_Real aTol = (theArgNb == 4) ? Draw::Atof (theArgVec[3]) : 1.e-7;
Standard_Real aTol=1.e-7;
TCollection_AsciiString sIN("IN"), sOUT("OUT of"), sON("ON"), sUNKNOWN("UNKNOWN");
TopAbs_State aState = TopAbs_UNKNOWN;
gp_Pnt aP(8., 9., 10.);
if (!DrawTrSurf::GetPoint(a[2], aP) ) { BRepClass3d_SolidClassifier aSC (aS);
Sprintf(sbf, " Null Point is not allowed here\n"); aSC.Perform (aP, aTol);
di<<sbf;
return 1;
}
aTol=1.e-7; switch (aSC.State())
if (n==4) { {
aTol=Draw::Atof(a[3]); case TopAbs_IN: theDi << "The point is IN shape\n"; return 0;
case TopAbs_OUT: theDi << "The point is OUT of shape\n"; return 0;
case TopAbs_ON: theDi << "The point is ON shape\n"; return 0;
case TopAbs_UNKNOWN:
default: theDi << "The point is UNKNOWN shape\n"; return 0;
} }
//
BRepClass3d_SolidClassifier aSC(aS);
aSC.Perform(aP,aTol);
//
aState = aSC.State();
//
Sprintf(sbf, "The point is "); di<<sbf;
//
switch (aState) {
case TopAbs_IN:
Sprintf(sbf, sIN.ToCString());
break;
case TopAbs_OUT:
Sprintf(sbf, sOUT.ToCString());
break;
case TopAbs_ON:
Sprintf(sbf, sON.ToCString());
break;
case TopAbs_UNKNOWN:
Sprintf(sbf, sUNKNOWN.ToCString());
break;
default:
Sprintf(sbf, sUNKNOWN.ToCString());
break;
}
di<<sbf;
//
Sprintf(sbf, " shape\n");
di<<sbf;
return 0;
} }
#include <OSD_Process.hxx> #include <OSD_Process.hxx>

View File

@ -17,7 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <QABugs.hxx> #include <QABugs.hxx>
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include <config.h> #include <config.h>
@ -35,6 +34,8 @@
#include <Standard_ErrorHandler.hxx> #include <Standard_ErrorHandler.hxx>
#include <tcl.h> #include <tcl.h>
#include <fstream>
static int BUC60623(Draw_Interpretor& di, Standard_Integer argc, const char ** a) static int BUC60623(Draw_Interpretor& di, Standard_Integer argc, const char ** a)
{ {
if(argc!=4) if(argc!=4)
@ -1365,59 +1366,64 @@ static Standard_Integer BUC60856(Draw_Interpretor& di, Standard_Integer /*argc*/
return 0; return 0;
} }
//#include <fstream.h>
#ifdef HAVE_FSTREAM
# include <fstream>
#elif defined (HAVE_FSTREAM_H)
# include <fstream.h>
#endif
//#include <Standard_Stream.hxx>
//========================================================================== //==========================================================================
//function : CoordLoad //function : CoordLoad
// chargement d une face dans l explorer. // chargement d une face dans l explorer.
//========================================================================== //==========================================================================
static Standard_Integer coordload (Draw_Interpretor& di, Standard_Integer argc, const char ** argv) static Standard_Integer coordload (Draw_Interpretor& theDi,
Standard_Integer theArgsNb,
const char** theArgVec)
{ {
char line[256]; if (theArgsNb < 3)
char X[30], Y[30]; {
int fr; return 1;
TopoDS_Vertex V1,V2;
TopoDS_Edge Edge;
TopoDS_Wire Wire;
TopoDS_Face Face;
if (argc < 3) return 1;
ifstream file(argv[2], ios::in);
if(!file)
{
di<<"unable to open "<<argv[2]<<" for input"<<"\n";
return 2;
}
BRepBuilderAPI_MakeWire WB;
file.getline(line,80);
for(int i=0;i<30;i++) X[i]=Y[i]=0;
fr = sscanf(line,"%20c%20c",&X,&Y);
V1 = BRepBuilderAPI_MakeVertex(gp_Pnt(Draw::Atof(X),Draw::Atof(Y),0.0));
for(;;)
{
file.getline(line,80);
if (!file) break;
for(int i=0;i<30;i++) X[i]=Y[i]=0;
fr = sscanf(line,"%20c%20c",&X,&Y);
V2 = BRepBuilderAPI_MakeVertex(gp_Pnt(Draw::Atof(X),Draw::Atof(Y),0.0));
Edge = BRepBuilderAPI_MakeEdge(V1,V2);
WB.Add(Edge);
V1=V2;
} }
file.close();
if (WB.IsDone()) Wire = WB.Wire();
Face = BRepBuilderAPI_MakeFace(Wire);
DBRep::Set (argv[1],Face); std::ifstream aFile (theArgVec[2], ios::in);
if (!aFile)
{
theDi << "unable to open " << theArgVec[2] << " for input\n";
return 2;
}
char aLine[80];
memset (aLine, 0, 40);
aFile.getline (aLine, 80);
gp_Pnt aPnt (0.0, 0.0, 0.0);
aLine[40] = '\0';
aPnt.SetY (Draw::Atof (&aLine[20]));
aLine[20] = '\0';
aPnt.SetX (Draw::Atof (aLine));
TopoDS_Vertex aVert1 = BRepBuilderAPI_MakeVertex (aPnt);
BRepBuilderAPI_MakeWire aMakeWire;
for (;;)
{
memset (aLine, 0, 40);
aFile.getline (aLine, 80);
if (!aFile)
{
break;
}
aLine[40] = '\0';
aPnt.SetY (Draw::Atof (&aLine[20]));
aLine[20] = '\0';
aPnt.SetX (Draw::Atof (aLine));
TopoDS_Vertex aVert2 = BRepBuilderAPI_MakeVertex (aPnt);
aMakeWire.Add (BRepBuilderAPI_MakeEdge (aVert1, aVert2));
aVert1 = aVert2;
}
aFile.close();
if (!aMakeWire.IsDone())
{
DBRep::Set (theArgVec[1], TopoDS_Face());
return 0;
}
BRepBuilderAPI_MakeFace aMakeFace (aMakeWire.Wire());
DBRep::Set (theArgVec[1], aMakeFace.IsDone() ? aMakeFace.Face() : TopoDS_Face());
return 0; return 0;
} }

View File

@ -30,6 +30,29 @@
#include <stdint.h> #include <stdint.h>
#endif #endif
#if(defined(_MSC_VER) && (_MSC_VER < 1800))
// only Visual Studio 2013 (vc12) provides <cinttypes> header
// we do not defined all macros here - only used by OCCT framework
#ifdef _WIN64
#define PRIdPTR "I64d"
#define PRIuPTR "I64u"
#define SCNdPTR "I64d"
#define SCNuPTR "I64u"
#else
#define PRIdPTR "d"
#define PRIuPTR "u"
#define SCNdPTR "d"
#define SCNuPTR "u"
#endif
#else
// should be just <cinttypes> since C++11
// however we use this code for compatibility with old C99 compilers
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#endif
#include <inttypes.h>
#endif
#define Standard_False (Standard_Boolean)0 #define Standard_False (Standard_Boolean)0
#define Standard_True (Standard_Boolean)1 #define Standard_True (Standard_Boolean)1
@ -37,19 +60,20 @@
#include <Standard_Macro.hxx> #include <Standard_Macro.hxx>
#endif #endif
typedef int Standard_Integer; typedef int Standard_Integer;
typedef double Standard_Real; typedef double Standard_Real;
typedef unsigned int Standard_Boolean; typedef unsigned int Standard_Boolean;
typedef float Standard_ShortReal; typedef float Standard_ShortReal;
typedef char Standard_Character; typedef char Standard_Character;
typedef short Standard_ExtCharacter; typedef short Standard_ExtCharacter;
typedef unsigned char Standard_Byte; typedef unsigned char Standard_Byte;
typedef void* Standard_Address; typedef void* Standard_Address;
typedef size_t Standard_Size; typedef size_t Standard_Size;
typedef std::time_t Standard_Time;
// //
typedef const char* Standard_CString; typedef const char* Standard_CString;
typedef const short* Standard_ExtString; typedef const short* Standard_ExtString;
// Unicode primitives, char16_t, char32_t // Unicode primitives, char16_t, char32_t
typedef char Standard_Utf8Char; //!< signed UTF-8 char typedef char Standard_Utf8Char; //!< signed UTF-8 char
@ -58,6 +82,4 @@ typedef uint16_t Standard_Utf16Char; //!< UTF-16 char (always unsigned)
typedef uint32_t Standard_Utf32Char; //!< UTF-32 char (always unsigned) typedef uint32_t Standard_Utf32Char; //!< UTF-32 char (always unsigned)
typedef wchar_t Standard_WideChar; //!< wide char (unsigned UTF-16 on Windows platform and signed UTF-32 on Linux) typedef wchar_t Standard_WideChar; //!< wide char (unsigned UTF-16 on Windows platform and signed UTF-32 on Linux)
typedef std::time_t Standard_Time; #endif // _Standard_TypeDef_HeaderFile
#endif

View File

@ -17,7 +17,6 @@
// purpose or non-infringement. Please see the License for the specific terms // purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License. // and conditions governing the rights and limitations under the License.
#include <VrmlData_Scene.hxx> #include <VrmlData_Scene.hxx>
#include <VrmlData_InBuffer.hxx> #include <VrmlData_InBuffer.hxx>
#include <VrmlData_Appearance.hxx> #include <VrmlData_Appearance.hxx>
@ -1132,8 +1131,10 @@ void dumpNode (Standard_OStream& theStream,
const Standard_Integer ** ppDummy; const Standard_Integer ** ppDummy;
const Standard_Size nCoord = aNode->Coordinates()->Length(); const Standard_Size nCoord = aNode->Coordinates()->Length();
const Standard_Size nPoly = aNode->Polygons (ppDummy); const Standard_Size nPoly = aNode->Polygons (ppDummy);
char buf[64]; char buf[80];
Sprintf (buf, "IndexedFaceSet (%d vertices, %d polygons)", nCoord, nPoly); Sprintf (buf, "IndexedFaceSet (%" PRIuPTR " vertices, %" PRIuPTR " polygons)",
nCoord, nPoly);
dumpNodeHeader (theStream, theIndent, buf, theNode->Name()); dumpNodeHeader (theStream, theIndent, buf, theNode->Name());
} else if (theNode->IsKind(STANDARD_TYPE(VrmlData_IndexedLineSet))) { } else if (theNode->IsKind(STANDARD_TYPE(VrmlData_IndexedLineSet))) {
const Handle(VrmlData_IndexedLineSet) aNode = const Handle(VrmlData_IndexedLineSet) aNode =
@ -1141,8 +1142,11 @@ void dumpNode (Standard_OStream& theStream,
const Standard_Integer ** ppDummy; const Standard_Integer ** ppDummy;
const Standard_Size nCoord = aNode->Coordinates()->Length(); const Standard_Size nCoord = aNode->Coordinates()->Length();
const Standard_Size nPoly = aNode->Polygons (ppDummy); const Standard_Size nPoly = aNode->Polygons (ppDummy);
char buf[64];
Sprintf (buf, "IndexedLineSet (%d vertices, %d polygons)", nCoord, nPoly); char buf[80];
Sprintf(buf, "IndexedLineSet (%" PRIuPTR " vertices, %" PRIuPTR " polygons)",
nCoord, nPoly);
dumpNodeHeader (theStream, theIndent, buf, theNode->Name()); dumpNodeHeader (theStream, theIndent, buf, theNode->Name());
} else if (theNode->IsKind(STANDARD_TYPE(VrmlData_Material))) { } else if (theNode->IsKind(STANDARD_TYPE(VrmlData_Material))) {
// const Handle(VrmlData_Material) aMaterial = // const Handle(VrmlData_Material) aMaterial =