00001 /************************************************************************** 00002 *** 00003 *** Copyright (c) 1995-2000 Regents of the University of California, 00004 *** Andrew E. Caldwell, Andrew B. Kahng and Igor L. Markov 00005 *** Copyright (c) 2000-2004 Regents of the University of Michigan, 00006 *** Saurabh N. Adya, Jarrod A. Roy and Igor L. Markov 00007 *** 00008 *** Contact author(s): abk@cs.ucsd.edu, imarkov@umich.edu 00009 *** Original Affiliation: UCLA, Computer Science Department, 00010 *** Los Angeles, CA 90095-1596 USA 00011 *** 00012 *** Permission is hereby granted, free of charge, to any person obtaining 00013 *** a copy of this software and associated documentation files (the 00014 *** "Software"), to deal in the Software without restriction, including 00015 *** without limitation 00016 *** the rights to use, copy, modify, merge, publish, distribute, sublicense, 00017 *** and/or sell copies of the Software, and to permit persons to whom the 00018 *** Software is furnished to do so, subject to the following conditions: 00019 *** 00020 *** The above copyright notice and this permission notice shall be included 00021 *** in all copies or substantial portions of the Software. 00022 *** 00023 *** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00024 *** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 00025 *** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00026 *** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 00027 *** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT 00028 *** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR 00029 *** THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00030 *** 00031 *** 00032 ***************************************************************************/ 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 // June 15, 1997 Igor Markov VLSI CAD UCLA ABKGROUP 00044 00045 // This file to be included into all projects in the group 00046 00047 #include <stdlib.h> 00048 #include <time.h> 00049 #include <string.h> 00050 #include <iostream> 00051 #include <iomanip> 00052 00053 #include "infolines.h" 00054 00055 double MaxMem::_peak = 0.; 00056 std::string MaxMem::_message = "No measurements taken"; 00057 00058 /* ======================== IMPLEMENTATIONS ======================== */ 00059 TimeStamp::TimeStamp() 00060 { 00061 char * date; 00062 time_t tp; 00063 00064 char expl[]="# Created : "; 00065 if (time(&tp)==-1) 00066 { 00067 _infoLine = new char[80]; 00068 strcpy(_infoLine," Error in time() "); 00069 return; 00070 } 00071 date=asctime(localtime(&tp)); 00072 _infoLine = new char[strlen(expl)+strlen(date)+1]; 00073 strcpy(_infoLine,expl); 00074 strcat(_infoLine,date); 00075 } 00076 00077 CmdLine::CmdLine(int argc, const char *argv[]) 00078 { 00079 char expl[]="# Command line :"; 00080 int len=strlen(expl), n=argc; 00081 while (n--) len+=(1+strlen(argv[n])); 00082 if (len<255) len=255; 00083 00084 _infoLine=new char[len+3]; 00085 00086 char * infoPtr=_infoLine; 00087 strcpy(infoPtr,expl); 00088 infoPtr += strlen(expl); 00089 infoPtr[0]=' '; 00090 infoPtr++; 00091 00092 n=-1; 00093 while (++n<argc) 00094 { 00095 strcpy(infoPtr,argv[n]); 00096 infoPtr += strlen(argv[n]); 00097 infoPtr[0]=' '; 00098 infoPtr++; 00099 } 00100 infoPtr[0]='\n'; 00101 infoPtr[1]='\0'; 00102 } 00103 00104 ostream& operator<<(ostream& out, const MemUsage& memu) 00105 { 00106 //out << "# Memory usage : " << setw(7) << memu.getPeakMem() << "Mb (peak) " 00107 // << setw(4) << memu.getEstimate() << "Mb (estimate)" << endl; 00108 out << "# Memory usage : " << setw(7) << memu.getEstimate() 00109 << "Mb (estimate)" << endl; 00110 return out; 00111 } 00112 00113 00114 ostream& operator<<(ostream& out, const SysInfo& si) 00115 { 00116 out << si.tm 00117 << si.pl 00118 << si.us 00119 << si.mu 00120 << si.cpunorm << endl; 00121 return out; 00122 } 00123