cmake/Source/cmXMLWriter.cxx

142 lines
3.1 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-08-17 11:37:30 +02:00
#include "cmXMLWriter.h"
2016-07-09 11:21:54 +02:00
2015-08-17 11:37:30 +02:00
#include <cassert>
2020-02-01 23:06:01 +01:00
#include "cmsys/FStream.hxx"
2015-08-17 11:37:30 +02:00
cmXMLWriter::cmXMLWriter(std::ostream& output, std::size_t level)
2016-07-09 11:21:54 +02:00
: Output(output)
2017-07-20 19:35:53 +02:00
, IndentationElement(1, '\t')
2016-07-09 11:21:54 +02:00
, Level(level)
2015-08-17 11:37:30 +02:00
{
}
cmXMLWriter::~cmXMLWriter()
{
2018-08-09 18:06:22 +02:00
assert(this->Indent == 0);
2015-08-17 11:37:30 +02:00
}
void cmXMLWriter::StartDocument(const char* encoding)
{
2019-11-11 23:01:05 +01:00
this->Output << R"(<?xml version="1.0" encoding=")" << encoding << "\"?>";
2015-08-17 11:37:30 +02:00
}
void cmXMLWriter::EndDocument()
{
2018-08-09 18:06:22 +02:00
assert(this->Indent == 0);
2015-08-17 11:37:30 +02:00
this->Output << '\n';
}
void cmXMLWriter::StartElement(std::string const& name)
{
this->CloseStartElement();
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2015-08-17 11:37:30 +02:00
this->Output << '<' << name;
this->Elements.push(name);
2018-08-09 18:06:22 +02:00
++this->Indent;
2015-08-17 11:37:30 +02:00
this->ElementOpen = true;
this->BreakAttrib = false;
}
void cmXMLWriter::EndElement()
{
2018-08-09 18:06:22 +02:00
assert(this->Indent > 0);
--this->Indent;
2016-07-09 11:21:54 +02:00
if (this->ElementOpen) {
2015-08-17 11:37:30 +02:00
this->Output << "/>";
2016-07-09 11:21:54 +02:00
} else {
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2015-08-17 11:37:30 +02:00
this->IsContent = false;
this->Output << "</" << this->Elements.top() << '>';
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
this->Elements.pop();
this->ElementOpen = false;
}
2016-07-09 11:21:54 +02:00
void cmXMLWriter::Element(const char* name)
{
this->CloseStartElement();
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2016-07-09 11:21:54 +02:00
this->Output << '<' << name << "/>";
}
2015-08-17 11:37:30 +02:00
void cmXMLWriter::BreakAttributes()
{
this->BreakAttrib = true;
}
void cmXMLWriter::Comment(const char* comment)
{
this->CloseStartElement();
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2015-08-17 11:37:30 +02:00
this->Output << "<!-- " << comment << " -->";
}
void cmXMLWriter::CData(std::string const& data)
{
this->PreContent();
this->Output << "<![CDATA[" << data << "]]>";
}
2016-07-09 11:21:54 +02:00
void cmXMLWriter::Doctype(const char* doctype)
{
this->CloseStartElement();
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2016-07-09 11:21:54 +02:00
this->Output << "<!DOCTYPE " << doctype << ">";
}
2015-08-17 11:37:30 +02:00
void cmXMLWriter::ProcessingInstruction(const char* target, const char* data)
{
this->CloseStartElement();
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(!this->IsContent);
2015-08-17 11:37:30 +02:00
this->Output << "<?" << target << ' ' << data << "?>";
}
void cmXMLWriter::FragmentFile(const char* fname)
{
this->CloseStartElement();
2016-10-30 18:24:19 +01:00
cmsys::ifstream fin(fname, std::ios::in | std::ios::binary);
2015-08-17 11:37:30 +02:00
this->Output << fin.rdbuf();
}
2017-07-20 19:35:53 +02:00
void cmXMLWriter::SetIndentationElement(std::string const& element)
{
this->IndentationElement = element;
}
2018-08-09 18:06:22 +02:00
void cmXMLWriter::ConditionalLineBreak(bool condition)
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
if (condition) {
2017-07-20 19:35:53 +02:00
this->Output << '\n';
2018-08-09 18:06:22 +02:00
for (std::size_t i = 0; i < this->Indent + this->Level; ++i) {
2017-07-20 19:35:53 +02:00
this->Output << this->IndentationElement;
}
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
}
void cmXMLWriter::PreAttribute()
{
assert(this->ElementOpen);
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(this->BreakAttrib);
2016-07-09 11:21:54 +02:00
if (!this->BreakAttrib) {
2015-08-17 11:37:30 +02:00
this->Output << ' ';
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
}
void cmXMLWriter::PreContent()
{
this->CloseStartElement();
this->IsContent = true;
}
void cmXMLWriter::CloseStartElement()
{
2016-07-09 11:21:54 +02:00
if (this->ElementOpen) {
2018-08-09 18:06:22 +02:00
this->ConditionalLineBreak(this->BreakAttrib);
2015-08-17 11:37:30 +02:00
this->Output << '>';
this->ElementOpen = false;
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
}