2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-09-19 17:05:28 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-09-19 17:05:28 +04:00
|
|
|
|
2009-09-28 19: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.
|
|
|
|
============================================================================*/
|
2007-09-19 17:05:28 +04:00
|
|
|
|
|
|
|
#include "cmDocumentationFormatterText.h"
|
2007-10-22 20:49:09 +04:00
|
|
|
#include "cmDocumentationSection.h"
|
2007-09-19 17:05:28 +04:00
|
|
|
|
|
|
|
cmDocumentationFormatterText::cmDocumentationFormatterText()
|
|
|
|
:cmDocumentationFormatter()
|
|
|
|
,TextWidth(77)
|
|
|
|
,TextIndent("")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
void cmDocumentationFormatterText
|
|
|
|
::PrintSection(std::ostream& os,
|
|
|
|
const cmDocumentationSection §ion,
|
|
|
|
const char* name)
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2009-06-28 16:05:22 +04:00
|
|
|
if(name && (strcmp(name, "SingleItem")!=0))
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os <<
|
|
|
|
"---------------------------------------"
|
|
|
|
"---------------------------------------\n";
|
|
|
|
os << name << "\n\n";
|
|
|
|
}
|
2007-10-22 20:49:09 +04:00
|
|
|
|
|
|
|
const std::vector<cmDocumentationEntry> &entries =
|
|
|
|
section.GetEntries();
|
|
|
|
for(std::vector<cmDocumentationEntry>::const_iterator op = entries.begin();
|
|
|
|
op != entries.end(); ++op)
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
if(op->Name.size())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
os << " " << op->Name << "\n";
|
2007-09-19 17:05:28 +04:00
|
|
|
this->TextIndent = " ";
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintFormatted(os, op->Brief.c_str());
|
|
|
|
if(op->Full.size())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os << "\n";
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintFormatted(os, op->Full.c_str());
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->TextIndent = "";
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintFormatted(os, op->Brief.c_str());
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterText::PrintPreformatted(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
bool newline = true;
|
|
|
|
for(const char* ptr = text; *ptr; ++ptr)
|
|
|
|
{
|
2008-03-08 00:01:22 +03:00
|
|
|
if(newline && *ptr != '\n')
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os << this->TextIndent;
|
|
|
|
newline = false;
|
|
|
|
}
|
|
|
|
os << *ptr;
|
|
|
|
if(*ptr == '\n')
|
|
|
|
{
|
|
|
|
newline = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterText::PrintParagraph(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
os << this->TextIndent;
|
|
|
|
this->PrintColumn(os, text);
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterText::SetIndent(const char* indent)
|
|
|
|
{
|
|
|
|
this->TextIndent = indent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterText::PrintColumn(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
// Print text arranged in an indented column of fixed witdh.
|
|
|
|
const char* l = text;
|
2010-05-12 18:22:55 +04:00
|
|
|
long column = 0;
|
2007-09-19 17:05:28 +04:00
|
|
|
bool newSentence = false;
|
|
|
|
bool firstLine = true;
|
|
|
|
int width = this->TextWidth - static_cast<int>(strlen(this->TextIndent));
|
|
|
|
|
|
|
|
// Loop until the end of the text.
|
|
|
|
while(*l)
|
|
|
|
{
|
|
|
|
// Parse the next word.
|
|
|
|
const char* r = l;
|
|
|
|
while(*r && (*r != '\n') && (*r != ' ')) { ++r; }
|
|
|
|
|
|
|
|
// Does it fit on this line?
|
|
|
|
if(r-l < (width-column-(newSentence?1:0)))
|
|
|
|
{
|
|
|
|
// Word fits on this line.
|
|
|
|
if(r > l)
|
|
|
|
{
|
|
|
|
if(column)
|
|
|
|
{
|
|
|
|
// Not first word on line. Separate from the previous word
|
|
|
|
// by a space, or two if this is a new sentence.
|
|
|
|
if(newSentence)
|
|
|
|
{
|
|
|
|
os << " ";
|
|
|
|
column += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << " ";
|
|
|
|
column += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// First word on line. Print indentation unless this is the
|
|
|
|
// first line.
|
|
|
|
os << (firstLine?"":this->TextIndent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print the word.
|
|
|
|
os.write(l, static_cast<long>(r-l));
|
|
|
|
newSentence = (*(r-1) == '.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*r == '\n')
|
|
|
|
{
|
|
|
|
// Text provided a newline. Start a new line.
|
|
|
|
os << "\n";
|
|
|
|
++r;
|
|
|
|
column = 0;
|
|
|
|
firstLine = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No provided newline. Continue this line.
|
|
|
|
column += static_cast<long>(r-l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Word does not fit on this line. Start a new line.
|
|
|
|
os << "\n";
|
|
|
|
firstLine = false;
|
|
|
|
if(r > l)
|
|
|
|
{
|
|
|
|
os << this->TextIndent;
|
|
|
|
os.write(l, static_cast<long>(r-l));
|
|
|
|
column = static_cast<long>(r-l);
|
|
|
|
newSentence = (*(r-1) == '.');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
column = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move to beginning of next word. Skip over whitespace.
|
|
|
|
l = r;
|
|
|
|
while(*l && (*l == ' ')) { ++l; }
|
|
|
|
}
|
|
|
|
}
|