00001 /* Copyright 1994, 1995 LongView Technologies L.L.C. $Revision: 1.11 $ */ 00002 /* Copyright (c) 2006, Sun Microsystems, Inc. 00003 All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the 00006 following conditions are met: 00007 00008 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 00009 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following 00010 disclaimer in the documentation and/or other materials provided with the distribution. 00011 * Neither the name of Sun Microsystems nor the names of its contributors may be used to endorse or promote products derived 00012 from this software without specific prior written permission. 00013 00014 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT 00015 NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 00016 THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00017 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00018 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 00019 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE 00020 00021 00022 */ 00023 00024 00025 // Timers for simple measurements 00026 00027 class timer { 00028 private: 00029 double userTime; 00030 double systemTime; 00031 public: 00032 void start(); 00033 void stop(); 00034 void print(); 00035 double seconds(); 00036 }; 00037 00038 00039 class elapsedTimer { 00040 private: 00041 long_int counter; 00042 public: 00043 elapsedTimer() : counter(0,0) {} 00044 void start(); 00045 void stop(); 00046 void print(); 00047 double seconds(); 00048 }; 00049 00050 // TimeStamp is used based on elapsed time and 00051 class TimeStamp { 00052 private: 00053 long_int counter; 00054 00055 public: 00056 // Constructor 00057 TimeStamp(); 00058 00059 // update to current elapsed time 00060 void update(); 00061 00062 // returns seconds since updated 00063 double seconds(); 00064 }; 00065 00066 // TraceTime is used for tracing the execution time of a block 00067 // Usage: 00068 // { TraceTime t("block time") 00069 // some_code(); 00070 // } 00071 // 00072 00073 class TraceTime { 00074 private: 00075 bool active; 00076 elapsedTimer t; 00077 public: 00078 TraceTime(char* title, bool doit = true); 00079 ~TraceTime(); 00080 }; 00081