/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #if OSL_DEBUG_LEVEL > 1 #include #include #include #include #include namespace writerfilter { /* StreamProtocol */ StreamProtocol::StreamProtocol(Stream * pStream, TagLogger::Pointer_t pTagLogger) : m_pStream(pStream), m_pTagLogger(pTagLogger) { } StreamProtocol::~StreamProtocol() { } void StreamProtocol::startSectionGroup() { m_pTagLogger->element("protocol-startSectionGroup"); m_pStream->startSectionGroup(); } void StreamProtocol::endSectionGroup() { m_pTagLogger->element("protocol-endSectionGroup"); m_pStream->endSectionGroup(); } void StreamProtocol::startParagraphGroup() { m_pTagLogger->element("protocol-startParagraphGroup"); m_pStream->startParagraphGroup(); } void StreamProtocol::endParagraphGroup() { m_pTagLogger->element("protocol-endParagraphGroup"); m_pStream->endParagraphGroup(); } void StreamProtocol::startCharacterGroup() { m_pTagLogger->element("protocol-startCharacterGroup"); m_pStream->startCharacterGroup(); } void StreamProtocol::endCharacterGroup() { m_pTagLogger->element("protocol-endCharacterGroup"); m_pStream->endCharacterGroup(); } void StreamProtocol::text(const sal_uInt8 * data, size_t len) { ::rtl::OUString sText((const sal_Char*) data, len, RTL_TEXTENCODING_MS_1252); m_pTagLogger->startElement("protocol-text"); m_pTagLogger->chars(sText); m_pTagLogger->endElement(); m_pStream->text(data, len); } void StreamProtocol::utext(const sal_uInt8 * data, size_t len) { ::rtl::OUString sText; ::rtl::OUStringBuffer aBuffer = ::rtl::OUStringBuffer(len); aBuffer.append( (const sal_Unicode *) data, len); sText = aBuffer.makeStringAndClear(); m_pTagLogger->startElement("protocol-utext"); m_pTagLogger->chars(sText); m_pTagLogger->endElement(); m_pStream->utext(data, len); } void StreamProtocol::props(writerfilter::Reference::Pointer_t ref) { m_pTagLogger->startElement("protocol-props"); m_pStream->props(ref); m_pTagLogger->endElement(); } void StreamProtocol::table(Id name, writerfilter::Reference::Pointer_t ref) { m_pTagLogger->startElement("protocol-table"); m_pTagLogger->attribute("name", (*QNameToString::Instance())(name)); m_pStream->table(name, ref); m_pTagLogger->endElement(); } void StreamProtocol::substream(Id name, writerfilter::Reference::Pointer_t ref) { m_pTagLogger->startElement("protocol-substream"); m_pTagLogger->attribute("name", (*QNameToString::Instance())(name)); m_pStream->substream(name, ref); m_pTagLogger->endElement(); } void StreamProtocol::info(const string & rInfo) { m_pStream->info(rInfo); } void StreamProtocol::startShape( ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape ) { m_pTagLogger->element("protocol-startShape"); m_pStream->startShape(xShape); } void StreamProtocol::endShape() { m_pTagLogger->element("protocol-endShape"); m_pStream->endShape(); } /* PropertiesProtocol */ PropertiesProtocol::PropertiesProtocol(Properties * pProperties, TagLogger::Pointer_t pTagLogger) : m_pProperties(pProperties), m_pTagLogger(pTagLogger) { } PropertiesProtocol::~PropertiesProtocol() { } void PropertiesProtocol::attribute(Id name, Value & val) { m_pTagLogger->startElement("protocol-attribute"); m_pTagLogger->attribute("name", (*QNameToString::Instance())(name)); m_pTagLogger->attribute("value", val.toString()); m_pProperties->attribute(name, val); m_pTagLogger->endElement(); } void PropertiesProtocol::sprm(Sprm & _sprm) { m_pTagLogger->startElement("protocol-sprm"); static char sBuffer[256]; snprintf(sBuffer, sizeof(sBuffer), "%04" SAL_PRIxUINT32, _sprm.getId()); m_pTagLogger->attribute("id", sBuffer); m_pTagLogger->attribute("name", _sprm.getName()); m_pTagLogger->chars(_sprm.toString()); m_pProperties->sprm(_sprm); m_pTagLogger->endElement(); } /* TableProtocol */ TableProtocol::TableProtocol(Table * pTable, TagLogger::Pointer_t pTagLogger) : m_pTable(pTable), m_pTagLogger(pTagLogger) { } TableProtocol::~TableProtocol() { } void TableProtocol::entry(int pos, writerfilter::Reference::Pointer_t ref) { m_pTagLogger->startElement("protocol-entry"); m_pTagLogger->attribute("pos", pos); m_pTable->entry(pos, ref); m_pTagLogger->endElement(); } } #endif // DEBUG /* vim:set shiftwidth=4 softtabstop=4 expandtab: */