mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
b79ead9c84
* Replicate poco into base/poco/ * De-register poco submodule * Build poco from ClickHouse * Exclude poco from stylecheck * Exclude poco from whitespace check * Exclude poco from typo check * Remove x bit from sources/headers (the style check complained) * Exclude poco from duplicate include check * Fix fasttest * Remove contrib/poco-cmake/* * Simplify poco build descriptions * Remove poco stuff not used by ClickHouse * Glob poco sources * Exclude poco from clang-tidy
103 lines
1.9 KiB
C++
103 lines
1.9 KiB
C++
//
|
|
// DOMWriter.cpp
|
|
//
|
|
// Library: XML
|
|
// Package: DOM
|
|
// Module: DOMWriter
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
|
|
#include "Poco/DOM/DOMWriter.h"
|
|
#include "Poco/XML/XMLWriter.h"
|
|
#include "Poco/DOM/Document.h"
|
|
#include "Poco/DOM/DocumentFragment.h"
|
|
#include "Poco/DOM/DocumentType.h"
|
|
#include "Poco/DOM/DOMException.h"
|
|
#include "Poco/DOM/DOMSerializer.h"
|
|
#include "Poco/SAX/LexicalHandler.h"
|
|
#include "Poco/XML/XMLException.h"
|
|
#include "Poco/Path.h"
|
|
#include "Poco/FileStream.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace XML {
|
|
|
|
|
|
DOMWriter::DOMWriter():
|
|
_pTextEncoding(0),
|
|
_options(0),
|
|
_indent("\t")
|
|
{
|
|
}
|
|
|
|
|
|
DOMWriter::~DOMWriter()
|
|
{
|
|
}
|
|
|
|
|
|
void DOMWriter::setEncoding(const std::string& encodingName, Poco::TextEncoding& textEncoding)
|
|
{
|
|
_encodingName = encodingName;
|
|
_pTextEncoding = &textEncoding;
|
|
}
|
|
|
|
|
|
void DOMWriter::setOptions(int options)
|
|
{
|
|
_options = options;
|
|
}
|
|
|
|
|
|
void DOMWriter::setNewLine(const std::string& newLine)
|
|
{
|
|
_newLine = newLine;
|
|
}
|
|
|
|
|
|
void DOMWriter::setIndent(const std::string& indent)
|
|
{
|
|
_indent = indent;
|
|
}
|
|
|
|
|
|
void DOMWriter::writeNode(XMLByteOutputStream& ostr, const Node* pNode)
|
|
{
|
|
poco_check_ptr (pNode);
|
|
|
|
bool isFragment = pNode->nodeType() != Node::DOCUMENT_NODE;
|
|
|
|
XMLWriter writer(ostr, _options, _encodingName, _pTextEncoding);
|
|
writer.setNewLine(_newLine);
|
|
writer.setIndent(_indent);
|
|
|
|
DOMSerializer serializer;
|
|
serializer.setContentHandler(&writer);
|
|
serializer.setDTDHandler(&writer);
|
|
serializer.setProperty(XMLReader::PROPERTY_LEXICAL_HANDLER, static_cast<LexicalHandler*>(&writer));
|
|
if (isFragment) writer.startFragment();
|
|
serializer.serialize(pNode);
|
|
if (isFragment) writer.endFragment();
|
|
}
|
|
|
|
|
|
void DOMWriter::writeNode(const std::string& systemId, const Node* pNode)
|
|
{
|
|
Poco::FileOutputStream ostr(systemId);
|
|
if (ostr.good())
|
|
writeNode(ostr, pNode);
|
|
else
|
|
throw Poco::CreateFileException(systemId);
|
|
}
|
|
|
|
|
|
} } // namespace Poco::XML
|
|
|