mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-04 10:25:28 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
105 lines
2.0 KiB
C++
105 lines
2.0 KiB
C++
//
|
|
// DOMWriter.cpp
|
|
//
|
|
// $Id: //poco/1.4/XML/src/DOMWriter.cpp#1 $
|
|
//
|
|
// 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
|
|
|