Files
libreoffice/sw/source/core/docnode/nodedump.cxx
Miklos Vajna 0635918c51 SwFrmFmts: add a dumpAsXml() method
With this, it's possible to see properties of e.g. fly frames in a
document.

Change-Id: Iba68156ba7f0149dfea3e0a6367b71b8642a2a80
2014-04-02 16:18:57 +02:00

824 lines
30 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 "doc.hxx"
#include "ndtxt.hxx"
#include "MarkManager.hxx"
#include "docary.hxx"
#include "switerator.hxx"
#include "fmtfld.hxx"
#include "docufld.hxx"
#include "txatbase.hxx"
#include "fmtautofmt.hxx"
#include "fmtcntnt.hxx"
#include "charfmt.hxx"
#include "frmfmt.hxx"
#include "fmtanchr.hxx"
#include "fmtsrnd.hxx"
#include "paratr.hxx"
#include "redline.hxx"
#include <swmodule.hxx>
#include <svl/itemiter.hxx>
#include <svl/intitem.hxx>
#include <editeng/charrotateitem.hxx>
#include <editeng/rsiditem.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/editobj.hxx>
#include <editeng/outlobj.hxx>
#include <svx/xdef.hxx>
#include <svx/svdpage.hxx>
#include <svx/svdmodel.hxx>
#include <svx/xfillit0.hxx>
#include <tools/datetimeutils.hxx>
#include <libxml/encoding.h>
#include <libxml/xmlwriter.h>
#include <boost/optional.hpp>
#include <rtl/strbuf.hxx>
namespace
{
// Small helper class to ensure that we write to nodes.xml if nothing
// has been explicitly specified.
// Always use at the beginning of dumpAsXml().
// Also, there are some functions to save typing.
class WriterHelper
{
public:
WriterHelper( xmlTextWriterPtr );
~WriterHelper();
operator xmlTextWriterPtr();
void startElement( const char* element );
void endElement();
void writeFormatAttribute( const char* attribute, const char* format, ... )
#ifdef LIBXML_ATTR_FORMAT
LIBXML_ATTR_FORMAT(3,4)
#endif
;
private:
xmlTextWriterPtr writer;
bool owns;
};
WriterHelper::WriterHelper( xmlTextWriterPtr w )
: writer( w )
, owns( false )
{
if( writer == NULL )
{
writer = xmlNewTextWriterFilename( "nodes.xml", 0 );
xmlTextWriterStartDocument( writer, NULL, NULL, NULL );
owns = true;
}
}
WriterHelper::~WriterHelper()
{
if( owns )
{
xmlTextWriterEndDocument( writer );
xmlFreeTextWriter( writer );
}
}
WriterHelper::operator xmlTextWriterPtr()
{
return writer;
}
void WriterHelper::startElement( const char* element )
{
xmlTextWriterStartElement( writer, BAD_CAST( element ));
}
void WriterHelper::endElement()
{
xmlTextWriterEndElement( writer );
}
void WriterHelper::writeFormatAttribute( const char* attribute, const char* format, ... )
{
va_list va;
va_start( va, format );
xmlTextWriterWriteVFormatAttribute( writer, BAD_CAST( attribute ), format, va );
va_end( va );
}
// Hack: somehow conversion from "..." to va_list does
// bomb on two string litterals in the format.
static const char* TMP_FORMAT = "%" SAL_PRIuUINTPTR;
static const char* TMP_FORMAT_I32 = "%" SAL_PRIdINT32;
}
void lcl_dumpSdrModel(WriterHelper& writer, const SdrModel* pModel)
{
writer.startElement("sdrModel");
writer.writeFormatAttribute("ptr", "%p", pModel);
if (pModel)
{
const SdrPage* pPage = pModel->GetPage(0);
writer.startElement("sdrPage");
writer.writeFormatAttribute("ptr", "%p", pPage);
if (pPage)
{
sal_Int32 nObjCount = pPage->GetObjCount();
for (sal_Int32 i = 0; i < nObjCount; ++i)
{
const SdrObject* pObject = pPage->GetObj(i);
writer.startElement("sdrObject");
writer.writeFormatAttribute("ptr", "%p", pObject);
if (pObject)
{
writer.writeFormatAttribute("symbol", "%s", BAD_CAST(typeid(*pObject).name()));
writer.writeFormatAttribute("name", "%s", BAD_CAST(OUStringToOString(pObject->GetName(), RTL_TEXTENCODING_UTF8).getStr()));
writer.writeFormatAttribute("title", "%s", BAD_CAST(OUStringToOString(pObject->GetTitle(), RTL_TEXTENCODING_UTF8).getStr()));
writer.writeFormatAttribute("description", "%s", BAD_CAST(OUStringToOString(pObject->GetDescription(), RTL_TEXTENCODING_UTF8).getStr()));
const OutlinerParaObject* pOutliner = pObject->GetOutlinerParaObject();
writer.startElement("outliner");
writer.writeFormatAttribute("ptr", "%p", pOutliner);
if (pOutliner)
{
const EditTextObject& rEditObj = pOutliner->GetTextObject();
sal_Int32 nPara = rEditObj.GetParagraphCount();
for (sal_Int32 j = 0; j < nPara; ++j)
{
writer.startElement("paragraph");
xmlTextWriterWriteString(writer, BAD_CAST(OUStringToOString(rEditObj.GetText(j), RTL_TEXTENCODING_UTF8).getStr()));
writer.endElement();
}
}
writer.endElement();
}
writer.endElement();
}
}
writer.endElement();
}
writer.endElement();
}
void SwDoc::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
writer.startElement( "doc" );
writer.writeFormatAttribute( "ptr", "%p", this );
m_pNodes->dumpAsXml( writer );
mpMarkManager->dumpAsXml( writer );
mpFldTypes->dumpAsXml( writer );
mpTxtFmtCollTbl->dumpAsXml( writer );
mpCharFmtTbl->dumpAsXml( writer );
mpSpzFrmFmtTbl->dumpAsXml( writer );
mpNumRuleTbl->dumpAsXml( writer );
mpRedlineTbl->dumpAsXml( writer );
mpExtraRedlineTbl->dumpAsXml( writer );
lcl_dumpSdrModel( writer, mpDrawModel );
writer.endElement();
}
namespace sw {
namespace mark {
void MarkManager::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer(w);
writer.startElement("markManager");
writer.startElement("fieldmarks");
for (const_iterator_t it = m_vFieldmarks.begin(); it != m_vFieldmarks.end(); ++it)
{
pMark_t pMark = *it;
writer.startElement("fieldmark");
writer.writeFormatAttribute("startNode", TMP_FORMAT, pMark->GetMarkStart().nNode.GetIndex());
writer.writeFormatAttribute("startOffset", TMP_FORMAT_I32, pMark->GetMarkStart().nContent.GetIndex());
writer.writeFormatAttribute("endNode", TMP_FORMAT, pMark->GetMarkEnd().nNode.GetIndex());
writer.writeFormatAttribute("endOffset", TMP_FORMAT_I32, pMark->GetMarkEnd().nContent.GetIndex());
OString txt8 = OUStringToOString(pMark->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST( txt8.getStr()));
writer.endElement();
}
writer.endElement();
writer.startElement("annotationmarks");
for (const_iterator_t it = m_vAnnotationMarks.begin(); it != m_vAnnotationMarks.end(); ++it)
{
pMark_t pMark = *it;
writer.startElement("annotationmark");
writer.writeFormatAttribute("startNode", TMP_FORMAT, pMark->GetMarkStart().nNode.GetIndex());
writer.writeFormatAttribute("startOffset", TMP_FORMAT_I32, pMark->GetMarkStart().nContent.GetIndex());
writer.writeFormatAttribute("endNode", TMP_FORMAT, pMark->GetMarkEnd().nNode.GetIndex());
writer.writeFormatAttribute("endOffset", TMP_FORMAT_I32, pMark->GetMarkEnd().nContent.GetIndex());
OString txt8 = OUStringToOString(pMark->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST( txt8.getStr()));
writer.endElement();
}
writer.endElement();
writer.endElement();
}
} // namespace mark
} // namespace sw
void SwFldTypes::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer(w);
writer.startElement("swfldtypes");
sal_uInt16 nCount = size();
for (sal_uInt16 nType = 0; nType < nCount; ++nType)
{
const SwFieldType *pCurType = (*this)[nType];
SwIterator<SwFmtFld, SwFieldType> aIter(*pCurType);
for (const SwFmtFld* pCurFldFmt = aIter.First(); pCurFldFmt; pCurFldFmt = aIter.Next())
{
writer.startElement("swfmtfld");
writer.writeFormatAttribute("ptr", "%p", pCurFldFmt);
writer.writeFormatAttribute("pTxtAttr", "%p", pCurFldFmt->GetTxtFld());
const char* name = "???";
switch(pCurFldFmt->GetField()->GetTyp()->Which())
{
case RES_PAGENUMBERFLD: name = "swpagenumberfield"; break;
case RES_POSTITFLD: name = "swpostitfield"; break;
case RES_DATETIMEFLD: name = "swdatetimefield"; break;
default:
SAL_INFO("sw.core", "unhandled field type " << pCurFldFmt->GetField()->GetTyp()->Which());
break;
}
writer.startElement(name);
writer.writeFormatAttribute("ptr", "%p", pCurFldFmt->GetField());
if (pCurFldFmt->GetField()->GetTyp()->Which() == RES_POSTITFLD)
{
const SwPostItField* pField = dynamic_cast<const SwPostItField*>(pCurFldFmt->GetField());
OString txt8 = OUStringToOString(pField->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST( txt8.getStr()));
}
writer.endElement();
writer.endElement();
}
}
writer.endElement();
}
void SwNodes::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
writer.startElement( "swnodes" );
writer.writeFormatAttribute( "ptr", "%p", this );
for( unsigned int i = 0; i < Count(); ++i )
{
( *this )[ i ]->dumpAsXml( writer );
}
writer.endElement();
}
void SwNode::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
const char* name = "???";
switch( GetNodeType())
{
case ND_ENDNODE:
name = "end";
break;
case ND_STARTNODE:
case ND_TEXTNODE:
abort(); // overridden
case ND_TABLENODE:
name = "table";
break;
case ND_GRFNODE:
name = "grf";
break;
case ND_OLENODE:
name = "ole";
break;
}
writer.startElement( name );
writer.writeFormatAttribute( "ptr", "%p", this );
writer.writeFormatAttribute( "index", TMP_FORMAT, GetIndex() );
writer.endElement();
if( GetNodeType() == ND_ENDNODE )
writer.endElement(); // end start node
}
void SwStartNode::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
const char* name = "???";
switch( GetNodeType() )
{
case ND_TABLENODE:
name = "table";
break;
case ND_SECTIONNODE:
name = "section";
break;
default:
switch( GetStartNodeType())
{
case SwNormalStartNode:
name = "start";
break;
case SwTableBoxStartNode:
name = "tablebox";
break;
case SwFlyStartNode:
name = "fly";
break;
case SwFootnoteStartNode:
name = "footnote";
break;
case SwHeaderStartNode:
name = "header";
break;
case SwFooterStartNode:
name = "footer";
break;
}
break;
}
writer.startElement( name );
writer.writeFormatAttribute( "ptr", "%p", this );
writer.writeFormatAttribute( "index", TMP_FORMAT, GetIndex() );
// writer.endElement(); - it is a start node, so don't end, will make xml better nested
}
void lcl_dumpSfxItemSet(WriterHelper& writer, const SfxItemSet* pSet)
{
SfxItemIter aIter(*pSet);
const SfxPoolItem* pItem = aIter.FirstItem();
while (pItem)
{
writer.startElement("item");
writer.writeFormatAttribute("whichId", TMP_FORMAT, pItem->Which());
const char* pWhich = 0;
boost::optional<OString> oValue;
switch (pItem->Which())
{
case RES_CHRATR_POSTURE: pWhich = "character posture"; break;
case RES_CHRATR_WEIGHT: pWhich = "character weight"; break;
case RES_CHRATR_CJK_POSTURE: pWhich = "character cjk posture"; break;
case RES_CHRATR_CJK_WEIGHT: pWhich = "character cjk weight"; break;
case RES_CHRATR_CTL_POSTURE: pWhich = "character ctl posture"; break;
case RES_CHRATR_CTL_WEIGHT: pWhich = "character ctl weight"; break;
case RES_CHRATR_RSID:
{
pWhich = "character rsid";
css::uno::Any aAny;
static_cast<const SvxRsidItem*>(pItem)->QueryValue(aAny);
oValue = OString::number(aAny.get<sal_uInt32>());
break;
}
case RES_CHRATR_ROTATE: pWhich = "character rotation"; oValue = OString::number(static_cast<const SvxCharRotateItem*>(pItem)->GetValue()); break;
case RES_PARATR_OUTLINELEVEL: pWhich = "paragraph outline level"; oValue = OString::number(static_cast<const SfxUInt16Item*>(pItem)->GetValue()); break;
case RES_PARATR_NUMRULE: pWhich = "paragraph numbering rule"; oValue = OUStringToOString(static_cast<const SwNumRuleItem*>(pItem)->GetValue(), RTL_TEXTENCODING_UTF8); break;
case RES_CHRATR_FONT: pWhich = "character font"; oValue = OUStringToOString(static_cast<const SvxFontItem*>(pItem)->GetFamilyName(), RTL_TEXTENCODING_UTF8); break;
case RES_CHRATR_BACKGROUND: pWhich = "character background"; break;
case RES_CHRATR_CTL_FONT: pWhich = "character ctl font"; break;
case RES_CHRATR_FONTSIZE:
{
pWhich = "character font size";
const SvxFontHeightItem* pFontHeightItem = static_cast<const SvxFontHeightItem*>(pItem);
oValue = "nHeight: " + OString::number(pFontHeightItem->GetHeight()) + ", nProp: " + OString::number(pFontHeightItem->GetProp());
break;
}
case RES_CNTNT:
{
pWhich = "frame content";
const SwFmtCntnt* pCntnt = static_cast<const SwFmtCntnt*>(pItem);
oValue = "node index: " + OString::number(pCntnt->GetCntntIdx()->GetNode().GetIndex());
break;
}
case RES_FRM_SIZE:
{
pWhich = "frame size";
break;
}
case RES_VERT_ORIENT:
{
pWhich = "frame vertical orientation";
break;
}
case RES_HORI_ORIENT:
{
pWhich = "frame horizontal orientation";
break;
}
case RES_ANCHOR:
{
pWhich = "frame anchor";
const SwFmtAnchor* pAnchor = static_cast<const SwFmtAnchor*>(pItem);
const SwPosition* pPosition = pAnchor->GetCntntAnchor();
if (pPosition)
oValue = "node index: " + OString::number(pPosition->nNode.GetNode().GetIndex()) + ", index: " + OString::number(pPosition->nContent.GetIndex());
break;
}
case RES_SURROUND:
{
pWhich = "frame surround";
const SwFmtSurround* pSurround = static_cast<const SwFmtSurround*>(pItem);
switch (pSurround->GetSurround())
{
case SURROUND_NONE:
oValue = "none";
break;
case SURROUND_THROUGHT:
oValue = "throught";
break;
case SURROUND_PARALLEL:
oValue = "parallel";
break;
case SURROUND_IDEAL:
oValue = "ideal";
break;
case SURROUND_LEFT:
oValue = "left";
break;
case SURROUND_RIGHT:
oValue = "right";
break;
case SURROUND_END:
oValue = "end";
break;
}
break;
}
case RES_FOLLOW_TEXT_FLOW:
{
pWhich = "frame follow text flow";
break;
}
case RES_WRAP_INFLUENCE_ON_OBJPOS:
{
pWhich = "frame wrap influence on object position";
break;
}
case XATTR_FILLSTYLE:
{
pWhich = "fill style";
const XFillStyleItem* pFillStyleItem = static_cast<const XFillStyleItem*>(pItem);
switch (pFillStyleItem->GetValue())
{
case XFILL_NONE:
oValue = "none";
break;
case XFILL_SOLID:
oValue = "solid";
break;
case XFILL_GRADIENT:
oValue = "gradient";
break;
case XFILL_HATCH:
oValue = "hatch";
break;
case XFILL_BITMAP:
oValue = "bitmap";
break;
}
break;
}
}
if (pWhich)
writer.writeFormatAttribute("which", "%s", BAD_CAST(pWhich));
if (oValue)
writer.writeFormatAttribute("value", "%s", BAD_CAST(oValue->getStr()));
pItem = aIter.NextItem();
writer.endElement();
}
}
void SwFrmFmts::dumpAsXml(xmlTextWriterPtr w)
{
WriterHelper writer(w);
if (size())
{
writer.startElement("swfrmfmts");
for (size_t i = 0; i < size(); ++i)
{
SwFrmFmt* pFmt = static_cast<SwFrmFmt*>(GetFmt(i));
writer.startElement("swfrmfmt");
OString aName = OUStringToOString(pFmt->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST(aName.getStr()));
lcl_dumpSfxItemSet(writer, &pFmt->GetAttrSet());
writer.endElement();
}
writer.endElement();
}
}
void SwCharFmts::dumpAsXml(xmlTextWriterPtr w)
{
WriterHelper writer(w);
if (size())
{
writer.startElement("swcharfmts");
for (size_t i = 0; i < size(); ++i)
{
SwCharFmt* pFmt = static_cast<SwCharFmt*>(GetFmt(i));
writer.startElement("swcharfmt");
OString aName = OUStringToOString(pFmt->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST(aName.getStr()));
lcl_dumpSfxItemSet(writer, &pFmt->GetAttrSet());
writer.endElement();
}
writer.endElement();
}
}
void SwTxtFmtColls::dumpAsXml(xmlTextWriterPtr w)
{
WriterHelper writer(w);
if (size())
{
writer.startElement("swtxtfmtcolls");
for (size_t i = 0; i < size(); ++i)
{
SwTxtFmtColl* pColl = static_cast<SwTxtFmtColl*>(GetFmt(i));
writer.startElement("swtxtfmtcoll");
OString aName = OUStringToOString(pColl->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST(aName.getStr()));
lcl_dumpSfxItemSet(writer, &pColl->GetAttrSet());
writer.endElement();
}
writer.endElement();
}
}
void SwNumRule::dumpAsXml(xmlTextWriterPtr w)
{
WriterHelper writer(w);
writer.startElement("swnumrule");
OString aName = OUStringToOString(GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST(aName.getStr()));
writer.writeFormatAttribute("isautorule", TMP_FORMAT, IsAutoRule());
if (GetPoolFmtId() != USHRT_MAX)
writer.writeFormatAttribute("poolfmtid", TMP_FORMAT, GetPoolFmtId());
writer.endElement();
}
void SwNumRuleTbl::dumpAsXml(xmlTextWriterPtr w)
{
if (!empty())
{
WriterHelper writer(w);
writer.startElement("swnumruletbl");
for (size_t i = 0; i < size(); ++i)
operator[](i)->dumpAsXml(w);
writer.endElement();
}
}
void SwTxtNode::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
writer.startElement( "text" );
writer.writeFormatAttribute( "ptr", "%p", this );
writer.writeFormatAttribute( "index", TMP_FORMAT, GetIndex() );
OUString txt = GetTxt();
for( int i = 0; i < 32; ++i )
txt = txt.replace( i, '*' );
OString txt8 = OUStringToOString( txt, RTL_TEXTENCODING_UTF8 );
writer.startElement("inner_text");
xmlTextWriterWriteString( writer, BAD_CAST( txt8.getStr()));
writer.endElement( );
if (GetFmtColl())
{
SwTxtFmtColl* pColl = static_cast<SwTxtFmtColl*>(GetFmtColl());
writer.startElement("swtxtfmtcoll");
OString aName = OUStringToOString(pColl->GetName(), RTL_TEXTENCODING_UTF8);
writer.writeFormatAttribute("name", "%s", BAD_CAST(aName.getStr()));
writer.endElement();
}
if (HasSwAttrSet())
{
writer.startElement("attrset");
const SwAttrSet& rAttrSet = GetSwAttrSet();
lcl_dumpSfxItemSet(writer, &rAttrSet);
writer.endElement();
}
if (HasHints())
{
writer.startElement("hints");
SwpHints& rHints = GetSwpHints();
for (sal_uInt16 i = 0; i < rHints.Count(); ++i)
{
writer.startElement("hint");
SwTxtAttr* pHint = rHints.GetTextHint(i);
if (pHint->GetStart())
writer.writeFormatAttribute("start", TMP_FORMAT, *pHint->GetStart());
if (pHint->GetEnd())
writer.writeFormatAttribute("end", TMP_FORMAT, *pHint->GetEnd());
const char* pWhich = "???";
switch (pHint->Which())
{
case RES_TXTATR_AUTOFMT:
pWhich = "autofmt";
break;
case RES_TXTATR_ANNOTATION:
pWhich = "annotation";
break;
default:
break;
}
writer.writeFormatAttribute("which", "%s", BAD_CAST(pWhich));
if (pHint->Which() == RES_TXTATR_AUTOFMT)
{
boost::shared_ptr<SfxItemSet> const pSet(pHint->GetAutoFmt().GetStyleHandle());
writer.startElement("autofmt");
lcl_dumpSfxItemSet(writer, pSet.get());
writer.endElement();
}
writer.endElement();
}
writer.endElement();
}
if (GetNumRule())
GetNumRule()->dumpAsXml(w);
writer.endElement();
}
void SwRedlineTbl::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
writer.startElement( "swredlinetbl" );
writer.writeFormatAttribute( "ptr", "%p", this );
const SwRedlineTbl& redlineTbl = (*this);
for( sal_uInt16 nCurRedlinePos = 0; nCurRedlinePos < size(); ++nCurRedlinePos )
{
const SwRangeRedline* pRedline = redlineTbl[ nCurRedlinePos ];
writer.startElement( "swredline" );
writer.writeFormatAttribute( "ptr", "%p", pRedline );
OString aId( OString::number( pRedline->GetSeqNo() ) );
const OUString &rAuthor( SW_MOD()->GetRedlineAuthor( pRedline->GetAuthor() ) );
OString aAuthor( OUStringToOString( rAuthor, RTL_TEXTENCODING_UTF8 ) );
OString aDate( DateTimeToOString( pRedline->GetTimeStamp() ) );
OString sRedlineType;
switch( pRedline->GetType() )
{
case nsRedlineType_t::REDLINE_INSERT:
sRedlineType = "REDLINE_INSERT";
break;
case nsRedlineType_t::REDLINE_DELETE:
sRedlineType = "REDLINE_DELETE";
break;
case nsRedlineType_t::REDLINE_FORMAT:
sRedlineType = "REDLINE_FORMAT";
break;
default:
sRedlineType = "UNKNOWN";
break;
};
writer.writeFormatAttribute( "id", "%s", BAD_CAST(aId.getStr()) );
writer.writeFormatAttribute( "author", "%s", BAD_CAST(aAuthor.getStr()) );
writer.writeFormatAttribute( "date", "%s", BAD_CAST(aDate.getStr()) );
writer.writeFormatAttribute( "type", "%s", BAD_CAST(sRedlineType.getStr()) );
{
const SwPosition* pStart = pRedline->Start();
writer.startElement( "swposition_start" );
//writer.writeFormatAttribute( "ptr", "%p", pStart );
{
const SwNodeIndex pStartNodeIndex = pStart->nNode;
//writer.startElement( "swnodeindex" );
//writer.writeFormatAttribute( "ptr", "%p", &pStartNodeIndex );
{
const SwNode& pStartSwNode = pStartNodeIndex.GetNode();
//writer.startElement( "swnode" );
//writer.writeFormatAttribute( "ptr", "%p", &pStartSwNode );
//writer.writeFormatAttribute( "type", "%d", pStartSwNode.GetNodeType() );
//writer.endElement( ); // swnode
writer.writeFormatAttribute( "swnode_type", TMP_FORMAT, pStartSwNode.GetNodeType() );
writer.writeFormatAttribute( "paragraph_index", "%d", (int)pStartNodeIndex.GetIndex() );
const SwIndex& pStartContent = pStart->nContent;
//writer.startElement( "swindex" );
//writer.writeFormatAttribute( "ptr", "%p", &pStartContent );
//writer.writeFormatAttribute( "content_index", "%d", pStartContent.GetIndex() );
//writer.endElement( ); // swindex
writer.writeFormatAttribute( "character_index", TMP_FORMAT_I32, pStartContent.GetIndex() );
}
//writer.endElement( ); // swnodeindex
}
writer.endElement( ); // swposition_start
const SwPosition* pEnd;
bool bEndIsMark = false;
if ( pStart == pRedline->GetPoint() )
{
// End = Mark
pEnd = pRedline->GetMark();
bEndIsMark = true;
}
else
{
// End = Point
pEnd = pRedline->GetPoint();
}
writer.startElement( "swposition_end" );
//writer.writeFormatAttribute( "ptr", "%p", pStart );
{
const SwNodeIndex pEndNodeIndex = pEnd->nNode;
//writer.startElement( "swnodeindex" );
//writer.writeFormatAttribute( "ptr", "%p", &pEndNodeIndex );
{
const SwNode& pEndSwNode = pEndNodeIndex.GetNode();
//writer.startElement( "swnode" );
//writer.writeFormatAttribute( "ptr", "%p", &pEndSwNode );
//writer.writeFormatAttribute( "type", "%d", pEndSwNode.GetNodeType() );
//writer.endElement( ); // swnode
writer.writeFormatAttribute( "swnode_type", TMP_FORMAT, pEndSwNode.GetNodeType() );
writer.writeFormatAttribute( "paragraph_index", "%d", (int)pEndNodeIndex.GetIndex() );
const SwIndex& pEndContent = pEnd->nContent;
//writer.startElement( "swindex" );
//writer.writeFormatAttribute( "ptr", "%p", &pEndContent );
//writer.writeFormatAttribute( "content_index", "%d", pEndContent.GetIndex() );
//writer.endElement( ); // swindex
writer.writeFormatAttribute( "character_index", TMP_FORMAT_I32, pEndContent.GetIndex() );
}
//writer.endElement( ); // swnodeindex
}
writer.writeFormatAttribute( "end_is", "%s", BAD_CAST(bEndIsMark ? "mark" : "point"));
writer.endElement( ); // swposition_end
//const SwRedlineData& aRedlineData = pRedline->GetRedlineData();
const SwRedlineExtraData* pExtraRedlineData = pRedline->GetExtraData();
writer.startElement( "extra_redline_data" );
{
const SwRedlineExtraData_FmtColl* pExtraData_FmtColl = dynamic_cast<const SwRedlineExtraData_FmtColl*>(pExtraRedlineData);
const SwRedlineExtraData_Format* pExtraData_Format = dynamic_cast<const SwRedlineExtraData_Format*>(pExtraRedlineData);
const SwRedlineExtraData_FormattingChanges* pExtraData_FormattingChanges = dynamic_cast<const SwRedlineExtraData_FormattingChanges*>(pExtraRedlineData);
if (pExtraData_FmtColl)
writer.writeFormatAttribute( "extra_data_type", "%s", BAD_CAST( "fmt coll" ) );
else if (pExtraData_Format)
writer.writeFormatAttribute( "extra_data_type", "%s", BAD_CAST( "format" ) );
else if (pExtraData_FormattingChanges)
writer.writeFormatAttribute( "extra_data_type", "%s", BAD_CAST( "formatting changes" ) );
else
writer.writeFormatAttribute( "extra_data_type", "%s", BAD_CAST( "UNKNOWN" ) );
}
writer.endElement( ); // extra_redline_data
}
writer.endElement( ); // extra_redline_data
}
writer.endElement( ); // swredlinetbl
}
void SwExtraRedlineTbl::dumpAsXml( xmlTextWriterPtr w )
{
WriterHelper writer( w );
writer.startElement( "swextraredlinetbl" );
writer.writeFormatAttribute( "ptr", "%p", this );
const SwExtraRedlineTbl& extraRedlineTbl = (*this);
for( sal_uInt16 nCurExtraRedlinePos = 0; nCurExtraRedlinePos < GetSize(); ++nCurExtraRedlinePos )
{
const SwExtraRedline* pExtraRedline = extraRedlineTbl.GetRedline( nCurExtraRedlinePos );
writer.startElement( "swextraredline" );
{
const SwTableRowRedline* pTableRowRedline = dynamic_cast<const SwTableRowRedline*>(pExtraRedline);
const SwTableCellRedline* pTableCellRedline = dynamic_cast<const SwTableCellRedline*>(pExtraRedline);
if (pTableRowRedline)
writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "table row" ) );
else if (pTableCellRedline)
writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "table cell" ) );
else
writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "UNKNOWN" ) );
}
writer.endElement( ); // extra_redline_data
}
writer.endElement( ); // swextraredlinetbl
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */