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
00058 #ifndef __vtkTimerLog_h
00059 #define __vtkTimerLog_h
00060
00061 #include "vtkSystemIncludes.h"
00062
00063 #ifdef _WIN32
00064 #include <sys/types.h>
00065 #include <sys/timeb.h>
00066 #else
00067 #include <time.h>
00068 #include <sys/time.h>
00069 #include <sys/types.h>
00070 #include <sys/times.h>
00071 #endif
00072
00073
00074 #ifndef _WIN32
00075 #include <unistd.h>
00076 #endif
00077 #include <stdarg.h>
00078
00079
00080 #ifndef NO_FD_SET
00081 # define SELECT_MASK fd_set
00082 #else
00083 # ifndef _AIX
00084 typedef long fd_mask;
00085 # endif
00086 # if defined(_IBMR2)
00087 # define SELECT_MASK void
00088 # else
00089 # define SELECT_MASK int
00090 # endif
00091 #endif
00092
00093
00094 #include "vtkObject.h"
00095 #define VTK_LOG_EVENT_LENGTH 40
00096
00097
00098 typedef struct
00099 {
00100 float WallTime;
00101 int CpuTicks;
00102 char Event[VTK_LOG_EVENT_LENGTH];
00103 } vtkTimerLogEntry;
00104
00105
00106
00107
00108 #undef GetCurrentTime
00109
00110 class VTK_EXPORT vtkTimerLog : public vtkObject
00111 {
00112 public:
00113 static vtkTimerLog *New();
00114
00115 vtkTypeMacro(vtkTimerLog,vtkObject);
00116 void PrintSelf(ostream& os, vtkIndent indent);
00117
00119 static void SetMaxEntries(int a);
00120 static int GetMaxEntries();
00121
00122
00125 static void FormatAndMarkEvent(char *EventString, ...);
00126
00127
00130 static void DumpLog(char *filename);
00131
00133 static void MarkEvent(char *EventString);
00134
00137 static void ResetLog();
00138
00140 static void AllocateLog();
00141
00144 static double GetCurrentTime();
00145
00148 static double GetCPUTime();
00149
00151 void StartTimer();
00152
00154 void StopTimer();
00155
00158 double GetElapsedTime();
00159
00160 protected:
00161 vtkTimerLog() {};
00162 ~vtkTimerLog() {};
00163 vtkTimerLog(const vtkTimerLog&) {};
00164 void operator=(const vtkTimerLog&) {};
00165
00166 static int MaxEntries;
00167 static int NextEntry;
00168 static int WrapFlag;
00169 static int TicksPerSecond;
00170 static vtkTimerLogEntry *TimerLog;
00171
00172 #ifdef _WIN32
00173 static timeb FirstWallTime;
00174 static timeb CurrentWallTime;
00175 #else
00176 static timeval FirstWallTime;
00177 static timeval CurrentWallTime;
00178 static tms FirstCpuTicks;
00179 static tms CurrentCpuTicks;
00180 #endif
00181
00182
00183
00184 double StartTime;
00185 double EndTime;
00186
00187
00188 static void DumpEntry(ostream& os, int index, float time, float deltatime,
00189 int tick, int deltatick, char *event);
00190
00191
00192 };
00193
00194
00195
00196
00197
00198 #define vtkTimerLogMacro(string) \
00199 { \
00200 vtkTimerLog::FormatAndMarkEvent("Mark: In %s, line %d, class %s: %s", \
00201 __FILE__, __LINE__, this->GetClassName(), string); \
00202 }
00203
00204 #endif