2013-10-01 04:30:57 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2013 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmRST.h"
|
|
|
|
|
2015-02-10 23:50:16 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmSystemTools.h"
|
2013-10-17 23:16:44 +04:00
|
|
|
#include "cmVersion.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
|
|
|
|
#include <algorithm>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2013-10-01 04:30:57 +04:00
|
|
|
#include <ctype.h>
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <iterator>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <utility>
|
2013-10-01 04:30:57 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmRST::cmRST(std::ostream& os, std::string const& docroot)
|
|
|
|
: OS(os)
|
|
|
|
, DocRoot(docroot)
|
|
|
|
, IncludeDepth(0)
|
|
|
|
, OutputLinePending(false)
|
|
|
|
, LastLineEndedInColonColon(false)
|
|
|
|
, Markup(MarkupNone)
|
|
|
|
, Directive(DirectiveNone)
|
|
|
|
, CMakeDirective("^.. (cmake:)?("
|
|
|
|
"command|variable"
|
|
|
|
")::[ \t]+([^ \t\n]+)$")
|
|
|
|
, CMakeModuleDirective("^.. cmake-module::[ \t]+([^ \t\n]+)$")
|
|
|
|
, ParsedLiteralDirective("^.. parsed-literal::[ \t]*(.*)$")
|
|
|
|
, CodeBlockDirective("^.. code-block::[ \t]*(.*)$")
|
|
|
|
, ReplaceDirective("^.. (\\|[^|]+\\|) replace::[ \t]*(.*)$")
|
|
|
|
, IncludeDirective("^.. include::[ \t]+([^ \t\n]+)$")
|
|
|
|
, TocTreeDirective("^.. toctree::[ \t]*(.*)$")
|
|
|
|
, ProductionListDirective("^.. productionlist::[ \t]*(.*)$")
|
|
|
|
, NoteDirective("^.. note::[ \t]*(.*)$")
|
|
|
|
, ModuleRST("^#\\[(=*)\\[\\.rst:$")
|
|
|
|
, CMakeRole("(:cmake)?:("
|
|
|
|
"command|generator|variable|module|policy|"
|
|
|
|
"prop_cache|prop_dir|prop_gbl|prop_inst|prop_sf|"
|
|
|
|
"prop_test|prop_tgt|"
|
|
|
|
"manual"
|
|
|
|
"):`(<*([^`<]|[^` \t]<)*)([ \t]+<[^`]*>)?`")
|
|
|
|
, Substitution("(^|[^A-Za-z0-9_])"
|
|
|
|
"((\\|[^| \t\r\n]([^|\r\n]*[^| \t\r\n])?\\|)(__|_|))"
|
|
|
|
"([^A-Za-z0-9_]|$)")
|
|
|
|
, TocTreeLink("^.*[ \t]+<([^>]+)>$")
|
2013-10-01 04:30:57 +04:00
|
|
|
{
|
2013-10-17 23:16:44 +04:00
|
|
|
this->Replace["|release|"] = cmVersion::GetCMakeVersion();
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cmRST::ProcessFile(std::string const& fname, bool isModule)
|
|
|
|
{
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(fname.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (fin) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->DocDir = cmSystemTools::GetFilenamePath(fname);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (isModule) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->ProcessModule(fin);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->ProcessRST(fin);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
this->OutputLinePending = true;
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessRST(std::istream& is)
|
|
|
|
{
|
|
|
|
std::string line;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (cmSystemTools::GetLineFromStream(is, line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->ProcessLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessModule(std::istream& is)
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::string rst;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (cmSystemTools::GetLineFromStream(is, line)) {
|
|
|
|
if (!rst.empty() && rst != "#") {
|
2013-10-23 03:49:45 +04:00
|
|
|
// Bracket mode: check for end bracket
|
|
|
|
std::string::size_type pos = line.find(rst);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (pos == line.npos) {
|
2013-10-23 03:49:45 +04:00
|
|
|
this->ProcessLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (line[0] != '#') {
|
2013-10-23 03:49:45 +04:00
|
|
|
this->ProcessLine(line.substr(0, pos));
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
rst = "";
|
|
|
|
this->Reset();
|
|
|
|
this->OutputLinePending = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-10-23 03:49:45 +04:00
|
|
|
// Line mode: check for .rst start (bracket or line)
|
2016-05-16 17:34:04 +03:00
|
|
|
if (rst == "#") {
|
|
|
|
if (line == "#") {
|
2013-10-23 03:49:45 +04:00
|
|
|
this->ProcessLine("");
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (line.substr(0, 2) == "# ") {
|
2013-10-23 03:49:45 +04:00
|
|
|
this->ProcessLine(line.substr(2, line.npos));
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-10-23 03:49:45 +04:00
|
|
|
rst = "";
|
|
|
|
this->Reset();
|
|
|
|
this->OutputLinePending = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (line == "#.rst:") {
|
2013-10-23 03:49:45 +04:00
|
|
|
rst = "#";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->ModuleRST.find(line)) {
|
2013-10-23 03:49:45 +04:00
|
|
|
rst = "]" + this->ModuleRST.match(1) + "]";
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (rst == "#") {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Reset();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::Reset()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->MarkupLines.empty()) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->UnindentLines(this->MarkupLines);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
switch (this->Directive) {
|
|
|
|
case DirectiveNone:
|
|
|
|
break;
|
|
|
|
case DirectiveParsedLiteral:
|
|
|
|
this->ProcessDirectiveParsedLiteral();
|
|
|
|
break;
|
|
|
|
case DirectiveLiteralBlock:
|
|
|
|
this->ProcessDirectiveLiteralBlock();
|
|
|
|
break;
|
|
|
|
case DirectiveCodeBlock:
|
|
|
|
this->ProcessDirectiveCodeBlock();
|
|
|
|
break;
|
|
|
|
case DirectiveReplace:
|
|
|
|
this->ProcessDirectiveReplace();
|
|
|
|
break;
|
|
|
|
case DirectiveTocTree:
|
|
|
|
this->ProcessDirectiveTocTree();
|
|
|
|
break;
|
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Markup = MarkupNone;
|
|
|
|
this->Directive = DirectiveNone;
|
|
|
|
this->MarkupLines.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessLine(std::string const& line)
|
|
|
|
{
|
2013-10-21 23:31:44 +04:00
|
|
|
bool lastLineEndedInColonColon = this->LastLineEndedInColonColon;
|
|
|
|
this->LastLineEndedInColonColon = false;
|
|
|
|
|
2013-10-01 04:30:57 +04:00
|
|
|
// A line starting in .. is an explicit markup start.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (line == ".." || (line.size() >= 3 && line[0] == '.' && line[1] == '.' &&
|
|
|
|
isspace(line[2]))) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Reset();
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Markup =
|
|
|
|
(line.find_first_not_of(" \t", 2) == line.npos ? MarkupEmpty
|
|
|
|
: MarkupNormal);
|
|
|
|
if (this->CMakeDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Output cmake domain directives and their content normally.
|
|
|
|
this->NormalLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->CMakeModuleDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Process cmake-module directive: scan .cmake file comments.
|
|
|
|
std::string file = this->CMakeModuleDirective.match(1);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (file.empty() || !this->ProcessInclude(file, IncludeModule)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->NormalLine(line);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->ParsedLiteralDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Record the literal lines to output after whole block.
|
|
|
|
this->Directive = DirectiveParsedLiteral;
|
|
|
|
this->MarkupLines.push_back(this->ParsedLiteralDirective.match(1));
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->CodeBlockDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Record the literal lines to output after whole block.
|
|
|
|
// Ignore the language spec and record the opening line as blank.
|
|
|
|
this->Directive = DirectiveCodeBlock;
|
|
|
|
this->MarkupLines.push_back("");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->ReplaceDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Record the replace directive content.
|
|
|
|
this->Directive = DirectiveReplace;
|
|
|
|
this->ReplaceName = this->ReplaceDirective.match(1);
|
|
|
|
this->MarkupLines.push_back(this->ReplaceDirective.match(2));
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->IncludeDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Process the include directive or output the directive and its
|
|
|
|
// content normally if it fails.
|
|
|
|
std::string file = this->IncludeDirective.match(1);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (file.empty() || !this->ProcessInclude(file, IncludeNormal)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->NormalLine(line);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->TocTreeDirective.find(line)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
// Record the toctree entries to process after whole block.
|
|
|
|
this->Directive = DirectiveTocTree;
|
|
|
|
this->MarkupLines.push_back(this->TocTreeDirective.match(1));
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->ProductionListDirective.find(line)) {
|
2013-10-30 00:18:29 +04:00
|
|
|
// Output productionlist directives and their content normally.
|
|
|
|
this->NormalLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->NoteDirective.find(line)) {
|
2013-10-30 00:18:29 +04:00
|
|
|
// Output note directives and their content normally.
|
|
|
|
this->NormalLine(line);
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
// An explicit markup start followed nothing but whitespace and a
|
|
|
|
// blank line does not consume any indented text following.
|
2016-05-16 17:34:04 +03:00
|
|
|
else if (this->Markup == MarkupEmpty && line.empty()) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->NormalLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
// Indented lines following an explicit markup start are explicit markup.
|
2016-05-16 17:34:04 +03:00
|
|
|
else if (this->Markup && (line.empty() || isspace(line[0]))) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Markup = MarkupNormal;
|
|
|
|
// Record markup lines if the start line was recorded.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->MarkupLines.empty()) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->MarkupLines.push_back(line);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-21 23:31:44 +04:00
|
|
|
// A blank line following a paragraph ending in "::" starts a literal block.
|
2016-05-16 17:34:04 +03:00
|
|
|
else if (lastLineEndedInColonColon && line.empty()) {
|
2013-10-21 23:31:44 +04:00
|
|
|
// Record the literal lines to output after whole block.
|
|
|
|
this->Markup = MarkupNormal;
|
|
|
|
this->Directive = DirectiveLiteralBlock;
|
|
|
|
this->MarkupLines.push_back("");
|
|
|
|
this->OutputLine("", false);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
// Print non-markup lines.
|
2016-05-16 17:34:04 +03:00
|
|
|
else {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->NormalLine(line);
|
2016-05-16 17:34:04 +03:00
|
|
|
this->LastLineEndedInColonColon =
|
|
|
|
(line.size() >= 2 && line[line.size() - 2] == ':' &&
|
|
|
|
line[line.size() - 1] == ':');
|
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::NormalLine(std::string const& line)
|
|
|
|
{
|
|
|
|
this->Reset();
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OutputLine(line, true);
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
2013-10-21 22:53:25 +04:00
|
|
|
void cmRST::OutputLine(std::string const& line_in, bool inlineMarkup)
|
2013-10-01 04:30:57 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->OutputLinePending) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->OS << "\n";
|
|
|
|
this->OutputLinePending = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (inlineMarkup) {
|
2013-10-21 22:53:25 +04:00
|
|
|
std::string line = this->ReplaceSubstitutions(line_in);
|
|
|
|
std::string::size_type pos = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (this->CMakeRole.find(line.c_str() + pos)) {
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OS << line.substr(pos, this->CMakeRole.start());
|
|
|
|
std::string text = this->CMakeRole.match(3);
|
|
|
|
// If a command reference has no explicit target and
|
|
|
|
// no explicit "(...)" then add "()" to the text.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CMakeRole.match(2) == "command" &&
|
|
|
|
this->CMakeRole.match(5).empty() &&
|
|
|
|
text.find_first_of("()") == text.npos) {
|
2013-10-21 22:53:25 +04:00
|
|
|
text += "()";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OS << "``" << text << "``";
|
|
|
|
pos += this->CMakeRole.end();
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->OS << line.substr(pos) << "\n";
|
|
|
|
} else {
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OS << line_in << "\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmRST::ReplaceSubstitutions(std::string const& line)
|
|
|
|
{
|
|
|
|
std::string out;
|
|
|
|
std::string::size_type pos = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (this->Substitution.find(line.c_str() + pos)) {
|
2013-10-01 04:30:57 +04:00
|
|
|
std::string::size_type start = this->Substitution.start(2);
|
|
|
|
std::string::size_type end = this->Substitution.end(2);
|
|
|
|
std::string substitute = this->Substitution.match(3);
|
2016-05-16 17:34:04 +03:00
|
|
|
std::map<std::string, std::string>::iterator replace =
|
|
|
|
this->Replace.find(substitute);
|
|
|
|
if (replace != this->Replace.end()) {
|
2014-02-10 09:21:34 +04:00
|
|
|
std::pair<std::set<std::string>::iterator, bool> replaced =
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Replaced.insert(substitute);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (replaced.second) {
|
2013-10-01 04:30:57 +04:00
|
|
|
substitute = this->ReplaceSubstitutions(replace->second);
|
|
|
|
this->Replaced.erase(replaced.first);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
out += line.substr(pos, start);
|
|
|
|
out += substitute;
|
|
|
|
pos += end;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
out += line.substr(pos);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2013-10-21 22:53:25 +04:00
|
|
|
void cmRST::OutputMarkupLines(bool inlineMarkup)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::iterator i = this->MarkupLines.begin();
|
|
|
|
i != this->MarkupLines.end(); ++i) {
|
2013-10-21 22:53:25 +04:00
|
|
|
std::string line = *i;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!line.empty()) {
|
2013-10-21 22:53:25 +04:00
|
|
|
line = " " + line;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->OutputLine(line, inlineMarkup);
|
|
|
|
}
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OutputLinePending = true;
|
|
|
|
}
|
|
|
|
|
2013-10-01 04:30:57 +04:00
|
|
|
bool cmRST::ProcessInclude(std::string file, IncludeType type)
|
|
|
|
{
|
|
|
|
bool found = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->IncludeDepth < 10) {
|
2013-10-01 04:30:57 +04:00
|
|
|
cmRST r(this->OS, this->DocRoot);
|
|
|
|
r.IncludeDepth = this->IncludeDepth + 1;
|
|
|
|
r.OutputLinePending = this->OutputLinePending;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (type != IncludeTocTree) {
|
2013-10-01 04:30:57 +04:00
|
|
|
r.Replace = this->Replace;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (file[0] == '/') {
|
2013-10-01 04:30:57 +04:00
|
|
|
file = this->DocRoot + file;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-10-01 04:30:57 +04:00
|
|
|
file = this->DocDir + "/" + file;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
found = r.ProcessFile(file, type == IncludeModule);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (type != IncludeTocTree) {
|
2013-10-01 04:30:57 +04:00
|
|
|
this->Replace = r.Replace;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->OutputLinePending = r.OutputLinePending;
|
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessDirectiveParsedLiteral()
|
|
|
|
{
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OutputMarkupLines(true);
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
2013-10-21 23:31:44 +04:00
|
|
|
void cmRST::ProcessDirectiveLiteralBlock()
|
|
|
|
{
|
|
|
|
this->OutputMarkupLines(false);
|
|
|
|
}
|
|
|
|
|
2013-10-01 04:30:57 +04:00
|
|
|
void cmRST::ProcessDirectiveCodeBlock()
|
|
|
|
{
|
2013-10-21 22:53:25 +04:00
|
|
|
this->OutputMarkupLines(false);
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessDirectiveReplace()
|
|
|
|
{
|
|
|
|
// Record markup lines as replacement text.
|
|
|
|
std::string& replacement = this->Replace[this->ReplaceName];
|
2015-01-07 10:58:51 +03:00
|
|
|
replacement += cmJoin(this->MarkupLines, " ");
|
2013-10-01 04:30:57 +04:00
|
|
|
this->ReplaceName = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::ProcessDirectiveTocTree()
|
|
|
|
{
|
|
|
|
// Process documents referenced by toctree directive.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::iterator i = this->MarkupLines.begin();
|
|
|
|
i != this->MarkupLines.end(); ++i) {
|
2016-05-02 20:51:26 +03:00
|
|
|
std::string const& line = *i;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!line.empty() && line[0] != ':') {
|
|
|
|
if (this->TocTreeLink.find(line)) {
|
2016-05-02 20:51:26 +03:00
|
|
|
std::string const& link = this->TocTreeLink.match(1);
|
|
|
|
this->ProcessInclude(link + ".rst", IncludeTocTree);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2016-05-02 20:51:26 +03:00
|
|
|
this->ProcessInclude(line + ".rst", IncludeTocTree);
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmRST::UnindentLines(std::vector<std::string>& lines)
|
|
|
|
{
|
|
|
|
// Remove the common indentation from the second and later lines.
|
|
|
|
std::string indentText;
|
|
|
|
std::string::size_type indentEnd = 0;
|
|
|
|
bool first = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (size_t i = 1; i < lines.size(); ++i) {
|
2013-10-01 04:30:57 +04:00
|
|
|
std::string const& line = lines[i];
|
|
|
|
|
|
|
|
// Do not consider empty lines.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (line.empty()) {
|
2013-10-01 04:30:57 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
|
|
|
|
// Record indentation on first non-empty line.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (first) {
|
2013-10-01 04:30:57 +04:00
|
|
|
first = false;
|
|
|
|
indentEnd = line.find_first_not_of(" \t");
|
|
|
|
indentText = line.substr(0, indentEnd);
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
|
|
|
|
// Truncate indentation to match that on this line.
|
2015-02-12 01:43:55 +03:00
|
|
|
indentEnd = std::min(indentEnd, line.size());
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::string::size_type j = 0; j != indentEnd; ++j) {
|
|
|
|
if (line[j] != indentText[j]) {
|
2013-10-01 04:30:57 +04:00
|
|
|
indentEnd = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
|
|
|
|
// Update second and later lines.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (size_t i = 1; i < lines.size(); ++i) {
|
2013-10-01 04:30:57 +04:00
|
|
|
std::string& line = lines[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!line.empty()) {
|
2013-10-01 04:30:57 +04:00
|
|
|
line = line.substr(indentEnd);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-01 04:30:57 +04:00
|
|
|
|
2015-02-02 04:13:54 +03:00
|
|
|
std::vector<std::string>::const_iterator it = lines.begin();
|
|
|
|
size_t leadingEmpty = std::distance(it, cmFindNot(lines, std::string()));
|
2013-10-01 04:30:57 +04:00
|
|
|
|
2015-02-02 04:13:54 +03:00
|
|
|
std::vector<std::string>::const_reverse_iterator rit = lines.rbegin();
|
2016-05-16 17:34:04 +03:00
|
|
|
size_t trailingEmpty =
|
|
|
|
std::distance(rit, cmFindNot(cmReverseRange(lines), std::string()));
|
2015-01-30 02:03:24 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::string>::iterator contentEnd = cmRotate(
|
|
|
|
lines.begin(), lines.begin() + leadingEmpty, lines.end() - trailingEmpty);
|
2015-01-30 02:03:24 +03:00
|
|
|
lines.erase(contentEnd, lines.end());
|
2013-10-01 04:30:57 +04:00
|
|
|
}
|