2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 15:30:43 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-01-21 15:30:43 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-01-18 11:20:24 -05:00
|
|
|
// Program extracts documentation describing commands from
|
2001-01-12 12:43:00 -05:00
|
|
|
// the CMake system.
|
|
|
|
//
|
2002-09-10 16:51:59 -04:00
|
|
|
#include "cmake.h"
|
2001-01-12 12:43:00 -05:00
|
|
|
|
2003-02-18 20:54:28 -05:00
|
|
|
#include "cmDocumentation.h"
|
2004-10-22 15:44:54 -04:00
|
|
|
#include "cmVersion.h"
|
2003-02-18 20:54:28 -05:00
|
|
|
|
2003-02-19 17:36:19 -05:00
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 12:49:09 -04:00
|
|
|
static const char *cmDocumentationName[][3] =
|
2003-02-19 17:36:19 -05:00
|
|
|
{
|
2007-10-09 14:35:25 -04:00
|
|
|
{0,
|
|
|
|
" DumpDocumentation - Dump documentation for CMake.", 0},
|
|
|
|
{0,0,0}
|
2003-02-19 17:36:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 12:49:09 -04:00
|
|
|
static const char *cmDocumentationUsage[][3] =
|
2003-02-19 17:36:19 -05:00
|
|
|
{
|
2007-10-09 14:35:25 -04:00
|
|
|
{0,
|
|
|
|
" DumpDocumentation [filename]", 0},
|
|
|
|
{0,0,0}
|
2003-02-19 17:36:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 12:49:09 -04:00
|
|
|
static const char *cmDocumentationDescription[][3] =
|
2003-02-19 17:36:19 -05:00
|
|
|
{
|
2007-10-09 14:35:25 -04:00
|
|
|
{0,
|
2003-07-24 10:58:40 -04:00
|
|
|
"The \"DumpDocumentation\" executable is only available in the build "
|
2007-10-09 14:35:25 -04:00
|
|
|
"tree. It is used for testing, coverage, and documentation.", 0},
|
2003-07-24 10:58:40 -04:00
|
|
|
CMAKE_STANDARD_INTRODUCTION,
|
2007-10-09 14:35:25 -04:00
|
|
|
{0,0,0}
|
2003-02-19 17:36:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 12:49:09 -04:00
|
|
|
static const char *cmDocumentationOptions[][3] =
|
2003-02-19 17:36:19 -05:00
|
|
|
{
|
2006-05-10 15:01:22 -04:00
|
|
|
{"--all-for-coverage",
|
2007-10-09 14:35:25 -04:00
|
|
|
"Dump all documentation to stdout. For testing.", 0},
|
|
|
|
{0,0,0}
|
2003-02-19 17:36:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int DumpHTML(const char* outname)
|
2001-01-12 12:43:00 -05:00
|
|
|
{
|
2001-08-23 17:40:07 -04:00
|
|
|
std::ofstream fout(outname);
|
|
|
|
if(!fout)
|
|
|
|
{
|
2004-09-07 16:55:25 -04:00
|
|
|
std::cerr << "failed to open output file: " << outname << "\n";
|
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2001-08-23 17:40:07 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2003-02-18 20:54:28 -05:00
|
|
|
|
2003-02-19 17:36:19 -05:00
|
|
|
cmake cmi;
|
2003-02-18 20:54:28 -05:00
|
|
|
cmDocumentation doc;
|
|
|
|
std::vector<cmDocumentationEntry> commands;
|
|
|
|
cmi.GetCommandDocumentation(commands);
|
2004-10-22 15:44:54 -04:00
|
|
|
cmOStringStream str;
|
|
|
|
str << "Documentation for Commands of CMake "
|
|
|
|
<< cmVersion::GetCMakeVersion();
|
2007-10-22 12:49:09 -04:00
|
|
|
doc.SetSection(str.str().c_str(), commands);
|
2003-02-18 20:54:28 -05:00
|
|
|
doc.Print(cmDocumentation::HTMLForm, fout);
|
|
|
|
|
2001-01-12 12:43:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2003-02-19 17:36:19 -05:00
|
|
|
|
2003-07-24 10:58:40 -04:00
|
|
|
int DumpForCoverageToStream(std::ostream& out)
|
2003-02-19 17:36:19 -05:00
|
|
|
{
|
|
|
|
cmake cmi;
|
|
|
|
cmDocumentation doc;
|
|
|
|
std::vector<cmDocumentationEntry> commands;
|
2003-07-07 23:20:30 -04:00
|
|
|
std::vector<cmDocumentationEntry> generators;
|
2003-02-19 17:36:19 -05:00
|
|
|
cmi.GetCommandDocumentation(commands);
|
2003-07-07 23:20:30 -04:00
|
|
|
cmi.GetGeneratorDocumentation(generators);
|
2007-10-22 12:49:09 -04:00
|
|
|
doc.SetSection("Name",cmDocumentationName);
|
|
|
|
doc.SetSection("Usage",cmDocumentationUsage);
|
|
|
|
doc.SetSection("Description",cmDocumentationDescription);
|
|
|
|
doc.SetSection("options",cmDocumentationOptions);
|
|
|
|
doc.SetSection("Commands",commands);
|
|
|
|
doc.SetSection("Generators",generators);
|
2003-07-24 10:58:40 -04:00
|
|
|
doc.PrintDocumentation(cmDocumentation::Usage, out);
|
|
|
|
doc.PrintDocumentation(cmDocumentation::Full, out);
|
2003-02-20 07:55:50 -05:00
|
|
|
return 0;
|
2003-02-19 17:36:19 -05:00
|
|
|
}
|
|
|
|
|
2003-07-24 10: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-07 16:55:25 -04:00
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2003-07-24 10:58:40 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return DumpForCoverageToStream(fout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DumpForCoverageToStream(std::cout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-19 17:36:19 -05:00
|
|
|
int main(int ac, char** av)
|
|
|
|
{
|
|
|
|
cmSystemTools::EnableMSVCDebugHook();
|
2007-12-13 17:56:50 -05:00
|
|
|
cmSystemTools::FindExecutableDirectory(av[0]);
|
2003-02-19 17:36:19 -05:00
|
|
|
const char* outname = "cmake.html";
|
|
|
|
bool coverage = false;
|
|
|
|
if(ac > 1)
|
|
|
|
{
|
|
|
|
if(strcmp(av[1], "--all-for-coverage") == 0)
|
|
|
|
{
|
|
|
|
coverage = true;
|
2003-07-24 10:58:40 -04:00
|
|
|
if(ac > 2)
|
|
|
|
{
|
|
|
|
outname = av[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outname = 0;
|
|
|
|
}
|
2003-02-19 17:36:19 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outname = av[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(coverage)
|
|
|
|
{
|
2003-07-24 10:58:40 -04:00
|
|
|
return DumpForCoverage(outname);
|
2003-02-19 17:36:19 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DumpHTML(outname);
|
|
|
|
}
|
|
|
|
}
|