Files
OCCT/src/Message/Message.cxx
aml b9280b8b27 0032969: Coding - get rid of unused headers [IMeshData to PLib]
Removed unused exception classes OSD_Exception_FLT_DIVIDE_BY_ZERO, OSD_Exception_INT_DIVIDE_BY_ZERO, OSD_Exception_FLT_DENORMAL_OPERAND, OSD_Exception_FLT_INEXACT_RESULT, OSD_Exception_FLT_INVALID_OPERATION, OSD_Exception_FLT_OVERFLOW, OSD_Exception_FLT_STACK_CHECK, OSD_Exception_FLT_UNDERFLOW.
2022-05-17 20:09:12 +03:00

146 lines
5.7 KiB
C++

// Created on: 1999-11-23
// Created by: data exchange team
// Copyright (c) 1999-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 <Message.hxx>
#include <Message_Messenger.hxx>
#include <Message_Report.hxx>
#include <TCollection_AsciiString.hxx>
#include <stdio.h>
namespace
{
static Standard_CString Message_Table_PrintMetricTypeEnum[13] =
{
"NONE", "ThreadCPUUserTime", "ThreadCPUSystemTime", "ProcessCPUUserTime", "ProcessCPUSystemTime",
"WallClock", "MemPrivate", "MemVirtual",
"MemWorkingSet", "MemWorkingSetPeak", "MemSwapUsage", "MemSwapUsagePeak", "MemHeapUsage"
};
}
//=======================================================================
//function : DefaultMessenger
//purpose :
//=======================================================================
const Handle(Message_Messenger)& Message::DefaultMessenger ()
{
static Handle(Message_Messenger) aMessenger = new Message_Messenger;
return aMessenger;
}
//=======================================================================
//function : FillTime
//purpose :
//=======================================================================
TCollection_AsciiString Message::FillTime (const Standard_Integer hour,
const Standard_Integer minute,
const Standard_Real second)
{
char t [30];
if (hour > 0)
Sprintf (t, "%02dh:%02dm:%.2fs", hour, minute, second);
else if (minute > 0)
Sprintf (t, "%02dm:%.2fs", minute, second);
else
Sprintf (t, "%.2fs", second);
return TCollection_AsciiString (t);
}
//=======================================================================
//function : DefaultReport
//purpose :
//=======================================================================
const Handle(Message_Report)& Message::DefaultReport(const Standard_Boolean theToCreate)
{
static Handle(Message_Report) MyReport;
if (MyReport.IsNull() && theToCreate)
{
MyReport = new Message_Report();
}
return MyReport;
}
//=======================================================================
//function : MetricToString
//purpose :
//=======================================================================
Standard_CString Message::MetricToString (const Message_MetricType theType)
{
return Message_Table_PrintMetricTypeEnum[theType];
}
//=======================================================================
//function : MetricFromString
//purpose :
//=======================================================================
Standard_Boolean Message::MetricFromString (const Standard_CString theString,
Message_MetricType& theGravity)
{
TCollection_AsciiString aName (theString);
for (Standard_Integer aMetricIter = 0; aMetricIter <= Message_MetricType_MemHeapUsage; ++aMetricIter)
{
Standard_CString aMetricName = Message_Table_PrintMetricTypeEnum[aMetricIter];
if (aName == aMetricName)
{
theGravity = Message_MetricType (aMetricIter);
return Standard_True;
}
}
return Standard_False;
}
// =======================================================================
// function : ToOSDMetric
// purpose :
// =======================================================================
Standard_Boolean Message::ToOSDMetric (const Message_MetricType theMetric, OSD_MemInfo::Counter& theMemInfo)
{
switch (theMetric)
{
case Message_MetricType_MemPrivate: theMemInfo = OSD_MemInfo::MemPrivate; break;
case Message_MetricType_MemVirtual: theMemInfo = OSD_MemInfo::MemVirtual; break;
case Message_MetricType_MemWorkingSet: theMemInfo = OSD_MemInfo::MemWorkingSet; break;
case Message_MetricType_MemWorkingSetPeak: theMemInfo = OSD_MemInfo::MemWorkingSetPeak; break;
case Message_MetricType_MemSwapUsage: theMemInfo = OSD_MemInfo::MemSwapUsage; break;
case Message_MetricType_MemSwapUsagePeak: theMemInfo = OSD_MemInfo::MemSwapUsagePeak; break;
case Message_MetricType_MemHeapUsage: theMemInfo = OSD_MemInfo::MemHeapUsage; break;
default: return Standard_False;
}
return Standard_True;
}
// =======================================================================
// function : ToMessageMetric
// purpose :
// =======================================================================
Standard_Boolean Message::ToMessageMetric (const OSD_MemInfo::Counter theMemInfo, Message_MetricType& theMetric)
{
switch (theMemInfo)
{
case OSD_MemInfo::MemPrivate: theMetric = Message_MetricType_MemPrivate; break;
case OSD_MemInfo::MemVirtual: theMetric = Message_MetricType_MemVirtual; break;
case OSD_MemInfo::MemWorkingSet: theMetric = Message_MetricType_MemWorkingSet; break;
case OSD_MemInfo::MemWorkingSetPeak: theMetric = Message_MetricType_MemWorkingSetPeak; break;
case OSD_MemInfo::MemSwapUsage: theMetric = Message_MetricType_MemSwapUsage; break;
case OSD_MemInfo::MemSwapUsagePeak: theMetric = Message_MetricType_MemSwapUsagePeak; break;
case OSD_MemInfo::MemHeapUsage: theMetric = Message_MetricType_MemHeapUsage; break;
default: return Standard_False;
}
return Standard_True;
}