1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkSystemInformationTest.cxx,v $
Language: C++
Date: $Date: 2008-02-16 21:00:51 $
Version: $Revision: 1.16 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <iostream>
#include <fstream>
#include <string>
#include <Code/Common/itkSystemInformationTest.h>
#include <sys/stat.h>
#include <time.h>
#if defined(ITK_BINARY_DIR)
# define ITK_SYSTEM_INFORMATION_DIR ITK_BINARY_DIR
#else
# define ITK_SYSTEM_INFORMATION_DIR ITKTesting_BINARY_DIR
#endif
// Construct the name of the notes file.
#define ITK_SYSTEM_INFORMATION_NOTES \
ITK_SYSTEM_INFORMATION_DIR "/Testing/HTML/TestingResults/Sites/" \
ITKTesting_SITE "/" ITKTesting_BUILD_NAME "/BuildNameNotes.xml"
std::string itkGetCurrentDateTime(const char* format)
{
char buf[1024];
time_t t;
time(&t);
strftime(buf, sizeof(buf), format, localtime(&t));
return buf;
}
void itkSystemInformationPrintFile(const char* name, std::ostream& os,
bool note=false )
{
if (!note)
{
os << "================================================================\n";
}
struct stat fs;
if(stat(name, &fs) != 0)
{
os << "The file \"" << name << "\" does not exist.\n";
return;
}
#ifdef _WIN32
std::ifstream fin(name, std::ios::in);
#else
std::ifstream fin(name, std::ios::in);
#endif
if(fin)
{
if (!note)
{
os << "Contents of \"" << name << "\":\n";
os << "----------------------------------------------------------------\n";
}
const int bufferSize = 4096;
char bufferIn[bufferSize];
char bufferOut[6*bufferSize]; // worst case scenario
// This copy loop is very sensitive on certain platforms with
// slightly broken stream libraries (like HPUX). Normally, it is
// incorrect to not check the error condition on the fin.read()
// before using the data, but the fin.gcount() will be zero if an
// error occurred. Therefore, the loop should be safe everywhere.
while(fin)
{
fin.read(bufferIn, bufferSize);
if(fin.gcount())
{
// convert buffer to an XML safe form
const char *s = bufferIn;
char *x = bufferOut;
*x = '\0';
for (int i = 0; i < static_cast<int>(fin.gcount()); i++)
{
// replace all special characters
switch (*s)
{
case '&':
strcat(x, "&"); x += 5;
break;
case '"':
strcat(x, """); x += 6;
break;
case '\'':
strcat(x, "'"); x += 6;
break;
case '<':
strcat(x, "<"); x += 4;
break;
case '>':
strcat(x, ">"); x += 4;
break;
default:
*x = *s; x++;
*x = '\0'; // explicitly terminate the new string
}
s++;
}
os.write(bufferOut, x - bufferOut);
}
}
os.flush();
}
else
{
os << "Error opening \"" << name << "\" for reading.\n";
}
}
int main(int,char *[])
{
const char* files[] =
{
ITK_SYSTEM_INFORMATION_DIR "/CMakeCache.txt",
ITK_SYSTEM_INFORMATION_DIR "/itkConfigure.h",
ITK_SYSTEM_INFORMATION_DIR "/CMakeFiles/CMakeOutput.log",
ITK_SYSTEM_INFORMATION_DIR "/CMakeFiles/CMakeError.log",
ITK_SYSTEM_INFORMATION_DIR "/CMakeOutput.log",
ITK_SYSTEM_INFORMATION_DIR "/CMakeError.log",
ITK_SYSTEM_INFORMATION_DIR "/ITKBuildSettings.cmake",
ITK_SYSTEM_INFORMATION_DIR "/ITKLibraryDepends.cmake",
ITK_SYSTEM_INFORMATION_DIR "/ITKConfig.cmake",
0
};
const char** f;
for(f = files; *f; ++f)
{
itkSystemInformationPrintFile(*f, std::cout);
}
std::ofstream outf(ITK_SYSTEM_INFORMATION_NOTES, std::ios::out);
if(outf)
{
std::cout << "Also writing this information to file " << ITK_SYSTEM_INFORMATION_NOTES << "\n";
outf << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << std::endl;
outf << "<Site BuildName=\"" << ITKTesting_BUILD_NAME << "\" Name=\""
<< ITKTesting_SITE << "\">" << std::endl;
outf << "<BuildNameNotes>" << std::endl;
for(f = files; *f; ++f)
{
outf << "<Note Name=\"" << *f << "\">" << std::endl;
outf << "<DateTime>"
<< itkGetCurrentDateTime("%a %b %d %Y %H:%M:%S %Z")
<< "</DateTime>" << std::endl;
outf << "<Text>" << std::endl;
itkSystemInformationPrintFile(*f, outf, true);
outf << "</Text>" << std::endl;
outf << "</Note>" << std::endl;
}
outf << "</BuildNameNotes>" << std::endl;
outf << "</Site>" << std::endl;
outf.close();
}
else
{
std::cerr << "Error writing this information to file " << ITK_SYSTEM_INFORMATION_NOTES << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
// This test has been derived from the equivalent test in VTK:
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: itkSystemInformationTest.cxx,v $
Language: C++
Date: $Date: 2008-02-16 21:00:51 $
Version: $Revision: 1.16 $
Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
|