summaryrefslogtreecommitdiff
path: root/Tests/SystemInformation/DumpInformation.cxx
blob: 43286753bc395af1076ee7de943cd71400ec7bc3 (plain)
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
#include "DumpInformation.h"

#include <stdio.h>

#include <sys/stat.h>

void cmDumpInformationPrintFile(const char* name, FILE* fout)
{
  fprintf(fout, "Avoid ctest truncation of output: CTEST_FULL_OUTPUT\n");
  fprintf(
    fout,
    "================================================================\n");
  struct stat fs;
  if (stat(name, &fs) != 0) {
    fprintf(fout, "The file \"%s\" does not exist.\n", name);
    fflush(fout);
    return;
  }

  FILE* fin = fopen(name, "r");
  if (fin) {
    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) {
      for (char* c = buffer; c < buffer + n; ++c) {
        switch (*c) {
          case '<':
            fprintf(fout, "&lt;");
            break;
          case '>':
            fprintf(fout, "&gt;");
            break;
          case '&':
            fprintf(fout, "&amp;");
            break;
          default:
            putc(*c, fout);
            break;
        }
      }
      fflush(fout);
    }
    fclose(fin);
  } else {
    fprintf(fout, "Error opening \"%s\" for reading.\n", name);
    fflush(fout);
  }
}

int main(int, char* [])
{
  const char* files[] = {
    DumpInformation_BINARY_DIR "/SystemInformation.out",
    DumpInformation_BINARY_DIR "/AllVariables.txt",
    DumpInformation_BINARY_DIR "/AllCommands.txt",
    DumpInformation_BINARY_DIR "/AllMacros.txt",
    DumpInformation_BINARY_DIR "/OtherProperties.txt",
    DumpInformation_BINARY_DIR "/../../Source/cmConfigure.h",
    DumpInformation_BINARY_DIR "/../../CMakeCache.txt",
    DumpInformation_BINARY_DIR "/../../CMakeFiles/CMakeOutput.log",
    DumpInformation_BINARY_DIR "/../../CMakeFiles/CMakeError.log",
    DumpInformation_BINARY_DIR "/../../Bootstrap.cmk/cmake_bootstrap.log",
    DumpInformation_BINARY_DIR "/../../Source/cmsys/Configure.hxx",
    DumpInformation_BINARY_DIR "/../../Source/cmsys/Configure.h",
    DumpInformation_BINARY_DIR "/CMakeFiles/CMakeOutput.log",
    DumpInformation_BINARY_DIR "/CMakeFiles/CMakeError.log",
    0
  };

  const char** f;
  for (f = files; *f; ++f) {
    cmDumpInformationPrintFile(*f, stdout);
  }

  return 0;
}