2002-11-12 02:07:20 +03:00
|
|
|
#include "DumpInformation.h"
|
2003-07-16 19:38:57 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/stat.h>
|
2002-11-12 02:07:20 +03:00
|
|
|
|
2003-07-16 19:38:57 +04:00
|
|
|
void cmDumpInformationPrintFile(const char* name, FILE* fout)
|
2002-11-12 02:07:20 +03:00
|
|
|
{
|
2005-02-07 17:05:04 +03:00
|
|
|
fprintf(fout,
|
|
|
|
"Avoid ctest truncation of output: CTEST_FULL_OUTPUT\n");
|
2003-07-16 19:38:57 +04:00
|
|
|
fprintf(fout,
|
|
|
|
"================================================================\n");
|
|
|
|
struct stat fs;
|
|
|
|
if(stat(name, &fs) != 0)
|
2002-11-12 02:07:20 +03:00
|
|
|
{
|
2003-07-16 19:38:57 +04:00
|
|
|
fprintf(fout, "The file \"%s\" does not exist.\n", name);
|
|
|
|
fflush(fout);
|
|
|
|
return;
|
2002-11-12 02:07:20 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2003-08-05 23:20:48 +04:00
|
|
|
FILE* fin = fopen(name, "r");
|
2003-07-16 19:38:57 +04:00
|
|
|
if(fin)
|
2002-11-12 02:07:20 +03:00
|
|
|
{
|
2003-07-16 19:38:57 +04:00
|
|
|
fprintf(fout,
|
|
|
|
"Contents of \"%s\":\n"
|
|
|
|
"----------------------------------------------------------------\n",
|
|
|
|
name);
|
|
|
|
const int bufferSize = 4096;
|
|
|
|
char buffer[bufferSize];
|
|
|
|
int n;
|
|
|
|
while((n = fread(buffer, 1, bufferSize, fin)) > 0)
|
2002-11-12 17:33:00 +03:00
|
|
|
{
|
2003-07-16 19:38:57 +04:00
|
|
|
for(char* c = buffer; c < buffer+n; ++c)
|
2002-11-12 22:18:36 +03:00
|
|
|
{
|
2003-07-16 19:38:57 +04:00
|
|
|
switch(*c)
|
|
|
|
{
|
|
|
|
case '<': fprintf(fout, "<"); break;
|
|
|
|
case '>': fprintf(fout, ">"); break;
|
|
|
|
case '&': fprintf(fout, "&"); break;
|
|
|
|
default: putc(*c, fout); break;
|
|
|
|
}
|
2002-11-12 22:18:36 +03:00
|
|
|
}
|
2003-07-16 19:38:57 +04:00
|
|
|
fflush(fout);
|
2002-11-12 17:33:00 +03:00
|
|
|
}
|
2003-07-16 19:38:57 +04:00
|
|
|
fclose(fin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(fout, "Error opening \"%s\" for reading.\n", name);
|
|
|
|
fflush(fout);
|
2002-11-12 02:07:20 +03:00
|
|
|
}
|
|
|
|
}
|
2003-03-17 16:25:45 +03:00
|
|
|
|
2003-07-16 19:38:57 +04:00
|
|
|
int main(int,char *[])
|
2003-03-17 16:25:45 +03:00
|
|
|
{
|
2003-07-16 19:38:57 +04:00
|
|
|
const char* files[] =
|
|
|
|
{
|
|
|
|
DumpInformation_BINARY_DIR "/SystemInformation.out",
|
|
|
|
DumpInformation_BINARY_DIR "/AllVariables.txt",
|
2003-08-04 04:47:44 +04:00
|
|
|
DumpInformation_BINARY_DIR "/AllCommands.txt",
|
2003-08-07 02:54:13 +04:00
|
|
|
DumpInformation_BINARY_DIR "/AllMacros.txt",
|
2004-04-26 21:42:08 +04:00
|
|
|
DumpInformation_BINARY_DIR "/OtherProperties.txt",
|
2003-07-16 19:38:57 +04:00
|
|
|
DumpInformation_BINARY_DIR "/../../Source/cmConfigure.h",
|
2012-08-13 21:42:58 +04:00
|
|
|
DumpInformation_BINARY_DIR "/../../CMakeCache.txt",
|
2009-07-27 20:35:12 +04:00
|
|
|
DumpInformation_BINARY_DIR "/../../CMakeFiles/CMakeOutput.log",
|
|
|
|
DumpInformation_BINARY_DIR "/../../CMakeFiles/CMakeError.log",
|
2003-07-16 19:38:57 +04:00
|
|
|
DumpInformation_BINARY_DIR "/../../Bootstrap.cmk/cmake_bootstrap.log",
|
2003-08-08 18:20:40 +04:00
|
|
|
DumpInformation_BINARY_DIR "/../../Source/cmsys/Configure.hxx",
|
|
|
|
DumpInformation_BINARY_DIR "/../../Source/cmsys/Configure.h",
|
2009-07-27 20:35:12 +04:00
|
|
|
DumpInformation_BINARY_DIR "/CMakeFiles/CMakeOutput.log",
|
|
|
|
DumpInformation_BINARY_DIR "/CMakeFiles/CMakeError.log",
|
2003-07-16 19:38:57 +04:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
const char** f;
|
|
|
|
for(f = files; *f; ++f)
|
|
|
|
{
|
|
|
|
cmDumpInformationPrintFile(*f, stdout);
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2003-07-16 19:38:57 +04:00
|
|
|
return 0;
|
2012-08-13 21:42:58 +04:00
|
|
|
}
|