/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include "oox/drawingml/textbody.hxx" #include "oox/drawingml/textparagraph.hxx" #include "oox/drawingml/textrun.hxx" #include "oox/drawingml/diagram/diagram.hxx" #include "oox/drawingml/fillproperties.hxx" #include "oox/ppt/pptshapegroupcontext.hxx" #include "oox/ppt/pptshape.hxx" #include "diagramlayoutatoms.hxx" #include "diagramfragmenthandler.hxx" #include #include using namespace ::com::sun::star; namespace oox { namespace drawingml { namespace dgm { void Connection::dump() { OSL_TRACE("dgm: cnx modelId %s, srcId %s, dstId %s, parTransId %s, presId %s, sibTransId %s, srcOrd %d, dstOrd %d", OUSTRING_TO_CSTR( msModelId ), OUSTRING_TO_CSTR( msSourceId ), OUSTRING_TO_CSTR( msDestId ), OUSTRING_TO_CSTR( msParTransId ), OUSTRING_TO_CSTR( msPresId ), OUSTRING_TO_CSTR( msSibTransId ), mnSourceOrder, mnDestOrder ); } void Point::dump() { OSL_TRACE( "dgm: pt text %x, cnxId %s, modelId %s, type %d", mpShape.get(), OUSTRING_TO_CSTR( msCnxId ), OUSTRING_TO_CSTR( msModelId ), mnType ); } } // dgm namespace DiagramData::DiagramData() : mpFillProperties( new FillProperties ) { } void DiagramData::dump() { OSL_TRACE("Dgm: DiagramData # of cnx: %zu", maConnections.size() ); std::for_each( maConnections.begin(), maConnections.end(), boost::bind( &dgm::Connection::dump, _1 ) ); OSL_TRACE("Dgm: DiagramData # of pt: %zu", maPoints.size() ); std::for_each( maPoints.begin(), maPoints.end(), boost::bind( &dgm::Point::dump, _1 ) ); } void Diagram::setData( const DiagramDataPtr & pData) { mpData = pData; } void Diagram::setLayout( const DiagramLayoutPtr & pLayout) { mpLayout = pLayout; } #if OSL_DEBUG_LEVEL > 1 OString normalizeDotName( const OUString& rStr ) { OUStringBuffer aBuf; aBuf.append((sal_Unicode)'N'); const sal_Int32 nLen(rStr.getLength()); sal_Int32 nCurrIndex(0); while( nCurrIndex < nLen ) { const sal_Int32 aChar=rStr.iterateCodePoints(&nCurrIndex); if( aChar != '-' && aChar != '{' && aChar != '}' ) aBuf.append((sal_Unicode)aChar); } return OUStringToOString(aBuf.makeStringAndClear(), RTL_TEXTENCODING_UTF8); } #endif static sal_Int32 calcDepth( const OUString& rNodeName, const dgm::Connections& rCnx ) { // find length of longest path in 'isChild' graph, ending with rNodeName dgm::Connections::const_iterator aCurrCxn( rCnx.begin() ); const dgm::Connections::const_iterator aEndCxn( rCnx.end() ); while( aCurrCxn != aEndCxn ) { if( !aCurrCxn->msParTransId.isEmpty() && !aCurrCxn->msSibTransId.isEmpty() && !aCurrCxn->msSourceId.isEmpty() && !aCurrCxn->msDestId.isEmpty() && aCurrCxn->mnType != XML_presOf && aCurrCxn->mnType != XML_presParOf && rNodeName == aCurrCxn->msDestId ) { return calcDepth(aCurrCxn->msSourceId, rCnx) + 1; } ++aCurrCxn; } return 0; } void Diagram::build( ) { // build name-object maps // ====================== #if OSL_DEBUG_LEVEL > 1 std::ofstream output("/tmp/tree.dot"); output << "digraph datatree {" << std::endl; #endif dgm::Points::iterator aCurrPoint( getData()->getPoints( ).begin() ); const dgm::Points::iterator aEndPoint( getData()->getPoints( ).end() ); while( aCurrPoint != aEndPoint ) { #if OSL_DEBUG_LEVEL > 1 output << "\t" << normalizeDotName(aCurrPoint->msModelId).getStr() << "["; if( !aCurrPoint->msPresentationLayoutName.isEmpty() ) output << "label=\"" << OUStringToOString( aCurrPoint->msPresentationLayoutName, RTL_TEXTENCODING_UTF8).getStr() << "\", "; else output << "label=\"" << OUStringToOString( aCurrPoint->msModelId, RTL_TEXTENCODING_UTF8).getStr() << "\", "; switch( aCurrPoint->mnType ) { case XML_doc: output << "style=filled, color=red"; break; case XML_asst: output << "style=filled, color=green"; break; default: case XML_node: output << "style=filled, color=blue"; break; case XML_pres: output << "style=filled, color=yellow"; break; case XML_parTrans: output << "color=grey"; break; case XML_sibTrans: output << " "; break; } output << "];" << std::endl; // does currpoint have any text set? if( aCurrPoint->mpShape && aCurrPoint->mpShape->getTextBody() && !aCurrPoint->mpShape->getTextBody()->getParagraphs().empty() && !aCurrPoint->mpShape->getTextBody()->getParagraphs().front()->getRuns().empty() ) { static sal_Int32 nCount=0; output << "\t" << "textNode" << nCount << " [" << "label=\"" << OUStringToOString( aCurrPoint->mpShape->getTextBody()->getParagraphs().front()->getRuns().front()->getText(), RTL_TEXTENCODING_UTF8).getStr() << "\"" << "];" << std::endl; output << "\t" << normalizeDotName(aCurrPoint->msModelId).getStr() << " -> " << "textNode" << nCount++ << ";" << std::endl; } #endif const bool bInserted1=getData()->getPointNameMap().insert( std::make_pair(aCurrPoint->msModelId,&(*aCurrPoint))).second; (void)bInserted1; OSL_ENSURE(bInserted1,"Diagram::build(): non-unique point model id"); if( !aCurrPoint->msPresentationLayoutName.isEmpty() ) { DiagramData::PointsNameMap::value_type::second_type& rVec= getData()->getPointsPresNameMap()[aCurrPoint->msPresentationLayoutName]; rVec.push_back(&(*aCurrPoint)); } ++aCurrPoint; } dgm::Connections::const_iterator aCurrCxn( getData()->getConnections( ).begin() ); const dgm::Connections::const_iterator aEndCxn( getData()->getConnections( ).end() ); while( aCurrCxn != aEndCxn ) { #if OSL_DEBUG_LEVEL > 1 if( !aCurrCxn->msParTransId.isEmpty() || !aCurrCxn->msSibTransId.isEmpty() ) { if( !aCurrCxn->msSourceId.isEmpty() || !aCurrCxn->msDestId.isEmpty() ) { output << "\t" << normalizeDotName(aCurrCxn->msSourceId).getStr() << " -> " << normalizeDotName(aCurrCxn->msParTransId).getStr() << " -> " << normalizeDotName(aCurrCxn->msSibTransId).getStr() << " -> " << normalizeDotName(aCurrCxn->msDestId).getStr() << " [style=dotted," << ((aCurrCxn->mnType == XML_presOf) ? " color=red, " : ((aCurrCxn->mnType == XML_presParOf) ? " color=green, " : " ")) << "label=\"" << OUStringToOString(aCurrCxn->msModelId, RTL_TEXTENCODING_UTF8 ).getStr() << "\"];" << std::endl; } else { output << "\t" << normalizeDotName(aCurrCxn->msParTransId).getStr() << " -> " << normalizeDotName(aCurrCxn->msSibTransId).getStr() << " [" << ((aCurrCxn->mnType == XML_presOf) ? " color=red, " : ((aCurrCxn->mnType == XML_presParOf) ? " color=green, " : " ")) << "label=\"" << OUStringToOString(aCurrCxn->msModelId, RTL_TEXTENCODING_UTF8 ).getStr() << "\"];" << std::endl; } } else if( !aCurrCxn->msSourceId.isEmpty() || !aCurrCxn->msDestId.isEmpty() ) output << "\t" << normalizeDotName(aCurrCxn->msSourceId).getStr() << " -> " << normalizeDotName(aCurrCxn->msDestId).getStr() << " [label=\"" << OUStringToOString(aCurrCxn->msModelId, RTL_TEXTENCODING_UTF8 ).getStr() << ((aCurrCxn->mnType == XML_presOf) ? "\", color=red]" : ((aCurrCxn->mnType == XML_presParOf) ? "\", color=green]" : "\"]")) << ";" << std::endl; #endif const bool bInserted1=getData()->getConnectionNameMap().insert( std::make_pair(aCurrCxn->msModelId,&(*aCurrCxn))).second; (void)bInserted1; OSL_ENSURE(bInserted1,"Diagram::build(): non-unique connection model id"); if( aCurrCxn->mnType == XML_presOf ) { DiagramData::StringMap::value_type::second_type& rVec=getData()->getPresOfNameMap()[aCurrCxn->msDestId]; rVec.push_back( std::make_pair( aCurrCxn->msSourceId,sal_Int32(0))); } ++aCurrCxn; } // assign outline levels DiagramData::StringMap::iterator aPresOfIter=getData()->getPresOfNameMap().begin(); const DiagramData::StringMap::iterator aPresOfEnd=getData()->getPresOfNameMap().end(); while( aPresOfIter != aPresOfEnd ) { DiagramData::StringMap::value_type::second_type::iterator aPresOfNodeIterCalcLevel=aPresOfIter->second.begin(); const DiagramData::StringMap::value_type::second_type::iterator aPresOfNodeEnd=aPresOfIter->second.end(); while(aPresOfNodeIterCalcLevel != aPresOfNodeEnd) { const sal_Int32 nDepth=calcDepth(aPresOfNodeIterCalcLevel->first, getData()->getConnections()); aPresOfNodeIterCalcLevel->second = nDepth != 0 ? nDepth : -1; ++aPresOfNodeIterCalcLevel; } ++aPresOfIter; } #if OSL_DEBUG_LEVEL > 1 output << "}" << std::endl; #endif } void Diagram::addTo( const ShapePtr & pParentShape ) { // collect data, init maps build( ); // create Shape hierarchy ShapeCreationVisitor aCreationVisitor(pParentShape, *this); if( mpLayout->getNode() ) mpLayout->getNode()->accept( aCreationVisitor ); pParentShape->setDiagramDoms( getDomsAsPropertyValues() ); } uno::Sequence Diagram::getDomsAsPropertyValues() const { sal_Int32 length = maMainDomMap.size(); uno::Sequence aValue(length); beans::PropertyValue* pValue = aValue.getArray(); for (DiagramDomMap::const_iterator i = maMainDomMap.begin(); i != maMainDomMap.end(); ++i) { pValue[0].Name = i->first; pValue[0].Value = uno::makeAny(i->second); ++pValue; } return aValue; } uno::Reference loadFragment( core::XmlFilterBase& rFilter, const OUString& rFragmentPath ) { // load diagramming fragments into DOM representation, that later // gets serialized back to SAX events and parsed return rFilter.importFragment( rFragmentPath ); } uno::Reference loadFragment( core::XmlFilterBase& rFilter, const rtl::Reference< core::FragmentHandler >& rxHandler ) { return loadFragment( rFilter, rxHandler->getFragmentPath() ); } void importFragment( core::XmlFilterBase& rFilter, const uno::Reference& rXDom, const char* pDocName, const DiagramPtr& pDiagram, const rtl::Reference< core::FragmentHandler >& rxHandler ) { DiagramDomMap& rMainDomMap = pDiagram->getDomMap(); rMainDomMap[OUString::createFromAscii(pDocName)] = rXDom; uno::Reference xSerializer( rXDom, uno::UNO_QUERY_THROW); // now serialize DOM tree into internal data structures rFilter.importFragment( rxHandler, xSerializer ); } void loadDiagram( ShapePtr& pShape, core::XmlFilterBase& rFilter, const OUString& rDataModelPath, const OUString& rLayoutPath, const OUString& rQStylePath, const OUString& rColorStylePath ) { DiagramPtr pDiagram( new Diagram() ); DiagramDataPtr pData( new DiagramData() ); pDiagram->setData( pData ); DiagramLayoutPtr pLayout( new DiagramLayout() ); pDiagram->setLayout( pLayout ); // data if( !rDataModelPath.isEmpty() ) { rtl::Reference< core::FragmentHandler > xRefDataModel( new DiagramDataFragmentHandler( rFilter, rDataModelPath, pData )); importFragment(rFilter, loadFragment(rFilter,xRefDataModel), "OOXData", pDiagram, xRefDataModel); // Pass the info to pShape for( ::std::vector::const_iterator aIt = pData->getExtDrawings().begin(), aEnd = pData->getExtDrawings().end(); aIt != aEnd; ++aIt ) pShape->addExtDrawingRelId( *aIt ); } // extLst is present, lets bet on that and ignore the rest of the data from here if( !pData->getExtDrawings().size() ) { // layout if( !rLayoutPath.isEmpty() ) { rtl::Reference< core::FragmentHandler > xRefLayout( new DiagramLayoutFragmentHandler( rFilter, rLayoutPath, pLayout )); importFragment(rFilter, loadFragment(rFilter,xRefLayout), "OOXLayout", pDiagram, xRefLayout); } // style if( !rQStylePath.isEmpty() ) { rtl::Reference< core::FragmentHandler > xRefQStyle( new DiagramQStylesFragmentHandler( rFilter, rQStylePath, pDiagram->getStyles() )); importFragment(rFilter, loadFragment(rFilter,xRefQStyle), "OOXStyle", pDiagram, xRefQStyle); } // colors if( !rColorStylePath.isEmpty() ) { rtl::Reference< core::FragmentHandler > xRefColorStyle( new ColorFragmentHandler( rFilter, rColorStylePath, pDiagram->getColors() )); importFragment(rFilter, loadFragment(rFilter,xRefColorStyle), "OOXColor", pDiagram, xRefColorStyle); } } else { // We still want to add the XDocuments to the DiagramDomMap DiagramDomMap& rMainDomMap = pDiagram->getDomMap(); rMainDomMap[OUString("OOXLayout")] = loadFragment(rFilter,rLayoutPath); rMainDomMap[OUString("OOXStyle")] = loadFragment(rFilter,rQStylePath); rMainDomMap[OUString("OOXColor")] = loadFragment(rFilter,rColorStylePath); } // diagram loaded. now lump together & attach to shape pDiagram->addTo(pShape); } void loadDiagram( const ShapePtr& pShape, core::XmlFilterBase& rFilter, const uno::Reference& rXDataModelDom, const uno::Reference& rXLayoutDom, const uno::Reference& rXQStyleDom, const uno::Reference& rXColorStyleDom ) { DiagramPtr pDiagram( new Diagram() ); DiagramDataPtr pData( new DiagramData() ); pDiagram->setData( pData ); DiagramLayoutPtr pLayout( new DiagramLayout() ); pDiagram->setLayout( pLayout ); OUString aEmpty; // data if( rXDataModelDom.is() ) importFragment(rFilter, rXDataModelDom, "OOXData", pDiagram, new DiagramDataFragmentHandler( rFilter, aEmpty, pData )); // layout if( rXLayoutDom.is() ) importFragment(rFilter, rXLayoutDom, "OOXLayout", pDiagram, new DiagramLayoutFragmentHandler( rFilter, aEmpty, pLayout )); // style if( rXQStyleDom.is() ) importFragment(rFilter, rXQStyleDom, "OOXStyle", pDiagram, new DiagramQStylesFragmentHandler( rFilter, aEmpty, pDiagram->getStyles() )); // colors if( rXColorStyleDom.is() ) importFragment(rFilter, rXColorStyleDom, "OOXColor", pDiagram, new ColorFragmentHandler( rFilter, aEmpty, pDiagram->getColors() )); // diagram loaded. now lump together & attach to shape pDiagram->addTo(pShape); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */