Files
OCCT/src/QANCollection/QANCollectionTest.cxx
omy c2ae831c12 0023237: OSD_PerfMeter reports wrong (zero) times
Commit details:
1) in OSD_PerfMeter, use static functions of OSD_Chronometer class for time measurements instead of specific code to avoid incorrect results on CentOS (due to wrong valus of CLK_TCK);
2) changed definition of OSD_PerfMeter from .c to .cxx to avoid problems with C-functions;
3) fixed OSD_PerfMeter.h for building on Unix systems;
4) removed platform-specific #defines;
5) added test case for OSD_PerfMeter as bugs fclasses bug23237;
6) Removed DebugTools package (duplicates OSD_PerfMeter)
7) Avoid compiler (GCC) error casting BRepPrimAPI_Make* instances to TopoDS_Shape
2012-11-30 16:17:28 +04:00

156 lines
5.1 KiB
C++
Executable File

// Created on: 2002-04-16
// Created by: Alexander GRIGORIEV
// Copyright (c) 2002-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <TColgp_Array1OfPnt.hxx>
#include <TColgp_SequenceOfPnt.hxx>
#define USE_MACROS
#ifdef USE_MACROS
#include <NCollection_DefineArray1.hxx>
#include <NCollection_DefineSequence.hxx>
DEFINE_BASECOLLECTION (MyBaseCollPnt, gp_Pnt)
DEFINE_ARRAY1 (MyArray1, MyBaseCollPnt, gp_Pnt)
DEFINE_SEQUENCE (MySequence, MyBaseCollPnt, gp_Pnt)
#else
#include <NCollection_Sequence.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<gp_Pnt> MyArray1;
typedef NCollection_Sequence<gp_Pnt> MySequence;
typedef NCollection_BaseCollection<gp_Pnt> MyBaseCollPnt;
#endif
#define PERF_ENABLE_METERS
#include <OSD_PerfMeter.hxx>
extern Handle(NCollection_BaseAllocator) getAlloc (const int i);
const Standard_Integer REPEAT = 100;
void createArray (TColgp_Array1OfPnt& anArrPnt)
{
OSD_PerfMeter aPerfMeter("Create array");
for (Standard_Integer j = 0; j < 2*REPEAT; j++) {
PERF_START_METER("Create array")
for (Standard_Integer i = anArrPnt.Lower(); i <= anArrPnt.Upper(); i++)
anArrPnt(i).SetCoord ((double)i, (double)(i+1), (double)(i+2));
PERF_STOP_METER("Create array")
}
}
void createArray (MyArray1& anArrPnt)
{
for (Standard_Integer j = 0; j < 2*REPEAT; j++) {
PERF_START_METER("Create array")
for (Standard_Integer i = anArrPnt.Lower(); i <= anArrPnt.Upper(); i++)
anArrPnt(i).SetCoord ((double)i, (double)(i+1), (double)(i+2));
PERF_STOP_METER("Create array")
}
}
void assignArray (TColgp_Array1OfPnt& aDest, const TColgp_Array1OfPnt& aSrc)
{
for (Standard_Integer i = 0; i < 2*REPEAT; i++) {
PERF_START_METER("Assign array to array")
aDest = aSrc;
PERF_STOP_METER("Assign array to array")
}
}
void assignCollection (MyBaseCollPnt& aDest,
const MyBaseCollPnt& aSrc,
const char * MeterName)
{
for (Standard_Integer i = 0; i < REPEAT; i++) {
perf_start_meter (MeterName);
// if (getAlloc(1).IsNull() == Standard_False)
// if (getAlloc(1)->IsKind(STANDARD_TYPE(NCollection_IncAllocator)))
// Handle(NCollection_IncAllocator)::DownCast(getAlloc(1)) -> Clean();
aDest.Assign(aSrc);
perf_stop_meter (MeterName);
}
}
void assignArray (MyArray1& aDest,
const MyArray1& aSrc)
{
for (Standard_Integer i = 0; i < 2*REPEAT; i++) {
PERF_START_METER("Assign array to array")
aDest = aSrc;
PERF_STOP_METER("Assign array to array")
}
}
void createSequence (TColgp_SequenceOfPnt& aSeq)
{
for (Standard_Integer j = 0; j < REPEAT; j++) {
PERF_START_METER("Clear sequence")
aSeq.Clear();
PERF_STOP_METER("Clear sequence")
PERF_START_METER("Create sequence")
for (Standard_Integer i = 0; i < 100000; i++)
aSeq.Append (gp_Pnt((double)i, (double)(i+1), (double)(i+2)));
PERF_STOP_METER("Create sequence")
}
}
void createSequence (MySequence& aSeq)
{
for (Standard_Integer j = 0; j < REPEAT; j++) {
PERF_START_METER("Clear sequence")
aSeq.Clear();
// if (getAlloc(0).IsNull() == Standard_False)
// if (getAlloc(0)->IsKind(STANDARD_TYPE(NCollection_IncAllocator)))
// Handle(NCollection_IncAllocator)::DownCast(getAlloc(0)) -> Clean();
PERF_STOP_METER("Clear sequence")
PERF_START_METER("Create sequence")
for (Standard_Integer i = 0; i < 100000; i++)
aSeq.Append (gp_Pnt((double)i, (double)(i+1), (double)(i+2)));
PERF_STOP_METER("Create sequence")
}
}
void assignSequence (TColgp_SequenceOfPnt& aDest,
const TColgp_SequenceOfPnt& aSrc)
{
for (Standard_Integer i = 0; i < REPEAT; i++) {
PERF_START_METER("Assign sequence to sequence")
aDest = aSrc;
PERF_STOP_METER("Assign sequence to sequence")
}
}
void assignSequence (MySequence& aDest, const MySequence& aSrc)
{
for (Standard_Integer i = 0; i < REPEAT; i++) {
PERF_START_METER("Assign sequence to sequence")
// if (getAlloc(1).IsNull() == Standard_False)
// if (getAlloc(1)->IsKind(STANDARD_TYPE(NCollection_IncAllocator)))
// Handle(NCollection_IncAllocator)::DownCast(getAlloc(1)) -> Clean();
aDest = aSrc;
PERF_STOP_METER("Assign sequence to sequence")
}
}
void printAllMeters ()
{
PERF_PRINT_ALL
}