LCOV - code coverage report
Current view: top level - libreoffice/svx/source/svdraw - svdotxln.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 14 137 10.2 %
Date: 2012-12-27 Functions: 2 22 9.1 %
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             : #include "sal/config.h"
      21             : 
      22             : #include <comphelper/processfactory.hxx>
      23             : #include <unotools/ucbstreamhelper.hxx>
      24             : #include <unotools/localfilehelper.hxx>
      25             : #include <ucbhelper/content.hxx>
      26             : #include <unotools/datetime.hxx>
      27             : #include <svx/svdotext.hxx>
      28             : #include "svx/svditext.hxx"
      29             : #include <svx/svdmodel.hxx>
      30             : #include <editeng/editdata.hxx>
      31             : #include <sfx2/lnkbase.hxx>
      32             : #include <sfx2/linkmgr.hxx>
      33             : #include <tools/urlobj.hxx>
      34             : #include <svl/urihelper.hxx>
      35             : #include <tools/tenccvt.hxx>
      36             : 
      37             : 
      38             : class ImpSdrObjTextLink: public ::sfx2::SvBaseLink
      39             : {
      40             :     SdrTextObj*                 pSdrObj;
      41             : 
      42             : public:
      43           0 :     ImpSdrObjTextLink( SdrTextObj* pObj1 )
      44             :         : ::sfx2::SvBaseLink( ::sfx2::LINKUPDATE_ONCALL, FORMAT_FILE ),
      45           0 :             pSdrObj( pObj1 )
      46           0 :     {}
      47             :     virtual ~ImpSdrObjTextLink();
      48             : 
      49             :     virtual void Closed();
      50             :     virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
      51             :         const String& rMimeType, const ::com::sun::star::uno::Any & rValue );
      52             : 
      53           0 :     sal_Bool Connect() { return 0 != SvBaseLink::GetRealObject(); }
      54             : };
      55             : 
      56           0 : ImpSdrObjTextLink::~ImpSdrObjTextLink()
      57             : {
      58           0 : }
      59             : 
      60           0 : void ImpSdrObjTextLink::Closed()
      61             : {
      62           0 :     if (pSdrObj )
      63             :     {
      64             :         // set pLink of the object to NULL, because we are destroying the link instance now
      65           0 :         ImpSdrObjTextLinkUserData* pData=pSdrObj->GetLinkUserData();
      66           0 :         if (pData!=NULL) pData->pLink=NULL;
      67           0 :         pSdrObj->ReleaseTextLink();
      68             :     }
      69           0 :     SvBaseLink::Closed();
      70           0 : }
      71             : 
      72             : 
      73           0 : ::sfx2::SvBaseLink::UpdateResult ImpSdrObjTextLink::DataChanged(
      74             :     const String& /*rMimeType*/, const ::com::sun::star::uno::Any & /*rValue */)
      75             : {
      76           0 :     bool bForceReload = false;
      77           0 :     SdrModel* pModel = pSdrObj ? pSdrObj->GetModel() : 0;
      78           0 :     sfx2::LinkManager* pLinkManager= pModel ? pModel->GetLinkManager() : 0;
      79           0 :     if( pLinkManager )
      80             :     {
      81           0 :         ImpSdrObjTextLinkUserData* pData=pSdrObj->GetLinkUserData();
      82           0 :         if( pData )
      83             :         {
      84           0 :             String aFile;
      85           0 :             String aFilter;
      86           0 :             pLinkManager->GetDisplayNames( this, 0,&aFile, 0, &aFilter );
      87             : 
      88           0 :             if( !pData->aFileName.Equals( aFile ) ||
      89           0 :                 !pData->aFilterName.Equals( aFilter ))
      90             :             {
      91           0 :                 pData->aFileName = aFile;
      92           0 :                 pData->aFilterName = aFilter;
      93           0 :                 pSdrObj->SetChanged();
      94           0 :                 bForceReload = true;
      95           0 :             }
      96             :         }
      97             :     }
      98           0 :     if (pSdrObj )
      99           0 :         pSdrObj->ReloadLinkedText( bForceReload );
     100             : 
     101           0 :     return SUCCESS;
     102             : }
     103             : 
     104             : 
     105           0 : TYPEINIT1(ImpSdrObjTextLinkUserData,SdrObjUserData);
     106             : 
     107           0 : ImpSdrObjTextLinkUserData::ImpSdrObjTextLinkUserData(SdrTextObj* pObj1):
     108             :     SdrObjUserData(SdrInventor,SDRUSERDATA_OBJTEXTLINK,0),
     109             :     pObj(pObj1),
     110             :     aFileDate0( DateTime::EMPTY ),
     111             :     pLink(NULL),
     112           0 :     eCharSet(RTL_TEXTENCODING_DONTKNOW)
     113             : {
     114           0 : }
     115             : 
     116           0 : ImpSdrObjTextLinkUserData::~ImpSdrObjTextLinkUserData()
     117             : {
     118           0 :     delete pLink;
     119           0 : }
     120             : 
     121           0 : SdrObjUserData* ImpSdrObjTextLinkUserData::Clone(SdrObject* pObj1) const
     122             : {
     123           0 :     ImpSdrObjTextLinkUserData* pData=new ImpSdrObjTextLinkUserData((SdrTextObj*)pObj1);
     124           0 :     pData->aFileName  =aFileName;
     125           0 :     pData->aFilterName=aFilterName;
     126           0 :     pData->aFileDate0 =aFileDate0;
     127           0 :     pData->eCharSet   =eCharSet;
     128           0 :     pData->pLink=NULL;
     129           0 :     return pData;
     130             : }
     131             : 
     132             : 
     133           0 : void SdrTextObj::SetTextLink(const String& rFileName, const String& rFilterName, rtl_TextEncoding eCharSet)
     134             : {
     135           0 :     if(eCharSet == RTL_TEXTENCODING_DONTKNOW)
     136           0 :         eCharSet = osl_getThreadTextEncoding();
     137             : 
     138           0 :     ImpSdrObjTextLinkUserData* pData=GetLinkUserData();
     139           0 :     if (pData!=NULL) {
     140           0 :         ReleaseTextLink();
     141             :     }
     142           0 :     pData=new ImpSdrObjTextLinkUserData(this);
     143           0 :     pData->aFileName=rFileName;
     144           0 :     pData->aFilterName=rFilterName;
     145           0 :     pData->eCharSet=eCharSet;
     146           0 :     AppendUserData(pData);
     147           0 :     ImpLinkAnmeldung();
     148           0 : }
     149             : 
     150           0 : void SdrTextObj::ReleaseTextLink()
     151             : {
     152           0 :     ImpLinkAbmeldung();
     153           0 :     sal_uInt16 nAnz=GetUserDataCount();
     154           0 :     for (sal_uInt16 nNum=nAnz; nNum>0;) {
     155           0 :         nNum--;
     156           0 :         SdrObjUserData* pData=GetUserData(nNum);
     157           0 :         if (pData->GetInventor()==SdrInventor && pData->GetId()==SDRUSERDATA_OBJTEXTLINK) {
     158           0 :             DeleteUserData(nNum);
     159             :         }
     160             :     }
     161           0 : }
     162             : 
     163           0 : bool SdrTextObj::ReloadLinkedText( bool bForceLoad)
     164             : {
     165           0 :     ImpSdrObjTextLinkUserData*  pData = GetLinkUserData();
     166           0 :     bool                        bRet = true;
     167             : 
     168           0 :     if( pData )
     169             :     {
     170           0 :         DateTime                    aFileDT( DateTime::EMPTY );
     171           0 :         sal_Bool                        bExists = sal_True, bLoad = sal_False;
     172             : 
     173             :         try
     174             :         {
     175           0 :             INetURLObject aURL( pData->aFileName );
     176             :             DBG_ASSERT( aURL.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
     177             : 
     178           0 :             ::ucbhelper::Content aCnt( aURL.GetMainURL( INetURLObject::NO_DECODE ), ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XCommandEnvironment >(), comphelper::getProcessComponentContext() );
     179           0 :             ::com::sun::star::uno::Any aAny( aCnt.getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DateModified" ) ) ) );
     180           0 :             ::com::sun::star::util::DateTime aDateTime;
     181             : 
     182           0 :             aAny >>= aDateTime;
     183           0 :             ::utl::typeConvert( aDateTime, aFileDT );
     184             :         }
     185           0 :         catch( ... )
     186             :         {
     187           0 :             bExists = sal_False;
     188             :         }
     189             : 
     190           0 :         if( bExists )
     191             :         {
     192           0 :             if( bForceLoad )
     193           0 :                 bLoad = sal_True;
     194             :             else
     195           0 :                 bLoad = ( aFileDT > pData->aFileDate0 );
     196             : 
     197           0 :             if( bLoad )
     198             :             {
     199           0 :                 bRet = LoadText( pData->aFileName, pData->aFilterName, pData->eCharSet );
     200             :             }
     201             : 
     202           0 :             pData->aFileDate0 = aFileDT;
     203             :         }
     204             :     }
     205             : 
     206           0 :     return bRet;
     207             : }
     208             : 
     209           0 : bool SdrTextObj::LoadText(const String& rFileName, const String& /*rFilterName*/, rtl_TextEncoding eCharSet)
     210             : {
     211           0 :     INetURLObject   aFileURL( rFileName );
     212           0 :     sal_Bool            bRet = sal_False;
     213             : 
     214           0 :     if( aFileURL.GetProtocol() == INET_PROT_NOT_VALID )
     215             :     {
     216           0 :         rtl::OUString aFileURLStr;
     217             : 
     218           0 :         if( ::utl::LocalFileHelper::ConvertPhysicalNameToURL( rFileName, aFileURLStr ) )
     219           0 :             aFileURL = INetURLObject( aFileURLStr );
     220             :         else
     221           0 :             aFileURL.SetSmartURL( rFileName );
     222             :     }
     223             : 
     224             :     DBG_ASSERT( aFileURL.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
     225             : 
     226           0 :     SvStream* pIStm = ::utl::UcbStreamHelper::CreateStream( aFileURL.GetMainURL( INetURLObject::NO_DECODE ), STREAM_READ );
     227             : 
     228           0 :     if( pIStm )
     229             :     {
     230           0 :         pIStm->SetStreamCharSet(GetSOLoadTextEncoding(eCharSet));
     231             : 
     232             :         char cRTF[5];
     233           0 :         cRTF[4] = 0;
     234           0 :         pIStm->Read(cRTF, 5);
     235             : 
     236           0 :         sal_Bool bRTF = cRTF[0] == '{' && cRTF[1] == '\\' && cRTF[2] == 'r' && cRTF[3] == 't' && cRTF[4] == 'f';
     237             : 
     238           0 :         pIStm->Seek(0);
     239             : 
     240           0 :         if( !pIStm->GetError() )
     241             :         {
     242           0 :             SetText( *pIStm, aFileURL.GetMainURL( INetURLObject::NO_DECODE ), sal::static_int_cast< sal_uInt16 >( bRTF ? EE_FORMAT_RTF : EE_FORMAT_TEXT ) );
     243           0 :             bRet = sal_True;
     244             :         }
     245             : 
     246           0 :         delete pIStm;
     247             :     }
     248             : 
     249           0 :     return bRet;
     250             : }
     251             : 
     252        4523 : ImpSdrObjTextLinkUserData* SdrTextObj::GetLinkUserData() const
     253             : {
     254        4523 :     ImpSdrObjTextLinkUserData* pData=NULL;
     255        4523 :     sal_uInt16 nAnz=GetUserDataCount();
     256        9709 :     for (sal_uInt16 nNum=nAnz; nNum>0 && pData==NULL;) {
     257         663 :         nNum--;
     258         663 :         pData=(ImpSdrObjTextLinkUserData*)GetUserData(nNum);
     259         663 :         if (pData->GetInventor()!=SdrInventor || pData->GetId()!=SDRUSERDATA_OBJTEXTLINK) {
     260         663 :             pData=NULL;
     261             :         }
     262             :     }
     263        4523 :     return pData;
     264             : }
     265             : 
     266           0 : void SdrTextObj::ImpLinkAnmeldung()
     267             : {
     268           0 :     ImpSdrObjTextLinkUserData* pData=GetLinkUserData();
     269           0 :     sfx2::LinkManager* pLinkManager=pModel!=NULL ? pModel->GetLinkManager() : NULL;
     270           0 :     if (pLinkManager!=NULL && pData!=NULL && pData->pLink==NULL) { // don't register twice
     271           0 :         pData->pLink=new ImpSdrObjTextLink(this);
     272             : #ifdef GCC
     273             :         pLinkManager->InsertFileLink(*pData->pLink,OBJECT_CLIENT_FILE,pData->aFileName,
     274           0 :                                      pData->aFilterName.Len() ?
     275             :                                       &pData->aFilterName : (const String *)NULL,
     276           0 :                                      (const String *)NULL);
     277             : #else
     278             :         pLinkManager->InsertFileLink(*pData->pLink,OBJECT_CLIENT_FILE,pData->aFileName,
     279             :                                      pData->aFilterName.Len() ? &pData->aFilterName : NULL,NULL);
     280             : #endif
     281           0 :         pData->pLink->Connect();
     282             :     }
     283           0 : }
     284             : 
     285        4108 : void SdrTextObj::ImpLinkAbmeldung()
     286             : {
     287        4108 :     ImpSdrObjTextLinkUserData* pData=GetLinkUserData();
     288        4108 :     sfx2::LinkManager* pLinkManager=pModel!=NULL ? pModel->GetLinkManager() : NULL;
     289        4108 :     if (pLinkManager!=NULL && pData!=NULL && pData->pLink!=NULL) { // don't register twice
     290             :         // when doing Remove, *pLink is deleted implicitly
     291           0 :         pLinkManager->Remove( pData->pLink );
     292           0 :         pData->pLink=NULL;
     293             :     }
     294        4108 : }
     295             : 
     296             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10