Files
libreoffice/svtools/source/svhtml/HtmlWriter.cxx
Noel Grandin 96e9ffa647 loplogin:singlevalfields in include/
Change-Id: I27842162fcf82120ecb811ee8e89e187430931fc
Reviewed-on: https://gerrit.libreoffice.org/28931
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-09-16 06:19:38 +00:00

145 lines
3.2 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <svtools/HtmlWriter.hxx>
#include <tools/stream.hxx>
HtmlWriter::HtmlWriter(SvStream& rStream) :
mrStream(rStream),
mbElementOpen(false),
mbContentWritten(false),
mbPrettyPrint(true)
{}
HtmlWriter::~HtmlWriter()
{}
void HtmlWriter::prettyPrint(bool b)
{
mbPrettyPrint = b;
}
void HtmlWriter::start(const OString& aElement)
{
if (mbElementOpen)
{
mrStream.WriteChar('>');
if (!mbContentWritten && mbPrettyPrint)
mrStream.WriteChar('\n');
mbContentWritten = false;
}
maElementStack.push_back(aElement);
if (mbPrettyPrint)
{
for(size_t i = 0; i < maElementStack.size() - 1; i++)
{
mrStream.WriteCharPtr(" ");
}
}
mrStream.WriteChar('<');
mrStream.WriteOString(aElement);
mbElementOpen = true;
}
void HtmlWriter::single(const OString &aContent)
{
start(aContent);
end();
}
void HtmlWriter::endAttribute()
{
if (mbElementOpen)
{
mrStream.WriteCharPtr("/>");
if (mbPrettyPrint)
mrStream.WriteCharPtr("\n");
mbElementOpen = false;
}
}
void HtmlWriter::flushStack()
{
while (!maElementStack.empty())
{
end();
}
}
void HtmlWriter::end()
{
if (mbElementOpen)
{
mrStream.WriteCharPtr("/>");
if (mbPrettyPrint)
mrStream.WriteCharPtr("\n");
}
else
{
if (!mbContentWritten && mbPrettyPrint)
{
for(size_t i = 0; i < maElementStack.size() - 1; i++)
{
mrStream.WriteCharPtr(" ");
}
}
mrStream.WriteCharPtr("</");
mrStream.WriteOString(maElementStack.back());
mrStream.WriteCharPtr(">");
if (mbPrettyPrint)
mrStream.WriteCharPtr("\n");
}
maElementStack.pop_back();
mbElementOpen = false;
mbContentWritten = false;
}
void HtmlWriter::attribute(const OString &aAttribute, const OString& aValue)
{
if (mbElementOpen && !aAttribute.isEmpty() && !aValue.isEmpty())
{
mrStream.WriteChar(' ');
mrStream.WriteOString(aAttribute);
mrStream.WriteChar('=');
mrStream.WriteChar('"');
mrStream.WriteOString(aValue);
mrStream.WriteChar('"');
}
}
void HtmlWriter::attribute(const OString& aAttribute, const sal_Int32 aValue)
{
attribute(aAttribute, OString::number(aValue));
}
void HtmlWriter::attribute(const OString& aAttribute, const char* pValue)
{
attribute(aAttribute, OString(pValue));
}
void HtmlWriter::attribute(const OString& aAttribute, const OUString& aValue)
{
attribute(aAttribute, OUStringToOString(aValue, RTL_TEXTENCODING_UTF8));
}
void HtmlWriter::attribute(const OString& aAttribute)
{
if (mbElementOpen && !aAttribute.isEmpty())
{
mrStream.WriteChar(' ');
mrStream.WriteOString(aAttribute);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */