00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00061 #ifndef __vtkTimerLog_h
00062 #define __vtkTimerLog_h
00063
00064 #include "vtkSystemIncludes.h"
00065
00066 #ifdef _WIN32
00067 #include <sys/types.h>
00068 #include <sys/timeb.h>
00069 #else
00070 #include <time.h>
00071 #include <sys/time.h>
00072 #include <sys/types.h>
00073 #include <sys/times.h>
00074 #endif
00075
00076
00077 #ifndef _WIN32
00078 #include <unistd.h>
00079 #endif
00080 #include <stdarg.h>
00081
00082
00083 #ifndef NO_FD_SET
00084 # define SELECT_MASK fd_set
00085 #else
00086 # ifndef _AIX
00087 typedef long fd_mask;
00088 # endif
00089 # if defined(_IBMR2)
00090 # define SELECT_MASK void
00091 # else
00092 # define SELECT_MASK int
00093 # endif
00094 #endif
00095
00096
00097 #include "vtkObject.h"
00098 #define VTK_LOG_EVENT_LENGTH 40
00099
00100
00101 typedef struct
00102 {
00103 float WallTime;
00104 int CpuTicks;
00105 char Event[VTK_LOG_EVENT_LENGTH];
00106 } vtkTimerLogEntry;
00107
00108
00109
00110
00111 #undef GetCurrentTime
00112
00113 class VTK_COMMON_EXPORT vtkTimerLog : public vtkObject
00114 {
00115 public:
00116 static vtkTimerLog *New();
00117
00118 vtkTypeMacro(vtkTimerLog,vtkObject);
00119 void PrintSelf(ostream& os, vtkIndent indent);
00120
00122
00123 static void SetMaxEntries(int a);
00124 static int GetMaxEntries();
00126
00127
00130 static void FormatAndMarkEvent(char *EventString, ...);
00131
00132
00135 static void DumpLog(char *filename);
00136
00138 static void MarkEvent(char *EventString);
00139
00142 static void ResetLog();
00143
00145 static void AllocateLog();
00146
00149 static double GetCurrentTime();
00150
00153 static double GetCPUTime();
00154
00156 void StartTimer();
00157
00159 void StopTimer();
00160
00163 double GetElapsedTime();
00164
00165 protected:
00166 vtkTimerLog() {this->StartTime=0; this->EndTime = 0;};
00167 ~vtkTimerLog() {};
00168
00169 static int MaxEntries;
00170 static int NextEntry;
00171 static int WrapFlag;
00172 static int TicksPerSecond;
00173 static vtkTimerLogEntry *TimerLog;
00174
00175 #ifdef _WIN32
00176 static timeb FirstWallTime;
00177 static timeb CurrentWallTime;
00178 #else
00179 static timeval FirstWallTime;
00180 static timeval CurrentWallTime;
00181 static tms FirstCpuTicks;
00182 static tms CurrentCpuTicks;
00183 #endif
00184
00185
00186
00187 double StartTime;
00188 double EndTime;
00189
00190
00191 static void DumpEntry(ostream& os, int index, float time, float deltatime,
00192 int tick, int deltatick, char *event);
00193
00194
00195 private:
00196 vtkTimerLog(const vtkTimerLog&);
00197 void operator=(const vtkTimerLog&);
00198 };
00199
00200
00201
00202
00203
00204 #define vtkTimerLogMacro(string) \
00205 { \
00206 vtkTimerLog::FormatAndMarkEvent("Mark: In %s, line %d, class %s: %s", \
00207 __FILE__, __LINE__, this->GetClassName(), string); \
00208 }
00209
00210 #endif