audacia/src/Profiler.h
Leland Lucius cbf1bb558e AUP3: Removes OD code related to project file handling
This removes all of the OnDemand code embedded throughout
    the main codebase. Individual files related specifically
    to OD have been left in place, but removed from the build.
2020-07-01 01:14:05 -05:00

89 lines
2.3 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
Profiler.h
Created by Michael Chinen (mchinen) on 8/12/08
Audacity(R) is copyright (c) 1999-2008 Audacity Team.
License: GPL v2. See License.txt.
******************************************************************//**
\class Profiler
\brief A simple profiler to measure the average time lengths that a
particular task/function takes. Currently not thread-safe and not thread-smart,
but it will probably work fine if you use it on a high level.
\class TaskProfile
\brief a simple class to keep track of one task that may be called multiple times.
*//*******************************************************************/
#ifndef __AUDACITY_PROFILER__
#define __AUDACITY_PROFILER__
#include <vector>
#include <time.h>
#define BEGIN_TASK_PROFILING(TASK_DESCRIPTION) Profiler::Instance()->Begin(__FILE__,__LINE__,TASK_DESCRIPTION)
#define END_TASK_PROFILING(TASK_DESCRIPTION) Profiler::Instance()->End(__FILE__,__LINE__,TASK_DESCRIPTION)
class TaskProfile;
class Profiler
{
public:
///write to a profile at the end of the test.
virtual ~Profiler();
///start the task timer.
void Begin(const char* fileName, int lineNum, const char* taskDescription);
///end the task timer.
void End(const char* fileName, int lineNum, const char* taskDescription);
///Gets the singleton instance
static Profiler* Instance();
protected:
///private constructor - Singleton.
Profiler(){};
///find a taskProfile for the given task, otherwise create
TaskProfile* GetOrCreateTaskProfile(const char* fileName, int lineNum);
TaskProfile* GetTaskProfileByDescription(const char* description);
//List of current Task to do.
std::vector<std::unique_ptr<TaskProfile>> mTasks;
};
class TaskProfile
{
public:
TaskProfile();
virtual ~TaskProfile();
///start the task timer.
void Begin(const char* fileName, int lineNum, const char* taskDescription);
///end the task timer.
void End(const char* fileName, int lineNum, const char* taskDescription);
double ComputeAverageRunTime();
ArrayOf<char> mFileName;
int mLine;
ArrayOf<char> mDescription;
int mNumHits;
clock_t mCumTime;
clock_t mLastTime;
};
#endif