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
|
/*=========================================================================
Program: Visualization Toolkit
Module: SystemInformation.cxx
Copyright (c) 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.
=========================================================================*/
// .NAME Test to print system information useful for remote debugging.
// .SECTION Description
// Remote dashboard debugging often requires access to the
// CMakeCache.txt file. This test will display the file.
#include "vtkDebugLeaks.h"
#include <sys/stat.h>
#include <string>
void vtkSystemInformationPrintFile(const char* name, ostream& os)
{
os << "================================================================\n";
struct stat fs;
if(stat(name, &fs) != 0)
{
os << "The file \"" << name << "\" does not exist.\n";
return;
}
#ifdef _WIN32
ifstream fin(name, ios::in | ios::binary);
#else
ifstream fin(name, ios::in);
#endif
if(fin)
{
os << "Contents of \"" << name << "\":\n";
os << "----------------------------------------------------------------\n";
const int bufferSize = 4096;
char buffer[bufferSize];
// 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(buffer, bufferSize);
if(fin.gcount())
{
os.write(buffer, fin.gcount());
}
}
os.flush();
}
else
{
os << "Error opening \"" << name << "\" for reading.\n";
}
}
int TestSystemInformation(int argc, char* argv[])
{
if(argc != 2)
{
cerr << "Usage: TestSystemInformation <top-of-build-tree>\n";
return 1;
}
std::string build_dir = argv[1];
build_dir += "/";
const char* files[] =
{
"CMakeCache.txt",
"CMakeFiles/CMakeError.log",
"Common/Core/vtkConfigure.h",
"Common/Core/vtkToolkits.h",
"VTKConfig.cmake",
"Testing/Temporary/ConfigSummary.txt",
0
};
cout << "CTEST_FULL_OUTPUT (Avoid ctest truncation of output)" << endl;
for(const char** f = files; *f; ++f)
{
std::string fname = build_dir + *f;
vtkSystemInformationPrintFile(fname.c_str(), cout);
}
return 0;
}
|