lyx_mirror/src/output_docbook.cpp

1067 lines
33 KiB
C++
Raw Normal View History

/**
* \file output_docbook.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author José Matos
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Buffer.h"
#include "buffer_funcs.h"
#include "BufferParams.h"
#include "Font.h"
2020-06-08 21:27:49 +00:00
#include "InsetList.h"
#include "Paragraph.h"
#include "ParagraphList.h"
#include "ParagraphParameters.h"
#include "xml.h"
#include "Text.h"
#include "TextClass.h"
2020-06-08 21:27:49 +00:00
#include "insets/InsetBibtex.h"
#include "insets/InsetBibitem.h"
2020-06-08 21:27:49 +00:00
#include "insets/InsetLabel.h"
#include "insets/InsetNote.h"
#include "support/lassert.h"
#include "support/regex.h"
2020-06-08 21:27:49 +00:00
#include <stack>
#include <iostream>
2020-06-08 21:27:49 +00:00
#include <algorithm>
#include <sstream>
using namespace std;
using namespace lyx::support;
namespace lyx {
namespace {
std::string fontToDocBookTag(xml::FontTypes type)
2020-07-08 16:15:34 +00:00
{
switch (type) {
case xml::FontTypes::FT_EMPH:
case xml::FontTypes::FT_BOLD:
return "emphasis";
case xml::FontTypes::FT_NOUN:
return "person";
case xml::FontTypes::FT_UBAR:
case xml::FontTypes::FT_WAVE:
case xml::FontTypes::FT_DBAR:
case xml::FontTypes::FT_SOUT:
case xml::FontTypes::FT_XOUT:
case xml::FontTypes::FT_ITALIC:
case xml::FontTypes::FT_UPRIGHT:
case xml::FontTypes::FT_SLANTED:
case xml::FontTypes::FT_SMALLCAPS:
case xml::FontTypes::FT_ROMAN:
case xml::FontTypes::FT_SANS:
return "emphasis";
case xml::FontTypes::FT_TYPE:
return "code";
case xml::FontTypes::FT_SIZE_TINY:
case xml::FontTypes::FT_SIZE_SCRIPT:
case xml::FontTypes::FT_SIZE_FOOTNOTE:
case xml::FontTypes::FT_SIZE_SMALL:
case xml::FontTypes::FT_SIZE_NORMAL:
case xml::FontTypes::FT_SIZE_LARGE:
case xml::FontTypes::FT_SIZE_LARGER:
case xml::FontTypes::FT_SIZE_LARGEST:
case xml::FontTypes::FT_SIZE_HUGE:
case xml::FontTypes::FT_SIZE_HUGER:
case xml::FontTypes::FT_SIZE_INCREASE:
case xml::FontTypes::FT_SIZE_DECREASE:
return "emphasis";
default:
return "";
}
}
2020-07-08 16:15:34 +00:00
string fontToRole(xml::FontTypes type)
{
// Specific fonts are achieved with roles. The only common ones are "" for basic emphasis,
// and "bold"/"strong" for bold. With some specific options, other roles are copied into
// HTML output (via the DocBook XSLT sheets); otherwise, if not recognised, they are just ignored.
// Hence, it is not a problem to have many roles by default here.
// See https://www.sourceware.org/ml/docbook/2003-05/msg00269.html
switch (type) {
case xml::FontTypes::FT_ITALIC:
case xml::FontTypes::FT_EMPH:
return "";
case xml::FontTypes::FT_BOLD:
return "bold";
case xml::FontTypes::FT_NOUN: // Outputs a <person>
case xml::FontTypes::FT_TYPE: // Outputs a <code>
return "";
2020-07-19 19:00:25 +00:00
case xml::FontTypes::FT_UBAR:
return "underline";
2020-07-08 16:15:34 +00:00
// All other roles are non-standard for DocBook.
2020-07-08 16:15:34 +00:00
case xml::FontTypes::FT_WAVE:
return "wave";
case xml::FontTypes::FT_DBAR:
return "dbar";
case xml::FontTypes::FT_SOUT:
return "sout";
case xml::FontTypes::FT_XOUT:
return "xout";
case xml::FontTypes::FT_UPRIGHT:
return "upright";
case xml::FontTypes::FT_SLANTED:
return "slanted";
case xml::FontTypes::FT_SMALLCAPS:
return "smallcaps";
case xml::FontTypes::FT_ROMAN:
return "roman";
case xml::FontTypes::FT_SANS:
return "sans";
case xml::FontTypes::FT_SIZE_TINY:
return "tiny";
case xml::FontTypes::FT_SIZE_SCRIPT:
return "size_script";
case xml::FontTypes::FT_SIZE_FOOTNOTE:
return "size_footnote";
case xml::FontTypes::FT_SIZE_SMALL:
return "size_small";
case xml::FontTypes::FT_SIZE_NORMAL:
return "size_normal";
case xml::FontTypes::FT_SIZE_LARGE:
return "size_large";
case xml::FontTypes::FT_SIZE_LARGER:
return "size_larger";
case xml::FontTypes::FT_SIZE_LARGEST:
return "size_largest";
case xml::FontTypes::FT_SIZE_HUGE:
return "size_huge";
case xml::FontTypes::FT_SIZE_HUGER:
return "size_huger";
case xml::FontTypes::FT_SIZE_INCREASE:
return "size_increase";
case xml::FontTypes::FT_SIZE_DECREASE:
return "size_decrease";
default:
return "";
}
}
2020-08-18 03:40:34 +00:00
2020-06-08 21:27:49 +00:00
string fontToAttribute(xml::FontTypes type) {
2020-07-08 16:15:34 +00:00
// If there is a role (i.e. nonstandard use of a tag), output the attribute. Otherwise, the sheer tag is sufficient
// for the font.
string role = fontToRole(type);
if (!role.empty()) {
return "role='" + role + "'";
} else {
return "";
}
2020-06-08 21:27:49 +00:00
}
2020-06-08 21:27:49 +00:00
xml::FontTag docbookStartFontTag(xml::FontTypes type)
{
2020-07-08 16:15:34 +00:00
return xml::FontTag(from_utf8(fontToDocBookTag(type)), from_utf8(fontToAttribute(type)), type);
}
2020-06-08 21:27:49 +00:00
xml::EndFontTag docbookEndFontTag(xml::FontTypes type)
{
2020-07-08 16:15:34 +00:00
return xml::EndFontTag(from_utf8(fontToDocBookTag(type)), type);
2020-06-08 21:27:49 +00:00
}
// Convenience functions to open and close tags. First, very low-level ones to ensure a consistent new-line behaviour.
// Block style:
// Content before
// <blocktag>
// Contents of the block.
// </blocktag>
// Content after
// Paragraph style:
// Content before
// <paratag>Contents of the paragraph.</paratag>
// Content after
// Inline style:
// Content before<inlinetag>Contents of the paragraph.</inlinetag>Content after
void openInlineTag(XMLStream & xs, const std::string & tag, const std::string & attr)
{
xs << xml::StartTag(tag, attr);
}
2020-06-08 21:27:49 +00:00
void closeInlineTag(XMLStream & xs, const std::string & tag)
{
xs << xml::EndTag(tag);
}
void openParTag(XMLStream & xs, const std::string & tag, const std::string & attr)
{
if (!xs.isLastTagCR())
xs << xml::CR();
xs << xml::StartTag(tag, attr);
}
void closeParTag(XMLStream & xs, const std::string & tag)
{
xs << xml::EndTag(tag);
xs << xml::CR();
}
void openBlockTag(XMLStream & xs, const std::string & tag, const std::string & attr)
{
if (!xs.isLastTagCR())
xs << xml::CR();
xs << xml::StartTag(tag, attr);
xs << xml::CR();
}
void closeBlockTag(XMLStream & xs, const std::string & tag)
2020-07-08 16:15:34 +00:00
{
2020-08-18 03:37:46 +00:00
if (!xs.isLastTagCR())
xs << xml::CR();
xs << xml::EndTag(tag);
xs << xml::CR();
}
void openTag(XMLStream & xs, const std::string & tag, const std::string & attr, const std::string & tagtype)
{
if (tag.empty() || tag == "NONE")
return;
if (tag == "para" || tagtype == "paragraph") // Special case for <para>: always considered as a paragraph.
openParTag(xs, tag, attr);
else if (tagtype == "block")
openBlockTag(xs, tag, attr);
else if (tagtype == "inline")
openInlineTag(xs, tag, attr);
else
xs.writeError("Unrecognised tag type '" + tagtype + "' for '" + tag + " " + attr + "'");
}
void closeTag(XMLStream & xs, const std::string & tag, const std::string & tagtype)
{
if (tag.empty() || tag == "NONE")
return;
if (tag == "para" || tagtype == "paragraph") // Special case for <para>: always considered as a paragraph.
closeParTag(xs, tag);
else if (tagtype == "block")
closeBlockTag(xs, tag);
else if (tagtype == "inline")
closeInlineTag(xs, tag);
else
xs.writeError("Unrecognised tag type '" + tagtype + "' for '" + tag + "'");
}
// Higher-level convenience functions.
void openParTag(XMLStream & xs, const Paragraph * par, const Paragraph * prevpar)
{
Layout const & lay = par->layout();
if (par == prevpar)
prevpar = nullptr;
// When should the wrapper be opened here? Only if the previous paragraph has the SAME wrapper tag
// (usually, they won't have the same layout) and the CURRENT one allows merging.
// The main use case is author information in several paragraphs: if the name of the author is the
// first paragraph of an author, then merging with the previous tag does not make sense. Say the
// next paragraph is the affiliation, then it should be output in the same <author> tag (different
// layout, same wrapper tag).
bool openWrapper = lay.docbookwrappertag() != "NONE";
if (prevpar != nullptr) {
Layout const & prevlay = prevpar->layout();
if (prevlay.docbookwrappertag() != "NONE") {
openWrapper = prevlay.docbookwrappertag() == lay.docbookwrappertag()
&& !lay.docbookwrappermergewithprevious();
}
}
// Main logic.
if (openWrapper)
openTag(xs, lay.docbookwrappertag(), lay.docbookwrapperattr(), lay.docbookwrappertagtype());
2020-06-08 21:27:49 +00:00
const string & tag = lay.docbooktag();
if (tag != "NONE") {
auto xmltag = xml::ParTag(tag, lay.docbookattr());
if (!xs.isTagOpen(xmltag, 1)) // Don't nest a paragraph directly in a paragraph.
// TODO: required or not?
// TODO: avoid creating a ParTag object just for this query...
openTag(xs, lay.docbooktag(), lay.docbookattr(), lay.docbooktagtype());
}
openTag(xs, lay.docbookitemtag(), lay.docbookitemattr(), lay.docbookitemtagtype());
openTag(xs, lay.docbookiteminnertag(), lay.docbookiteminnerattr(), lay.docbookiteminnertagtype());
}
void closeParTag(XMLStream & xs, Paragraph const * par, Paragraph const * nextpar)
2020-07-08 16:15:34 +00:00
{
if (par == nextpar)
nextpar = nullptr;
// See comment in openParTag.
Layout const & lay = par->layout();
bool closeWrapper = lay.docbookwrappertag() != "NONE";
if (nextpar != nullptr) {
Layout const & nextlay = nextpar->layout();
if (nextlay.docbookwrappertag() != "NONE") {
closeWrapper = nextlay.docbookwrappertag() == lay.docbookwrappertag()
&& !nextlay.docbookwrappermergewithprevious();
}
}
// Main logic.
closeTag(xs, lay.docbookiteminnertag(), lay.docbookiteminnertagtype());
closeTag(xs, lay.docbookitemtag(), lay.docbookitemtagtype());
closeTag(xs, lay.docbooktag(), lay.docbooktagtype());
if (closeWrapper)
closeTag(xs, lay.docbookwrappertag(), lay.docbookwrappertagtype());
2020-06-08 21:27:49 +00:00
}
void openLabelTag(XMLStream & xs, Layout const & lay) // Mostly for definition lists.
2020-07-08 16:15:34 +00:00
{
openTag(xs, lay.docbookitemlabeltag(), lay.docbookitemlabelattr(), lay.docbookitemlabeltagtype());
2020-06-08 21:27:49 +00:00
}
void closeLabelTag(XMLStream & xs, Layout const & lay)
2020-07-08 16:15:34 +00:00
{
closeTag(xs, lay.docbookitemlabeltag(), lay.docbookitemlabeltagtype());
}
2020-06-08 21:27:49 +00:00
void openItemTag(XMLStream & xs, Layout const & lay)
{
openTag(xs, lay.docbookitemtag(), lay.docbookitemattr(), lay.docbookitemtagtype());
}
2020-06-08 21:27:49 +00:00
void closeItemTag(XMLStream & xs, Layout const & lay)
2020-07-08 16:15:34 +00:00
{
closeTag(xs, lay.docbookitemtag(), lay.docbookitemtagtype());
2020-06-08 21:27:49 +00:00
}
void makeAny(
Text const &,
Buffer const &,
XMLStream &,
OutputParams const &,
ParagraphList::const_iterator);
void makeParagraphBibliography(
Buffer const & buf,
XMLStream & xs,
OutputParams const & runparams,
Text const & text,
ParagraphList::const_iterator const & par)
{
// If this is the first paragraph in a bibliography, open the bibliography tag.
auto pbegin_before = text.paragraphs().getParagraphBefore(par);
if (pbegin_before->layout().latextype != LATEX_BIB_ENVIRONMENT) {
xs << xml::StartTag("bibliography");
xs << xml::CR();
}
// Start the precooked bibliography entry. This is very much like opening a paragraph tag.
// Don't forget the citation ID!
docstring attr;
for (auto i = 0; i < par->size(); ++i) {
Inset const *ip = par->getInset(i);
if (!ip)
continue;
if (const auto * bibitem = dynamic_cast<const InsetBibitem*>(ip)) {
attr = from_utf8("xml:id='") + bibitem->getParam("key") + from_utf8("'");
break;
}
}
xs << xml::StartTag(from_utf8("bibliomixed"), attr);
// Generate the entry.
auto const begin = text.paragraphs().begin();
par->simpleDocBookOnePar(buf, xs, runparams, text.outerFont(std::distance(begin, par)), true, true, 0);
// End the precooked bibliography entry.
xs << xml::EndTag("bibliomixed");
xs << xml::CR();
// If this is the last paragraph in a bibliography, close the bibliography tag.
auto const end = text.paragraphs().end();
bool endBibliography = par == end;
if (!endBibliography) {
auto nextpar = par;
++nextpar;
endBibliography = par->layout().latextype != LATEX_BIB_ENVIRONMENT;
}
if (endBibliography) {
xs << xml::EndTag("bibliography");
xs << xml::CR();
}
}
void makeParagraph(
Buffer const & buf,
XMLStream & xs,
OutputParams const & runparams,
Text const & text,
ParagraphList::const_iterator const & par)
2020-07-08 16:15:34 +00:00
{
auto const begin = text.paragraphs().begin();
auto const end = text.paragraphs().end();
auto prevpar = text.paragraphs().getParagraphBefore(par);
// We want to open the paragraph tag if:
// (i) the current layout permits multiple paragraphs
// (ii) we are either not already inside a paragraph (HTMLIsBlock) OR
// we are, but this is not the first paragraph
//
// But there is also a special case, and we first see whether we are in it.
// We do not want to open the paragraph tag if this paragraph contains
// only one item, and that item is "inline", i.e., not HTMLIsBlock (such
// as a branch). On the other hand, if that single item has a font change
// applied to it, then we still do need to open the paragraph.
//
// Obviously, this is very fragile. The main reason we need to do this is
// because of branches, e.g., a branch that contains an entire new section.
// We do not really want to wrap that whole thing in a <div>...</div>.
bool special_case = false;
Inset const *specinset = par->size() == 1 ? par->getInset(0) : nullptr;
if (specinset && !specinset->getLayout().htmlisblock()) { // TODO: Convert htmlisblock to a DocBook parameter?
Layout const &style = par->layout();
FontInfo const first_font = style.labeltype == LABEL_MANUAL ?
style.labelfont : style.font;
FontInfo const our_font =
par->getFont(buf.masterBuffer()->params(), 0,
text.outerFont(std::distance(begin, par))).fontInfo();
2020-07-08 16:15:34 +00:00
if (first_font == our_font)
2020-07-08 16:15:34 +00:00
special_case = true;
}
// Plain layouts must be ignored.
if (!special_case && buf.params().documentClass().isPlainLayout(par->layout()) && !runparams.docbook_force_pars)
special_case = true;
// TODO: Could get rid of this with a DocBook equivalent to htmlisblock?
if (!special_case && par->size() == 1 && par->getInset(0)) {
Inset const * firstInset = par->getInset(0);
2020-07-08 16:15:34 +00:00
// Floats cannot be in paragraphs.
special_case = to_utf8(firstInset->layoutName()).substr(0, 6) == "Float:";
2020-07-08 16:15:34 +00:00
// Bibliographies cannot be in paragraphs.
if (!special_case && firstInset->asInsetCommand())
special_case = firstInset->asInsetCommand()->params().getCmdName() == "bibtex";
2020-07-08 16:15:34 +00:00
// Equations do not deserve their own paragraph (DocBook allows them outside paragraphs).
if (!special_case && firstInset->asInsetMath())
special_case = true;
2020-07-08 16:15:34 +00:00
// ERTs are in comments, not paragraphs.
if (!special_case && firstInset->lyxCode() == lyx::ERT_CODE)
special_case = true;
2020-07-08 16:15:34 +00:00
// Listings should not get into their own paragraph.
if (!special_case && firstInset->lyxCode() == lyx::LISTINGS_CODE)
special_case = true;
}
2020-07-08 16:15:34 +00:00
bool const open_par = runparams.docbook_make_pars
&& !runparams.docbook_in_par
&& !special_case;
2020-07-08 16:15:34 +00:00
// We want to issue the closing tag if either:
// (i) We opened it, and either docbook_in_par is false,
// or we're not in the last paragraph, anyway.
// (ii) We didn't open it and docbook_in_par is true,
// but we are in the first par, and there is a next par.
auto nextpar = par;
++nextpar;
bool const close_par = open_par && (!runparams.docbook_in_par);
2020-07-08 16:15:34 +00:00
// Determine if this paragraph has some real content. Things like new pages are not caught
// by Paragraph::empty(), even though they do not generate anything useful in DocBook.
odocstringstream os2;
XMLStream xs2(os2);
par->simpleDocBookOnePar(buf, xs2, runparams, text.outerFont(distance(begin, par)), open_par, close_par, 0);
docstring cleaned = os2.str();
static const lyx::regex reg("[ \\r\\n]*");
cleaned = from_utf8(lyx::regex_replace(to_utf8(cleaned), reg, string("")));
if (!cleaned.empty()) {
if (open_par)
openParTag(xs, &*par, prevpar);
xs << XMLStream::ESCAPE_NONE << os2.str();
if (close_par)
closeParTag(xs, &*par, (nextpar != end) ? &*nextpar : nullptr);
2020-07-08 16:15:34 +00:00
}
2020-06-08 21:27:49 +00:00
}
void makeEnvironment(
2020-07-08 16:15:34 +00:00
Buffer const &buf,
XMLStream &xs,
OutputParams const &runparams,
Text const &text,
ParagraphList::const_iterator const & par)
2020-07-08 16:15:34 +00:00
{
auto const end = text.paragraphs().end();
// Output the opening tag for this environment, but only if it has not been previously opened (condition
// implemented in openParTag).
auto prevpar = text.paragraphs().getParagraphBefore(par);
openParTag(xs, &*par, prevpar); // TODO: switch in layout for par/block?
// Generate the contents of this environment. There is a special case if this is like some environment.
Layout const & style = par->layout();
if (style.latextype == LATEX_COMMAND) {
// Nothing to do (otherwise, infinite loops).
} else if (style.latextype == LATEX_ENVIRONMENT ||
style.latextype == LATEX_LIST_ENVIRONMENT ||
style.latextype == LATEX_ITEM_ENVIRONMENT) {
// Open a wrapper tag if needed.
if (style.docbookitemwrappertag() != "NONE") {
xs << xml::StartTag(style.docbookitemwrappertag(), style.docbookitemwrapperattr());
xs << xml::CR();
}
2020-06-08 21:27:49 +00:00
// Generate the label, if need be. If it is taken from the text, sep != 0 and corresponds to the first
// character after the label.
pos_type sep = 0;
if (style.labeltype != LABEL_NO_LABEL && style.docbookitemlabeltag() != "NONE") {
// At least one condition must be met:
// - this environment is not a list
// - if this is a list, the label must not be manual (i.e. it must be taken from the layout)
if (style.latextype != LATEX_LIST_ENVIRONMENT || style.labeltype != LABEL_MANUAL) {
// Usual cases: maybe there is something specified at the layout level. Highly unlikely, though.
docstring const lbl = par->params().labelString();
if (lbl.empty()) {
2020-06-08 21:27:49 +00:00
xs << xml::CR();
} else {
openLabelTag(xs, style);
xs << lbl;
closeLabelTag(xs, style);
}
} else {
// Only variablelist gets here (or similar items defined as an extension in the layout).
openLabelTag(xs, style);
sep = par->firstWordDocBook(xs, runparams);
closeLabelTag(xs, style);
}
}
// Maybe the item is completely empty, i.e. if the first word ends at the end of the current paragraph
// AND if the next paragraph doesn't have the same depth (if there is such a paragraph).
// Common case: there is only the first word on the line, but there is a nested list instead
// of more text.
bool emptyItem = false;
if (sep == par->size()) { // If the separator is already at the end of this paragraph...
auto next_par = par;
++next_par;
if (next_par == text.paragraphs().end()) // There is no next paragraph.
emptyItem = true;
else // There is a next paragraph: check depth.
emptyItem = par->params().depth() >= next_par->params().depth();
}
if (emptyItem) {
// Avoid having an empty item, this is not valid DocBook. A single character is enough to force
// generation of a full <para>.
// TODO: this always worked only by magic...
xs << ' ';
} else {
// Generate the rest of the paragraph, if need be.
par->simpleDocBookOnePar(buf, xs, runparams, text.outerFont(std::distance(text.paragraphs().begin(), par)),
true, true, sep);
}
} else {
makeAny(text, buf, xs, runparams, par);
}
// Close the environment.
auto nextpar = par;
++nextpar;
closeParTag(xs, &*par, (nextpar != end) ? &*nextpar : nullptr); // TODO: switch in layout for par/block?
}
2020-07-08 16:15:34 +00:00
void makeCommand(
Buffer const & buf,
XMLStream & xs,
OutputParams const & runparams,
Text const & text,
ParagraphList::const_iterator const & par)
2020-07-08 16:15:34 +00:00
{
// Unlike XHTML, no need for labels, as they are handled by DocBook tags.
auto const begin = text.paragraphs().begin();
auto const end = text.paragraphs().end();
auto nextpar = par;
++nextpar;
// Generate this command.
auto prevpar = text.paragraphs().getParagraphBefore(par);
openParTag(xs, &*par, prevpar);
par->simpleDocBookOnePar(buf, xs, runparams,
text.outerFont(distance(begin, par)));
closeParTag(xs, &*par, (nextpar != end) ? &*nextpar : nullptr);
2020-06-08 21:27:49 +00:00
}
void makeAny(
2020-07-08 16:15:34 +00:00
Text const &text,
Buffer const &buf,
XMLStream &xs,
OutputParams const &ourparams,
ParagraphList::const_iterator par)
2020-07-08 16:15:34 +00:00
{
switch (par->layout().latextype) {
case LATEX_COMMAND:
makeCommand(buf, xs, ourparams, text, par);
break;
case LATEX_ENVIRONMENT:
case LATEX_LIST_ENVIRONMENT:
case LATEX_ITEM_ENVIRONMENT:
makeEnvironment(buf, xs, ourparams, text, par);
break;
case LATEX_PARAGRAPH:
makeParagraph(buf, xs, ourparams, text, par);
break;
case LATEX_BIB_ENVIRONMENT:
makeParagraphBibliography(buf, xs, ourparams, text, par);
break;
}
}
2020-06-08 21:27:49 +00:00
} // end anonymous namespace
2020-06-08 21:27:49 +00:00
using DocBookDocumentSectioning = tuple<bool, pit_type>;
struct DocBookInfoTag
{
const set<pit_type> shouldBeInInfo;
const set<pit_type> mustBeInInfo;
const set<pit_type> abstract;
pit_type bpit;
pit_type epit;
DocBookInfoTag(const set<pit_type> & shouldBeInInfo, const set<pit_type> & mustBeInInfo,
const set<pit_type> & abstract, pit_type bpit, pit_type epit) :
shouldBeInInfo(shouldBeInInfo), mustBeInInfo(mustBeInInfo), abstract(abstract),
bpit(bpit), epit(epit) {}
};
2020-06-08 21:27:49 +00:00
DocBookDocumentSectioning hasDocumentSectioning(ParagraphList const &paragraphs, pit_type bpit, pit_type const epit) {
bool documentHasSections = false;
while (bpit < epit) {
Layout const &style = paragraphs[bpit].layout();
documentHasSections |= style.category() == from_utf8("Sectioning");
if (documentHasSections)
break;
2020-06-08 21:27:49 +00:00
bpit += 1;
}
// Paragraphs before the first section: [ runparams.par_begin ; eppit )
return make_tuple(documentHasSections, bpit);
}
bool hasOnlyNotes(Paragraph const & par)
{
// Precondition: the paragraph is not empty. Otherwise, the function will always return true...
for (int i = 0; i < par.size(); ++i)
// If you find something that is not an inset (like actual text) or an inset that is not a note,
// return false.
if (!par.isInset(i) || !dynamic_cast<InsetNote *>(par.insetList().get(i)))
return false;
return true;
}
DocBookInfoTag getParagraphsWithInfo(ParagraphList const &paragraphs, pit_type bpit, pit_type const epit) {
2020-06-08 21:27:49 +00:00
set<pit_type> shouldBeInInfo;
set<pit_type> mustBeInInfo;
set<pit_type> abstract;
2020-06-08 21:27:49 +00:00
// Find the first non empty paragraph by mutating bpit.
while (bpit < epit) {
Paragraph const &par = paragraphs[bpit];
if (par.empty() || hasOnlyNotes(par))
bpit += 1;
else
break;
}
// Find the last info-like paragraph.
2020-06-08 21:27:49 +00:00
pit_type cpit = bpit;
bool hasAbstractLayout = false;
2020-06-08 21:27:49 +00:00
while (cpit < epit) {
// Skip paragraphs only containing one note.
Paragraph const & par = paragraphs[cpit];
if (hasOnlyNotes(par)) {
cpit += 1;
continue;
}
if (par.layout().docbookabstract())
hasAbstractLayout = true;
// Based on layout information, store this paragraph in one set: should be in <info>, must be.
Layout const &style = par.layout();
2020-06-08 21:27:49 +00:00
if (style.docbookininfo() == "always") {
mustBeInInfo.emplace(cpit);
} else if (style.docbookininfo() == "maybe") {
shouldBeInInfo.emplace(cpit);
} else {
// Hypothesis: the <info> parts should be grouped together near the beginning bpit.
// There may be notes in between, but nothing else.
break;
}
2020-06-08 21:27:49 +00:00
cpit += 1;
}
// Now, cpit points to the last paragraph that has things that could go in <info>.
// bpit is the beginning of the <info> part.
// Go once again through the list of paragraphs to find the abstract. If there is an abstract
// layout, only consider it. Otherwise, an abstract is just a sequence of paragraphs with text.
if (hasAbstractLayout) {
pit_type pit = bpit;
while (pit < cpit) { // Don't overshoot the <info> part.
if (paragraphs[pit].layout().docbookabstract())
abstract.emplace(pit);
pit++;
}
} else {
pit_type lastAbstract = epit + 1; // A nonsensical value.
docstring lastAbstractLayout;
pit_type pit = bpit;
while (pit < cpit) { // Don't overshoot the <info> part.
const Paragraph & par = paragraphs.at(pit);
if (!par.insetList().empty()) {
for (const auto &i : par.insetList()) {
if (i.inset->getText(0) != nullptr) {
if (lastAbstract == epit + 1) {
// First paragraph that matches the heuristic definition of abstract.
lastAbstract = pit;
lastAbstractLayout = par.layout().name();
} else if (pit > lastAbstract + 1 || par.layout().name() != lastAbstractLayout) {
// This is either too far from the last abstract paragraph or doesn't
// have the right layout name, BUT there has already been an abstract
// in this document: done with detecting the abstract.
goto done; // Easier to get out of two nested loops.
}
abstract.emplace(pit);
break;
}
2020-06-08 21:27:49 +00:00
}
}
pit++;
2020-06-08 21:27:49 +00:00
}
}
done:
return DocBookInfoTag(shouldBeInInfo, mustBeInInfo, abstract, bpit, cpit);
2020-06-08 21:27:49 +00:00
}
2020-07-08 16:15:34 +00:00
void outputDocBookInfo(
Text const & text,
Buffer const & buf,
XMLStream & xs,
OutputParams const & runparams,
ParagraphList const & paragraphs,
DocBookInfoTag const & info)
2020-07-08 16:15:34 +00:00
{
// Perform an additional check on the abstract. Sometimes, there are many paragraphs that should go
// into the abstract, but none generates actual content. Thus, first generate to a temporary stream,
// then only create the <abstract> tag if these paragraphs generate some content.
// This check must be performed *before* a decision on whether or not to output <info> is made.
bool hasAbstract = !info.abstract.empty();
docstring abstract;
if (hasAbstract) {
// Generate the abstract XML into a string before further checks.
odocstringstream os2;
{
XMLStream xs2(os2);
auto bpit = *std::min_element(info.abstract.begin(), info.abstract.end());
auto epit = 1 + *std::max_element(info.abstract.begin(), info.abstract.end());
// info.abstract is inclusive, epit is exclusive, hence +1 for looping.
while (bpit < epit) {
makeAny(text, buf, xs2, runparams, paragraphs.iterator_at(bpit));
bpit += 1;
}
}
// Actually output the abstract if there is something to do. Don't count line feeds or spaces in this,
// even though they must be properly output if there is some abstract.
abstract = os2.str();
static const lyx::regex reg("[ \\r\\n]*");
docstring abstractContent = from_utf8(lyx::regex_replace(to_utf8(abstract), reg, string("")));
// Nothing? Then there is no abstract!
if (abstractContent.empty())
hasAbstract = false;
}
// The abstract must go in <info>. Otherwise, decide whether to open <info> based on the layouts.
bool needInfo = !info.mustBeInInfo.empty() || hasAbstract;
2020-06-08 21:27:49 +00:00
// Start the <info> tag if required.
if (needInfo) {
xs.startDivision(false);
xs << xml::StartTag("info");
xs << xml::CR();
}
// Output the elements that should go in <info>, before and after the abstract.
for (auto pit : info.shouldBeInInfo) { // Typically, the title: these elements are so important and ubiquitous
// that mandating a wrapper like <info> would repel users. Thus, generate them first.
makeAny(text, buf, xs, runparams, paragraphs.iterator_at(pit));
}
for (auto pit : info.mustBeInInfo) {
if (info.abstract.find(pit) == info.abstract.end()) // The abstract must be in info, but is dealt with after.
makeAny(text, buf, xs, runparams, paragraphs.iterator_at(pit));
}
2020-06-08 21:27:49 +00:00
// Always output the abstract as the last item of the <info>, as it requires special treatment (especially if
// it contains several paragraphs that are empty).
if (hasAbstract) {
// string tag = paragraphs[*info.abstract.begin()].layout().docbookforceabstracttag();
// if (tag == "NONE")
// tag = "abstract";
//
// xs << xml::StartTag(tag);
// xs << xml::CR();
xs << XMLStream::ESCAPE_NONE << abstract;
// xs << xml::EndTag(tag);
// xs << xml::CR();
2020-06-08 21:27:49 +00:00
}
// End the <info> tag if it was started.
if (needInfo) {
xs << xml::EndTag("info");
xs << xml::CR();
xs.endDivision();
}
}
2020-07-08 16:15:34 +00:00
void docbookFirstParagraphs(
Text const &text,
Buffer const &buf,
XMLStream &xs,
OutputParams const &runparams,
pit_type epit)
{
2020-06-08 21:27:49 +00:00
// Handle the beginning of the document, supposing it has sections.
// Major role: output the first <info> tag.
ParagraphList const &paragraphs = text.paragraphs();
pit_type bpit = runparams.par_begin;
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info);
2020-06-08 21:27:49 +00:00
}
2020-07-08 16:15:34 +00:00
void docbookSimpleAllParagraphs(
Text const & text,
Buffer const & buf,
XMLStream & xs,
OutputParams const & runparams)
{
// Handle the given text, supposing it has no sections (i.e. a "simple" text). The input may vary in length
// between a single paragraph to a whole document.
2020-06-08 21:27:49 +00:00
// First, the <info> tag.
ParagraphList const &paragraphs = text.paragraphs();
pit_type bpit = runparams.par_begin;
pit_type const epit = runparams.par_end;
DocBookInfoTag info = getParagraphsWithInfo(paragraphs, bpit, epit);
outputDocBookInfo(text, buf, xs, runparams, paragraphs, info);
2020-06-08 21:27:49 +00:00
// Then, the content. It starts where the <info> ends.
bpit = info.epit;
2020-06-08 21:27:49 +00:00
while (bpit < epit) {
auto par = paragraphs.iterator_at(bpit);
if (!hasOnlyNotes(*par))
makeAny(text, buf, xs, runparams, par);
bpit += 1;
}
}
2020-06-08 21:27:49 +00:00
void docbookParagraphs(Text const &text,
2020-07-08 16:15:34 +00:00
Buffer const &buf,
XMLStream &xs,
OutputParams const &runparams) {
2020-06-08 21:27:49 +00:00
ParagraphList const &paragraphs = text.paragraphs();
if (runparams.par_begin == runparams.par_end) {
2020-07-08 16:15:34 +00:00
runparams.par_begin = 0;
runparams.par_end = paragraphs.size();
2020-06-08 21:27:49 +00:00
}
pit_type bpit = runparams.par_begin;
pit_type const epit = runparams.par_end;
LASSERT(bpit < epit,
2020-07-08 16:15:34 +00:00
{
xs << XMLStream::ESCAPE_NONE << "<!-- DocBook output error! -->\n";
return;
});
2020-06-08 21:27:49 +00:00
std::stack<std::pair<int, string>> headerLevels; // Used to determine when to open/close sections: store the depth
// of the section and the tag that was used to open it.
// Detect whether the document contains sections. If there are no sections, there can be no automatically
// discovered abstract.
bool documentHasSections;
pit_type eppit;
tie(documentHasSections, eppit) = hasDocumentSectioning(paragraphs, bpit, epit);
if (documentHasSections) {
docbookFirstParagraphs(text, buf, xs, runparams, eppit);
bpit = eppit;
} else {
docbookSimpleAllParagraphs(text, buf, xs, runparams);
return;
}
bool currentlyInAppendix = false;
while (bpit < epit) {
OutputParams ourparams = runparams;
auto par = paragraphs.iterator_at(bpit);
if (par->params().startOfAppendix())
currentlyInAppendix = true;
Layout const &style = par->layout();
ParagraphList::const_iterator const lastStartedPar = par;
ParagraphList::const_iterator send;
if (hasOnlyNotes(*par)) {
bpit += 1;
2020-06-08 21:27:49 +00:00
continue;
}
// Think about adding <section> and/or </section>s.
const bool isLayoutSectioning = style.category() == from_utf8("Sectioning");
if (isLayoutSectioning) {
2020-07-08 16:15:34 +00:00
int level = style.toclevel;
2020-06-08 21:27:49 +00:00
2020-07-08 16:15:34 +00:00
// Need to close a previous section if it has the same level or a higher one (close <section> if opening a <h2>
// after a <h2>, <h3>, <h4>, <h5> or <h6>). More examples:
// - current: h2; back: h1; do not close any <section>
// - current: h1; back: h2; close two <section> (first the <h2>, then the <h1>, so a new <h1> can come)
while (!headerLevels.empty() && level <= headerLevels.top().first) {
2020-06-08 21:27:49 +00:00
int stackLevel = headerLevels.top().first;
docstring stackTag = from_utf8("</" + headerLevels.top().second + ">");
headerLevels.pop();
// Output the tag only if it corresponds to a legit section.
if (stackLevel != Layout::NOT_IN_TOC)
xs << XMLStream::ESCAPE_NONE << stackTag << xml::CR();
2020-07-08 16:15:34 +00:00
}
2020-06-08 21:27:49 +00:00
2020-07-08 16:15:34 +00:00
// Open the new section: first push it onto the stack, then output it in DocBook.
string sectionTag = (currentlyInAppendix && style.docbooksectiontag() == "chapter") ?
"appendix" : style.docbooksectiontag();
headerLevels.push(std::make_pair(level, sectionTag));
2020-06-08 21:27:49 +00:00
2020-07-08 16:15:34 +00:00
// Some sectioning-like elements should not be output (such as FrontMatter).
if (level != Layout::NOT_IN_TOC) {
2020-06-08 21:27:49 +00:00
// Look for a label in the title, i.e. a InsetLabel as a child.
docstring id = docstring();
for (pos_type i = 0; i < par->size(); ++i) {
Inset const *inset = par->getInset(i);
if (inset) {
if (auto label = dynamic_cast<InsetLabel const *>(inset)) {
// Generate the attributes for the section if need be.
id += "xml:id=\"" + xml::cleanID(label->screenLabel()) + "\"";
2020-06-08 21:27:49 +00:00
// Don't output the ID as a DocBook <anchor>.
ourparams.docbook_anchors_to_ignore.emplace(label->screenLabel());
2020-06-08 21:27:49 +00:00
// Cannot have multiple IDs per tag.
break;
}
2020-06-08 21:27:49 +00:00
}
}
// Write the open tag for this section.
docstring tag = from_utf8("<" + sectionTag);
if (!id.empty())
tag += from_utf8(" ") + id;
tag += from_utf8(">");
xs << XMLStream::ESCAPE_NONE << tag;
xs << xml::CR();
2020-07-08 16:15:34 +00:00
}
2020-06-08 21:27:49 +00:00
}
// Close all sections before the bibliography.
// TODO: Only close all when the bibliography is at the end of the document? Or force to output the bibliography at the end of the document? Or don't care (as allowed by DocBook)?
auto insetsLength = distance(par->insetList().begin(), par->insetList().end());
if (insetsLength > 0) {
Inset const *firstInset = par->getInset(0);
if (firstInset && dynamic_cast<InsetBibtex const *>(firstInset)) {
while (!headerLevels.empty()) {
int level = headerLevels.top().first;
docstring tag = from_utf8("</" + headerLevels.top().second + ">");
headerLevels.pop();
// Output the tag only if it corresponds to a legit section.
if (level != Layout::NOT_IN_TOC) {
xs << XMLStream::ESCAPE_NONE << tag;
xs << xml::CR();
}
}
}
}
// Generate this paragraph.
makeAny(text, buf, xs, ourparams, par);
bpit += 1;
2020-06-08 21:27:49 +00:00
}
// If need be, close <section>s, but only at the end of the document (otherwise, dealt with at the beginning
// of the loop).
while (!headerLevels.empty() && headerLevels.top().first > Layout::NOT_IN_TOC) {
docstring tag = from_utf8("</" + headerLevels.top().second + ">");
headerLevels.pop();
xs << XMLStream::ESCAPE_NONE << tag;
xs << xml::CR();
}
}
} // namespace lyx