LCOV - code coverage report
Current view: top level - svx/source/table - tablertfimporter.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 174 0.6 %
Date: 2015-06-13 12:38:46 Functions: 2 19 10.5 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <vector>
      22             : #include <boost/scoped_ptr.hpp>
      23             : #include <boost/shared_ptr.hpp>
      24             : 
      25             : #include <com/sun/star/table/XTable.hpp>
      26             : 
      27             : #include <tools/stream.hxx>
      28             : #include <svtools/rtftoken.h>
      29             : 
      30             : #include <editeng/eeitem.hxx>
      31             : #include <svx/svdetc.hxx>
      32             : #include <editeng/fhgtitem.hxx>
      33             : #include <editeng/outlobj.hxx>
      34             : 
      35             : #include "cell.hxx"
      36             : #include "celltypes.hxx"
      37             : #include "svx/svdotable.hxx"
      38             : #include "svx/svdoutl.hxx"
      39             : #include "editeng/editeng.hxx"
      40             : #include "editeng/editdata.hxx"
      41             : #include "svx/svdmodel.hxx"
      42             : #include "editeng/svxrtf.hxx"
      43             : 
      44             : using namespace ::com::sun::star::uno;
      45             : using namespace ::com::sun::star::table;
      46             : using namespace ::com::sun::star::container;
      47             : using namespace ::com::sun::star::beans;
      48             : 
      49             : namespace sdr { namespace table {
      50             : 
      51           0 : struct RTFCellDefault
      52             : {
      53             :     SfxItemSet          maItemSet;
      54             :     sal_Int32           mnCol;
      55             :     sal_uInt16              mnTwips;         // right border of the cell
      56             :     sal_Int32           mnColSpan;   // MergeCell if >1, merged cells if 0
      57             : 
      58           0 :     explicit RTFCellDefault( SfxItemPool* pPool ) : maItemSet( *pPool ), mnCol(0), mnTwips(0 ), mnColSpan(1) {}
      59             : };
      60             : 
      61             : typedef std::vector< boost::shared_ptr< RTFCellDefault > > RTFCellDefaultVector;
      62             : 
      63           0 : struct RTFCellInfo
      64             : {
      65             :     SfxItemSet          maItemSet;
      66             :     sal_Int32           mnStartPara;
      67             :     sal_Int32           mnParaCount;
      68             :     sal_Int32           mnColSpan;
      69             : 
      70           0 :     explicit RTFCellInfo( SfxItemPool& rPool ) : maItemSet(  rPool ), mnStartPara(0), mnParaCount(0), mnColSpan(0) {}
      71             : };
      72             : 
      73             : typedef boost::shared_ptr< RTFCellInfo > RTFCellInfoPtr;
      74             : typedef std::vector< RTFCellInfoPtr > RTFColumnVector;
      75             : 
      76             : typedef boost::shared_ptr< RTFColumnVector > RTFColumnVectorPtr;
      77             : 
      78             : typedef std::vector< RTFColumnVectorPtr > RTFRowVector;
      79             : 
      80             : class SdrTableRTFParser
      81             : {
      82             : public:
      83             :     explicit SdrTableRTFParser( SdrTableObj& rTableObj );
      84             :     ~SdrTableRTFParser();
      85             : 
      86             :     void Read( SvStream& rStream );
      87             : 
      88             :     void ProcToken( ImportInfo* pInfo );
      89             : 
      90             :     void NextRow();
      91             :     void NextColumn();
      92             :     void NewCellRow();
      93             : 
      94             :     void InsertCell( ImportInfo* pInfo );
      95             : 
      96             :     void FillTable();
      97             : 
      98             :     DECL_LINK( RTFImportHdl, ImportInfo* );
      99             : 
     100             : private:
     101             :     SdrTableObj&    mrTableObj;
     102             :     SdrOutliner*    mpOutliner;
     103             :     SfxItemPool&    mrItemPool;
     104             : 
     105             :     RTFCellDefaultVector maDefaultList;
     106             :     RTFCellDefaultVector::iterator maDefaultIterator;
     107             : 
     108             :     int             mnLastToken;
     109             :     bool            mbNewDef;
     110             : 
     111             :     sal_Int32       mnStartPara;
     112             : 
     113             :     sal_Int32       mnColCnt;
     114             :     sal_Int32       mnRowCnt;
     115             :     sal_Int32       mnColMax;
     116             : 
     117             :     std::vector< sal_Int32 > maColumnEdges;
     118             : 
     119             :     RTFRowVector    maRows;
     120             : 
     121             :     RTFCellDefault* mpInsDefault;
     122             :     RTFCellDefault* mpActDefault;
     123             :     RTFCellDefault* mpDefMerge;
     124             : 
     125             :     Reference< XTable > mxTable;
     126             : };
     127             : 
     128           0 : SdrTableRTFParser::SdrTableRTFParser( SdrTableObj& rTableObj )
     129             : : mrTableObj( rTableObj )
     130           0 : , mpOutliner( SdrMakeOutliner( OUTLINERMODE_TEXTOBJECT, *rTableObj.GetModel() ) )
     131           0 : , mrItemPool( rTableObj.GetModel()->GetItemPool() )
     132             : , mnLastToken( 0 )
     133             : , mbNewDef( false )
     134             : , mnStartPara( 0 )
     135             : , mnColCnt( 0 )
     136             : , mnRowCnt( 0 )
     137             : , mnColMax( 0 )
     138             : , mpActDefault( 0 )
     139             : , mpDefMerge( 0 )
     140           0 : , mxTable( rTableObj.getTable() )
     141             : {
     142           0 :     mpOutliner->SetUpdateMode(true);
     143           0 :     mpOutliner->SetStyleSheet( 0, mrTableObj.GetStyleSheet() );
     144           0 :     mpInsDefault = new RTFCellDefault( &mrItemPool );
     145           0 : }
     146             : 
     147           0 : SdrTableRTFParser::~SdrTableRTFParser()
     148             : {
     149           0 :     delete mpOutliner;
     150           0 :     delete mpInsDefault;
     151           0 : }
     152             : 
     153           0 : void SdrTableRTFParser::Read( SvStream& rStream )
     154             : {
     155           0 :     EditEngine& rEdit = const_cast< EditEngine& >( mpOutliner->GetEditEngine() );
     156             : 
     157           0 :     Link<> aOldLink( rEdit.GetImportHdl() );
     158           0 :     rEdit.SetImportHdl( LINK( this, SdrTableRTFParser, RTFImportHdl ) );
     159           0 :     mpOutliner->Read( rStream, OUString(), EE_FORMAT_RTF );
     160           0 :     rEdit.SetImportHdl( aOldLink );
     161             : 
     162           0 :     FillTable();
     163           0 : }
     164             : 
     165           0 : IMPL_LINK( SdrTableRTFParser, RTFImportHdl, ImportInfo*, pInfo )
     166             : {
     167           0 :     switch ( pInfo->eState )
     168             :     {
     169             :         case RTFIMP_NEXTTOKEN:
     170           0 :             ProcToken( pInfo );
     171           0 :             break;
     172             :         case RTFIMP_UNKNOWNATTR:
     173           0 :             ProcToken( pInfo );
     174           0 :             break;
     175             :         case RTFIMP_START:
     176             :         {
     177           0 :             SvxRTFParser* pParser = static_cast<SvxRTFParser*>(pInfo->pParser);
     178           0 :             pParser->SetAttrPool( &mrItemPool );
     179           0 :             RTFPardAttrMapIds& rMap = pParser->GetPardMap();
     180           0 :             rMap.nBox = SDRATTR_TABLE_BORDER;
     181             :         }
     182           0 :             break;
     183             :         case RTFIMP_END:
     184           0 :             if ( pInfo->aSelection.nEndPos )
     185             :             {
     186           0 :                 mpActDefault = NULL;
     187           0 :                 pInfo->nToken = RTF_PAR;
     188           0 :                 pInfo->aSelection.nEndPara++;
     189           0 :                 ProcToken( pInfo );
     190             :             }
     191           0 :             break;
     192             :         case RTFIMP_SETATTR:
     193           0 :             break;
     194             :         case RTFIMP_INSERTTEXT:
     195           0 :             break;
     196             :         case RTFIMP_INSERTPARA:
     197           0 :             break;
     198             :         default:
     199             :             SAL_WARN( "svx.table","unknown ImportInfo.eState");
     200             :     }
     201           0 :     return 0;
     202             : }
     203             : 
     204           0 : void SdrTableRTFParser::NextRow()
     205             : {
     206           0 :     ++mnRowCnt;
     207           0 : }
     208             : 
     209           0 : void SdrTableRTFParser::InsertCell( ImportInfo* pInfo )
     210             : {
     211           0 :     sal_Int32 nCol = mpActDefault->mnCol;
     212             : 
     213           0 :     RTFCellInfoPtr xCellInfo( new RTFCellInfo(mrItemPool) );
     214             : 
     215           0 :     xCellInfo->mnStartPara = mnStartPara;
     216           0 :     xCellInfo->mnParaCount = pInfo->aSelection.nEndPara - 1 - mnStartPara;
     217             : 
     218           0 :     if( !maRows.empty() )
     219             :     {
     220           0 :         RTFColumnVectorPtr xColumn( maRows.back() );
     221             : 
     222           0 :         if( xColumn->size() <= (size_t)nCol )
     223           0 :             xColumn->resize( nCol+1 );
     224             : 
     225           0 :         (*xColumn)[nCol] = xCellInfo;
     226             :     }
     227             : 
     228           0 :     mnStartPara = pInfo->aSelection.nEndPara - 1;
     229           0 : }
     230             : 
     231           0 : void SdrTableRTFParser::FillTable()
     232             : {
     233             :     try
     234             :     {
     235           0 :         sal_Int32 nColCount = mxTable->getColumnCount();
     236           0 :         Reference< XTableColumns > xCols( mxTable->getColumns(), UNO_QUERY_THROW );
     237             : 
     238           0 :         if( nColCount < mnColMax )
     239             :         {
     240           0 :             xCols->insertByIndex( nColCount, mnColMax - nColCount );
     241           0 :             nColCount = mxTable->getColumnCount();
     242             :         }
     243             : 
     244           0 :         const OUString sWidth("Width");
     245           0 :         sal_Int32 nCol, nLastEdge = 0;
     246           0 :         for( nCol = 0; nCol < nColCount; nCol++ )
     247             :         {
     248           0 :             Reference< XPropertySet > xSet( xCols->getByIndex( nCol ), UNO_QUERY_THROW );
     249           0 :             sal_Int32 nWidth = maColumnEdges[nCol] - nLastEdge;
     250             : 
     251           0 :             xSet->setPropertyValue( sWidth, Any( nWidth ) );
     252           0 :             nLastEdge += nWidth;
     253           0 :         }
     254             : 
     255           0 :         const sal_Int32 nRowCount = mxTable->getRowCount();
     256           0 :         if( nRowCount < mnRowCnt )
     257             :         {
     258           0 :             Reference< XTableRows > xRows( mxTable->getRows(), UNO_QUERY_THROW );
     259           0 :             xRows->insertByIndex( nRowCount, mnRowCnt - nRowCount );
     260             :         }
     261             : 
     262           0 :         for( sal_Int32 nRow = 0; nRow < (sal_Int32)maRows.size(); nRow++ )
     263             :         {
     264           0 :             RTFColumnVectorPtr xColumn( maRows[nRow] );
     265           0 :             for( nCol = 0; nCol < (sal_Int32)xColumn->size(); nCol++ )
     266             :             {
     267           0 :                 RTFCellInfoPtr xCellInfo( (*xColumn)[nCol] );
     268             : 
     269           0 :                 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) );
     270           0 :                 if( xCell.is() && xCellInfo.get() )
     271             :                 {
     272           0 :                     const SfxPoolItem *pPoolItem = 0;
     273           0 :                     if( xCellInfo->maItemSet.GetItemState(SDRATTR_TABLE_BORDER,false,&pPoolItem)==SfxItemState::SET)
     274           0 :                         xCell->SetMergedItem( *pPoolItem );
     275             : 
     276           0 :                     boost::scoped_ptr<OutlinerParaObject> pTextObject(mpOutliner->CreateParaObject( xCellInfo->mnStartPara, xCellInfo->mnParaCount ));
     277           0 :                     if( pTextObject )
     278             :                     {
     279           0 :                         SdrOutliner& rOutliner=mrTableObj.ImpGetDrawOutliner();
     280           0 :                         rOutliner.SetUpdateMode(true);
     281           0 :                         rOutliner.SetText( *pTextObject );
     282           0 :                         mrTableObj.NbcSetOutlinerParaObjectForText( rOutliner.CreateParaObject(), xCell.get() );
     283           0 :                     }
     284             :                 }
     285           0 :             }
     286           0 :         }
     287             : 
     288           0 :         Rectangle aRect( mrTableObj.GetSnapRect() );
     289           0 :         aRect.Right() = aRect.Left() + nLastEdge;
     290           0 :         mrTableObj.NbcSetSnapRect( aRect );
     291             : 
     292             :     }
     293           0 :     catch( Exception& e )
     294             :     {
     295             :         (void)e;
     296             :         OSL_FAIL("sdr::table::SdrTableRTFParser::InsertCell(), exception caught!" );
     297             :     }
     298           0 : }
     299             : 
     300           0 : void SdrTableRTFParser::NewCellRow()
     301             : {
     302           0 :     if( mbNewDef )
     303             :     {
     304           0 :         mbNewDef = false;
     305             : 
     306           0 :         maRows.push_back( RTFColumnVectorPtr( new RTFColumnVector() ) );
     307             :     }
     308           0 :     mpDefMerge = NULL;
     309           0 :     maDefaultIterator = maDefaultList.begin();
     310             : 
     311           0 :     NextColumn();
     312             : 
     313             :     DBG_ASSERT( mpActDefault, "NewCellRow: pActDefault==0" );
     314           0 : }
     315             : 
     316           0 : void SdrTableRTFParser::NextColumn()
     317             : {
     318           0 :     if( maDefaultIterator != maDefaultList.end() )
     319           0 :         mpActDefault = (*maDefaultIterator++).get();
     320             :     else
     321           0 :         mpActDefault = 0;
     322           0 : }
     323             : 
     324           0 : long TwipsToHundMM( long nIn )
     325             : {
     326           0 :     long nRet = OutputDevice::LogicToLogic( nIn, MAP_TWIP, MAP_100TH_MM );
     327           0 :     return nRet;
     328             : }
     329             : 
     330           0 : void SdrTableRTFParser::ProcToken( ImportInfo* pInfo )
     331             : {
     332           0 :     switch ( pInfo->nToken )
     333             :     {
     334             :         case RTF_TROWD:         // denotes table row defauls, before RTF_CELLX
     335             :         {
     336           0 :             mnColCnt = 0;
     337           0 :             maDefaultList.clear();
     338           0 :             mpDefMerge = NULL;
     339           0 :             mnLastToken = pInfo->nToken;
     340             :         }
     341           0 :         break;
     342             :         case RTF_CLMGF:         // The first cell of cells to be merged
     343             :         {
     344           0 :             mpDefMerge = mpInsDefault;
     345           0 :             mnLastToken = pInfo->nToken;
     346             :         }
     347           0 :         break;
     348             :         case RTF_CLMRG:         // A cell to be merged with the preceding cell
     349             :         {
     350           0 :             if ( !mpDefMerge )
     351           0 :                 mpDefMerge = maDefaultList.back().get();
     352             :             DBG_ASSERT( mpDefMerge, "RTF_CLMRG: pDefMerge==0" );
     353           0 :             if( mpDefMerge )
     354           0 :                 mpDefMerge->mnColSpan++;
     355           0 :             mpInsDefault->mnColSpan = 0;
     356           0 :             mnLastToken = pInfo->nToken;
     357             :         }
     358           0 :         break;
     359             :         case RTF_CELLX:         // closes cell default
     360             :         {
     361           0 :             mbNewDef = true;
     362           0 :             mpInsDefault->mnCol = mnColCnt;
     363           0 :             maDefaultList.push_back( boost::shared_ptr< RTFCellDefault >( mpInsDefault ) );
     364             : 
     365           0 :             if( (sal_Int32)maColumnEdges.size() <= mnColCnt )
     366           0 :                 maColumnEdges.resize( mnColCnt + 1 );
     367             : 
     368           0 :             const sal_Int32 nSize = TwipsToHundMM( pInfo->nTokenValue );
     369           0 :             maColumnEdges[mnColCnt] = std::max( maColumnEdges[mnColCnt], nSize );
     370             : 
     371           0 :             mpInsDefault = new RTFCellDefault( &mrItemPool );
     372           0 :             if ( ++mnColCnt > mnColMax )
     373           0 :                 mnColMax = mnColCnt;
     374           0 :             mnLastToken = pInfo->nToken;
     375             :         }
     376           0 :         break;
     377             :         case RTF_INTBL:         // before the first RTF_CELL
     378             :         {
     379           0 :             if ( mnLastToken != RTF_INTBL && mnLastToken != RTF_CELL && mnLastToken != RTF_PAR )
     380             :             {
     381           0 :                 NewCellRow();
     382           0 :                 mnLastToken = pInfo->nToken;
     383             :             }
     384             :         }
     385           0 :         break;
     386             :         case RTF_CELL:          // denotes the end of a cell.
     387             :         {
     388             :             DBG_ASSERT( mpActDefault, "RTF_CELL: pActDefault==0" );
     389           0 :             if ( mbNewDef || !mpActDefault )
     390           0 :                 NewCellRow();
     391           0 :             if ( !mpActDefault )
     392           0 :                 mpActDefault = mpInsDefault;
     393           0 :             if ( mpActDefault->mnColSpan > 0 )
     394             :             {
     395           0 :                 InsertCell(pInfo);
     396             :             }
     397           0 :             NextColumn();
     398           0 :             mnLastToken = pInfo->nToken;
     399             :         }
     400           0 :         break;
     401             :         case RTF_ROW:           // means the end of a row
     402             :         {
     403           0 :             NextRow();
     404           0 :             mnLastToken = pInfo->nToken;
     405             :         }
     406           0 :         break;
     407             :         case RTF_PAR:           // Paragraph
     408           0 :             mnLastToken = pInfo->nToken;
     409           0 :             break;
     410             :         default:
     411             :         {   // do not set nLastToken
     412           0 :             switch ( pInfo->nToken & ~(0xff | RTF_TABLEDEF) )
     413             :             {
     414             :                 case RTF_SHADINGDEF:
     415             : //                  ((SvxRTFParser*)pInfo->pParser)->ReadBackgroundAttr(pInfo->nToken, mpInsDefault->maItemSet, sal_True );
     416           0 :                 break;
     417             :                 case RTF_BRDRDEF:
     418           0 :                     static_cast<SvxRTFParser*>(pInfo->pParser)->ReadBorderAttr(pInfo->nToken, mpInsDefault->maItemSet, true );
     419           0 :                 break;
     420             :             }
     421             :         }
     422             :     }
     423           0 : }
     424             : 
     425           0 : void SdrTableObj::ImportAsRTF( SvStream& rStream, SdrTableObj& rObj )
     426             : {
     427           0 :     SdrTableRTFParser aParser( rObj );
     428           0 :     aParser.Read( rStream );
     429           0 : }
     430             : 
     431         390 : } }
     432             : 
     433             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11