mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
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
|
||
|
|