2002-01-21 23:30:43 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-01-21 23:30:43 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-01-21 23:30:43 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
// Program extracts documentation describing commands from
|
2001-01-12 20:43:00 +03:00
|
|
|
// the CMake system.
|
|
|
|
//
|
2002-09-11 00:51:59 +04:00
|
|
|
#include "cmake.h"
|
2001-01-12 20:43:00 +03:00
|
|
|
|
2003-02-19 04:54:28 +03:00
|
|
|
#include "cmDocumentation.h"
|
2004-10-22 23:44:54 +04:00
|
|
|
#include "cmVersion.h"
|
2003-02-19 04:54:28 +03:00
|
|
|
|
2003-02-20 01:36:19 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static const cmDocumentationEntry cmDocumentationName[] =
|
|
|
|
{
|
|
|
|
{0,
|
|
|
|
" DumpDocumentation - Dump documentation for CMake.", 0},
|
|
|
|
{0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static const cmDocumentationEntry cmDocumentationUsage[] =
|
|
|
|
{
|
|
|
|
{0,
|
|
|
|
" DumpDocumentation [filename]", 0},
|
|
|
|
{0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static const cmDocumentationEntry cmDocumentationDescription[] =
|
|
|
|
{
|
|
|
|
{0,
|
2003-07-24 18:58:40 +04:00
|
|
|
"The \"DumpDocumentation\" executable is only available in the build "
|
|
|
|
"tree. It is used for testing, coverage, and documentation.", 0},
|
|
|
|
CMAKE_STANDARD_INTRODUCTION,
|
2003-02-20 01:36:19 +03:00
|
|
|
{0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static const cmDocumentationEntry cmDocumentationOptions[] =
|
|
|
|
{
|
|
|
|
{"--all-for-coverage", "Dump all documentation to stdout. For testing.", 0},
|
|
|
|
{0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int DumpHTML(const char* outname)
|
2001-01-12 20:43:00 +03:00
|
|
|
{
|
2001-08-24 01:40:07 +04:00
|
|
|
std::ofstream fout(outname);
|
|
|
|
if(!fout)
|
|
|
|
{
|
2004-09-08 00:55:25 +04:00
|
|
|
std::cerr << "failed to open output file: " << outname << "\n";
|
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2001-08-24 01:40:07 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2003-02-19 04:54:28 +03:00
|
|
|
|
2003-02-20 01:36:19 +03:00
|
|
|
cmake cmi;
|
2003-02-19 04:54:28 +03:00
|
|
|
cmDocumentation doc;
|
|
|
|
std::vector<cmDocumentationEntry> commands;
|
|
|
|
cmi.GetCommandDocumentation(commands);
|
2004-10-22 23:44:54 +04:00
|
|
|
cmOStringStream str;
|
|
|
|
str << "Documentation for Commands of CMake "
|
|
|
|
<< cmVersion::GetCMakeVersion();
|
|
|
|
doc.AddSection(str.str().c_str(), &commands[0]);
|
2003-02-19 04:54:28 +03:00
|
|
|
doc.Print(cmDocumentation::HTMLForm, fout);
|
|
|
|
|
2001-01-12 20:43:00 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-02-20 01:36:19 +03:00
|
|
|
|
2003-07-24 18:58:40 +04:00
|
|
|
int DumpForCoverageToStream(std::ostream& out)
|
2003-02-20 01:36:19 +03:00
|
|
|
{
|
|
|
|
cmake cmi;
|
|
|
|
cmDocumentation doc;
|
|
|
|
std::vector<cmDocumentationEntry> commands;
|
2003-07-08 07:20:30 +04:00
|
|
|
std::vector<cmDocumentationEntry> generators;
|
2003-02-20 01:36:19 +03:00
|
|
|
cmi.GetCommandDocumentation(commands);
|
2003-07-08 07:20:30 +04:00
|
|
|
cmi.GetGeneratorDocumentation(generators);
|
2003-02-20 01:36:19 +03:00
|
|
|
doc.SetNameSection(cmDocumentationName);
|
|
|
|
doc.SetUsageSection(cmDocumentationUsage);
|
|
|
|
doc.SetDescriptionSection(cmDocumentationDescription);
|
|
|
|
doc.SetOptionsSection(cmDocumentationOptions);
|
|
|
|
doc.SetCommandsSection(&commands[0]);
|
2003-07-08 07:20:30 +04:00
|
|
|
doc.SetGeneratorsSection(&generators[0]);
|
2003-07-24 18:58:40 +04:00
|
|
|
doc.PrintDocumentation(cmDocumentation::Usage, out);
|
|
|
|
doc.PrintDocumentation(cmDocumentation::Full, out);
|
|
|
|
doc.PrintDocumentation(cmDocumentation::HTML, out);
|
|
|
|
doc.PrintDocumentation(cmDocumentation::Man, out);
|
2003-02-20 15:55:50 +03:00
|
|
|
return 0;
|
2003-02-20 01:36:19 +03:00
|
|
|
}
|
|
|
|
|
2003-07-24 18:58:40 +04:00
|
|
|
int DumpForCoverage(const char* outname)
|
|
|
|
{
|
|
|
|
if(outname)
|
|
|
|
{
|
|
|
|
std::ofstream fout(outname);
|
|
|
|
if(!fout)
|
|
|
|
{
|
|
|
|
std::cerr << "failed to open output file: " << outname << "\n";
|
2004-09-08 00:55:25 +04:00
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2003-07-24 18:58:40 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return DumpForCoverageToStream(fout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DumpForCoverageToStream(std::cout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-20 01:36:19 +03:00
|
|
|
int main(int ac, char** av)
|
|
|
|
{
|
|
|
|
cmSystemTools::EnableMSVCDebugHook();
|
|
|
|
const char* outname = "cmake.html";
|
|
|
|
bool coverage = false;
|
|
|
|
if(ac > 1)
|
|
|
|
{
|
|
|
|
if(strcmp(av[1], "--all-for-coverage") == 0)
|
|
|
|
{
|
|
|
|
coverage = true;
|
2003-07-24 18:58:40 +04:00
|
|
|
if(ac > 2)
|
|
|
|
{
|
|
|
|
outname = av[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outname = 0;
|
|
|
|
}
|
2003-02-20 01:36:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outname = av[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(coverage)
|
|
|
|
{
|
2003-07-24 18:58:40 +04:00
|
|
|
return DumpForCoverage(outname);
|
2003-02-20 01:36:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DumpHTML(outname);
|
|
|
|
}
|
|
|
|
}
|