LCOV - code coverage report
Current view: top level - libreoffice/sc/source/ui/docshell - tablink.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 27 290 9.3 %
Date: 2012-12-27 Functions: 2 29 6.9 %
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             : #ifdef _MSC_VER
      21             : #pragma optimize("",off)
      22             : #endif
      23             : 
      24             : //------------------------------------------------------------------
      25             : 
      26             : #include <sfx2/sfxsids.hrc>
      27             : #include <sfx2/app.hxx>
      28             : #include <svl/itemset.hxx>
      29             : #include <svl/stritem.hxx>
      30             : #include <sfx2/docfile.hxx>
      31             : #include <sfx2/docfilt.hxx>
      32             : #include <sfx2/fcontnr.hxx>
      33             : #include <sfx2/linkmgr.hxx>
      34             : #include <tools/urlobj.hxx>
      35             : #include <unotools/transliterationwrapper.hxx>
      36             : 
      37             : #include "tablink.hxx"
      38             : 
      39             : #include "scextopt.hxx"
      40             : #include "table.hxx"
      41             : #include "document.hxx"
      42             : #include "docsh.hxx"
      43             : #include "globstr.hrc"
      44             : #include "undoblk.hxx"
      45             : #include "undotab.hxx"
      46             : #include "global.hxx"
      47             : #include "hints.hxx"
      48             : #include "cell.hxx"
      49             : #include "dociter.hxx"
      50             : #include "formula/opcode.hxx"
      51             : 
      52             : using ::rtl::OUString;
      53             : 
      54             : struct TableLink_Impl
      55             : {
      56             :     ScDocShell* m_pDocSh;
      57             :     Window*     m_pOldParent;
      58             :     Link        m_aEndEditLink;
      59             : 
      60           0 :     TableLink_Impl() : m_pDocSh( NULL ), m_pOldParent( NULL ) {}
      61             : };
      62             : 
      63           0 : TYPEINIT1(ScTableLink, ::sfx2::SvBaseLink);
      64             : 
      65             : //------------------------------------------------------------------------
      66             : 
      67           0 : ScTableLink::ScTableLink(ScDocShell* pDocSh, const String& rFile,
      68             :                             const String& rFilter, const String& rOpt,
      69             :                             sal_uLong nRefresh ):
      70             :     ::sfx2::SvBaseLink(sfx2::LINKUPDATE_ONCALL,FORMAT_FILE),
      71             :     ScRefreshTimer( nRefresh ),
      72           0 :     pImpl( new TableLink_Impl ),
      73             :     aFileName(rFile),
      74             :     aFilterName(rFilter),
      75             :     aOptions(rOpt),
      76             :     bInCreate( false ),
      77             :     bInEdit( false ),
      78             :     bAddUndo( true ),
      79           0 :     bDoPaint( true )
      80             : {
      81           0 :     pImpl->m_pDocSh = pDocSh;
      82           0 : }
      83             : 
      84           0 : ScTableLink::ScTableLink(SfxObjectShell* pShell, const String& rFile,
      85             :                             const String& rFilter, const String& rOpt,
      86             :                             sal_uLong nRefresh ):
      87             :     ::sfx2::SvBaseLink(sfx2::LINKUPDATE_ONCALL,FORMAT_FILE),
      88             :     ScRefreshTimer( nRefresh ),
      89           0 :     pImpl( new TableLink_Impl ),
      90             :     aFileName(rFile),
      91             :     aFilterName(rFilter),
      92             :     aOptions(rOpt),
      93             :     bInCreate( false ),
      94             :     bInEdit( false ),
      95             :     bAddUndo( true ),
      96           0 :     bDoPaint( true )
      97             : {
      98           0 :     pImpl->m_pDocSh = static_cast< ScDocShell* >( pShell );
      99           0 :     SetRefreshHandler( LINK( this, ScTableLink, RefreshHdl ) );
     100           0 :     SetRefreshControl( pImpl->m_pDocSh->GetDocument()->GetRefreshTimerControlAddress() );
     101           0 : }
     102             : 
     103           0 : ScTableLink::~ScTableLink()
     104             : {
     105             :     // Verbindung aufheben
     106             : 
     107           0 :     StopRefreshTimer();
     108           0 :     String aEmpty;
     109           0 :     ScDocument* pDoc = pImpl->m_pDocSh->GetDocument();
     110           0 :     SCTAB nCount = pDoc->GetTableCount();
     111           0 :     for (SCTAB nTab=0; nTab<nCount; nTab++)
     112           0 :         if (pDoc->IsLinked(nTab) && aFileName.equals(pDoc->GetLinkDoc(nTab)))
     113           0 :             pDoc->SetLink( nTab, SC_LINK_NONE, aEmpty, aEmpty, aEmpty, aEmpty, 0 );
     114           0 :     delete pImpl;
     115           0 : }
     116             : 
     117           0 : void ScTableLink::Edit( Window* pParent, const Link& rEndEditHdl )
     118             : {
     119             :     //  DefModalDialogParent setzen, weil evtl. aus der DocShell beim ConvertFrom
     120             :     //  ein Optionen-Dialog kommt...
     121             : 
     122           0 :     pImpl->m_aEndEditLink = rEndEditHdl;
     123           0 :     pImpl->m_pOldParent = Application::GetDefDialogParent();
     124           0 :     if (pParent)
     125           0 :         Application::SetDefDialogParent(pParent);
     126             : 
     127           0 :     bInEdit = true;
     128           0 :     SvBaseLink::Edit( pParent, LINK( this, ScTableLink, TableEndEditHdl ) );
     129           0 : }
     130             : 
     131           0 : ::sfx2::SvBaseLink::UpdateResult ScTableLink::DataChanged(
     132             :     const String&, const ::com::sun::star::uno::Any& )
     133             : {
     134           0 :     sfx2::LinkManager* pLinkManager=pImpl->m_pDocSh->GetDocument()->GetLinkManager();
     135           0 :     if (pLinkManager!=NULL)
     136             :     {
     137           0 :         rtl::OUString aFile, aFilter;
     138           0 :         pLinkManager->GetDisplayNames(this, 0, &aFile, NULL, &aFilter);
     139             : 
     140             :         //  the file dialog returns the filter name with the application prefix
     141             :         //  -> remove prefix
     142           0 :         ScDocumentLoader::RemoveAppPrefix( aFilter );
     143             : 
     144           0 :         if (!bInCreate)
     145           0 :             Refresh( aFile, aFilter, NULL, GetRefreshDelay() ); // don't load twice
     146             :     }
     147           0 :     return SUCCESS;
     148             : }
     149             : 
     150           0 : void ScTableLink::Closed()
     151             : {
     152             :     // Verknuepfung loeschen: Undo
     153           0 :     ScDocument* pDoc = pImpl->m_pDocSh->GetDocument();
     154           0 :     sal_Bool bUndo (pDoc->IsUndoEnabled());
     155             : 
     156           0 :     if (bAddUndo && bUndo)
     157             :     {
     158           0 :         pImpl->m_pDocSh->GetUndoManager()->AddUndoAction(
     159           0 :                 new ScUndoRemoveLink( pImpl->m_pDocSh, aFileName ) );
     160             : 
     161           0 :         bAddUndo = false;   // nur einmal
     162             :     }
     163             : 
     164             :     // Verbindung wird im dtor aufgehoben
     165             : 
     166           0 :     SvBaseLink::Closed();
     167           0 : }
     168             : 
     169           0 : sal_Bool ScTableLink::IsUsed() const
     170             : {
     171           0 :     return pImpl->m_pDocSh->GetDocument()->HasLink( aFileName, aFilterName, aOptions );
     172             : }
     173             : 
     174           0 : sal_Bool ScTableLink::Refresh(const String& rNewFile, const String& rNewFilter,
     175             :                             const String* pNewOptions, sal_uLong nNewRefresh )
     176             : {
     177             :     //  Dokument laden
     178             : 
     179           0 :     if (!rNewFile.Len() || !rNewFilter.Len())
     180           0 :         return false;
     181             : 
     182           0 :     rtl::OUString aNewUrl = ScGlobal::GetAbsDocName(rNewFile, pImpl->m_pDocSh);
     183           0 :     bool bNewUrlName = !aFileName.equals(aNewUrl);
     184             : 
     185           0 :     const SfxFilter* pFilter = pImpl->m_pDocSh->GetFactory().GetFilterContainer()->GetFilter4FilterName(rNewFilter);
     186           0 :     if (!pFilter)
     187           0 :         return false;
     188             : 
     189           0 :     ScDocument* pDoc = pImpl->m_pDocSh->GetDocument();
     190           0 :     pDoc->SetInLinkUpdate( true );
     191             : 
     192           0 :     sal_Bool bUndo(pDoc->IsUndoEnabled());
     193             : 
     194             :     //  wenn neuer Filter ausgewaehlt wurde, Optionen vergessen
     195           0 :     if (!aFilterName.equals(rNewFilter))
     196           0 :         aOptions = rtl::OUString();
     197           0 :     if ( pNewOptions )                  // Optionen hart angegeben?
     198           0 :         aOptions = *pNewOptions;
     199             : 
     200             :     //  ItemSet immer anlegen, damit die DocShell die Optionen setzen kann
     201           0 :     SfxItemSet* pSet = new SfxAllItemSet( SFX_APP()->GetPool() );
     202           0 :     if (!aOptions.isEmpty())
     203           0 :         pSet->Put( SfxStringItem( SID_FILE_FILTEROPTIONS, aOptions ) );
     204             : 
     205           0 :     SfxMedium* pMed = new SfxMedium(aNewUrl, STREAM_STD_READ, pFilter, pSet);
     206             : 
     207           0 :     if ( bInEdit )                              // only if using the edit dialog,
     208           0 :         pMed->UseInteractionHandler(true);    // enable the filter options dialog
     209             : 
     210             :     // aRef->DoClose() will be called explicitly, but it is still more safe to use SfxObjectShellLock here
     211           0 :     ScDocShell* pSrcShell = new ScDocShell(SFX_CREATE_MODE_INTERNAL);
     212           0 :     SfxObjectShellLock aRef = pSrcShell;
     213           0 :     pSrcShell->DoLoad(pMed);
     214             : 
     215             :     // Optionen koennten gesetzt worden sein
     216           0 :     String aNewOpt = ScDocumentLoader::GetOptions(*pMed);
     217           0 :     if (!aNewOpt.Len())
     218           0 :         aNewOpt = aOptions;
     219             : 
     220             :     //  Undo...
     221             : 
     222           0 :     ScDocument* pUndoDoc = NULL;
     223           0 :     sal_Bool bFirst = true;
     224           0 :     if (bAddUndo && bUndo)
     225           0 :         pUndoDoc = new ScDocument( SCDOCMODE_UNDO );
     226             : 
     227             :     //  Tabellen kopieren
     228             : 
     229           0 :     ScDocShellModificator aModificator( *pImpl->m_pDocSh );
     230             : 
     231           0 :     sal_Bool bNotFound = false;
     232           0 :     ScDocument* pSrcDoc = pSrcShell->GetDocument();
     233             : 
     234             :     //  from text filters that don't set the table name,
     235             :     //  use the one table regardless of link table name
     236           0 :     sal_Bool bAutoTab = (pSrcDoc->GetTableCount() == 1) &&
     237           0 :                     ScDocShell::HasAutomaticTableName( rNewFilter );
     238             : 
     239           0 :     SCTAB nCount = pDoc->GetTableCount();
     240           0 :     for (SCTAB nTab=0; nTab<nCount; nTab++)
     241             :     {
     242           0 :         sal_uInt8 nMode = pDoc->GetLinkMode(nTab);
     243           0 :         if (nMode && aFileName.equals(pDoc->GetLinkDoc(nTab)))
     244             :         {
     245           0 :             String aTabName = pDoc->GetLinkTab(nTab);
     246             : 
     247             :             //  Undo
     248             : 
     249           0 :             if (bAddUndo && bUndo)
     250             :             {
     251           0 :                 if (bFirst)
     252           0 :                     pUndoDoc->InitUndo( pDoc, nTab, nTab, true, true );
     253             :                 else
     254           0 :                     pUndoDoc->AddUndoTab( nTab, nTab, true, true );
     255           0 :                 bFirst = false;
     256           0 :                 ScRange aRange(0,0,nTab,MAXCOL,MAXROW,nTab);
     257           0 :                 pDoc->CopyToDocument(aRange, IDF_ALL, false, pUndoDoc);
     258           0 :                 pUndoDoc->TransferDrawPage( pDoc, nTab, nTab );
     259             :                 pUndoDoc->SetLink( nTab, nMode, aFileName, aFilterName,
     260           0 :                                    aOptions, aTabName, GetRefreshDelay() );
     261           0 :                                 pUndoDoc->SetTabBgColor( nTab, pDoc->GetTabBgColor(nTab) );
     262             :             }
     263             : 
     264             :             //  Tabellenname einer ExtDocRef anpassen
     265             : 
     266           0 :             if ( bNewUrlName && nMode == SC_LINK_VALUE )
     267             :             {
     268           0 :                 rtl::OUString aName;
     269           0 :                 pDoc->GetName( nTab, aName );
     270           0 :                 if ( ScGlobal::GetpTransliteration()->isEqual(
     271           0 :                         ScGlobal::GetDocTabName( aFileName, aTabName ), aName ) )
     272             :                 {
     273             :                     pDoc->RenameTab( nTab,
     274             :                         ScGlobal::GetDocTabName( aNewUrl, aTabName ),
     275           0 :                         false, true );  // kein RefUpdate, kein ValidTabName
     276           0 :                 }
     277             :             }
     278             : 
     279             :             //  kopieren
     280             : 
     281           0 :             SCTAB nSrcTab = 0;
     282           0 :             bool bFound = false;
     283             :             /*  #i71497# check if external document is loaded successfully,
     284             :                 otherwise we may find the empty default sheet "Sheet1" in
     285             :                 pSrcDoc, even if the document does not exist. */
     286           0 :             if( pMed->GetError() == 0 )
     287             :             {
     288             :                 // no sheet name -> use first sheet
     289           0 :                 if ( aTabName.Len() && !bAutoTab )
     290           0 :                     bFound = pSrcDoc->GetTable( aTabName, nSrcTab );
     291             :                 else
     292           0 :                     bFound = true;
     293             :             }
     294             : 
     295           0 :             if (bFound)
     296             :                 pDoc->TransferTab( pSrcDoc, nSrcTab, nTab, false,       // nicht neu einfuegen
     297           0 :                                         (nMode == SC_LINK_VALUE) );     // nur Werte?
     298             :             else
     299             :             {
     300           0 :                 pDoc->DeleteAreaTab( 0,0,MAXCOL,MAXROW, nTab, IDF_ALL );
     301             : 
     302           0 :                 bool bShowError = true;
     303           0 :                 if ( nMode == SC_LINK_VALUE )
     304             :                 {
     305             :                     //  Value link (used with external references in formulas):
     306             :                     //  Look for formulas that reference the sheet, and put errors in the referenced cells.
     307             : 
     308           0 :                     ScRangeList aErrorCells;        // cells on the linked sheets that need error values
     309             : 
     310           0 :                     ScCellIterator aCellIter( pDoc, 0,0,0, MAXCOL,MAXROW,MAXTAB );          // all sheets
     311           0 :                     ScBaseCell* pCell = aCellIter.GetFirst();
     312           0 :                     while (pCell)
     313             :                     {
     314           0 :                         if (pCell->GetCellType() == CELLTYPE_FORMULA)
     315             :                         {
     316           0 :                             ScFormulaCell* pFCell = static_cast<ScFormulaCell*>(pCell);
     317             : 
     318           0 :                             ScDetectiveRefIter aRefIter( pFCell );
     319           0 :                             ScRange aRefRange;
     320           0 :                             while ( aRefIter.GetNextRef( aRefRange ) )
     321             :                             {
     322           0 :                                 if ( aRefRange.aStart.Tab() <= nTab && aRefRange.aEnd.Tab() >= nTab )
     323             :                                 {
     324             :                                     // use first cell of range references (don't fill potentially large ranges)
     325             : 
     326           0 :                                     aErrorCells.Join( ScRange( aRefRange.aStart ) );
     327             :                                 }
     328             :                             }
     329             :                         }
     330           0 :                         pCell = aCellIter.GetNext();
     331             :                     }
     332             : 
     333           0 :                     size_t nRanges = aErrorCells.size();
     334           0 :                     if ( nRanges )                          // found any?
     335             :                     {
     336           0 :                         ScTokenArray aTokenArr;
     337           0 :                         aTokenArr.AddOpCode( ocNotAvail );
     338           0 :                         aTokenArr.AddOpCode( ocOpen );
     339           0 :                         aTokenArr.AddOpCode( ocClose );
     340           0 :                         aTokenArr.AddOpCode( ocStop );
     341             : 
     342           0 :                         for (size_t nPos=0; nPos < nRanges; nPos++)
     343             :                         {
     344           0 :                             const ScRange* pRange = aErrorCells[ nPos ];
     345           0 :                             SCCOL nStartCol = pRange->aStart.Col();
     346           0 :                             SCROW nStartRow = pRange->aStart.Row();
     347           0 :                             SCCOL nEndCol = pRange->aEnd.Col();
     348           0 :                             SCROW nEndRow = pRange->aEnd.Row();
     349           0 :                             for (SCROW nRow=nStartRow; nRow<=nEndRow; nRow++)
     350           0 :                                 for (SCCOL nCol=nStartCol; nCol<=nEndCol; nCol++)
     351             :                                 {
     352           0 :                                     ScAddress aDestPos( nCol, nRow, nTab );
     353           0 :                                     ScFormulaCell* pNewCell = new ScFormulaCell( pDoc, aDestPos, &aTokenArr );
     354           0 :                                     pDoc->PutCell( aDestPos, pNewCell );
     355             :                                 }
     356             :                         }
     357             : 
     358           0 :                         bShowError = false;
     359           0 :                     }
     360             :                     // if no references were found, insert error message (don't leave the sheet empty)
     361             :                 }
     362             : 
     363           0 :                 if ( bShowError )
     364             :                 {
     365             :                     //  Normal link or no references: put error message on sheet.
     366             : 
     367           0 :                     pDoc->SetString( 0,0,nTab, ScGlobal::GetRscString(STR_LINKERROR) );
     368           0 :                     pDoc->SetString( 0,1,nTab, ScGlobal::GetRscString(STR_LINKERRORFILE) );
     369           0 :                     pDoc->SetString( 1,1,nTab, aNewUrl );
     370           0 :                     pDoc->SetString( 0,2,nTab, ScGlobal::GetRscString(STR_LINKERRORTAB) );
     371           0 :                     pDoc->SetString( 1,2,nTab, aTabName );
     372             :                 }
     373             : 
     374           0 :                 bNotFound = true;
     375             :             }
     376             : 
     377           0 :             if ( bNewUrlName || !aFilterName.equals(rNewFilter) ||
     378           0 :                     !aOptions.equals(aNewOpt) || pNewOptions ||
     379           0 :                     nNewRefresh != GetRefreshDelay() )
     380             :                 pDoc->SetLink( nTab, nMode, aNewUrl, rNewFilter, aNewOpt,
     381           0 :                     aTabName, nNewRefresh );
     382             :         }
     383             :     }
     384             : 
     385             :     //  neue Einstellungen merken
     386             : 
     387           0 :     if ( bNewUrlName )
     388           0 :         aFileName = aNewUrl;
     389           0 :     if (!aFilterName.equals(rNewFilter))
     390           0 :         aFilterName = rNewFilter;
     391           0 :     if (!aOptions.equals(aNewOpt))
     392           0 :         aOptions = aNewOpt;
     393             : 
     394             :     //  aufraeumen
     395             : 
     396           0 :     aRef->DoClose();
     397             : 
     398             :     //  Undo
     399             : 
     400           0 :     if (bAddUndo && bUndo)
     401           0 :         pImpl->m_pDocSh->GetUndoManager()->AddUndoAction(
     402           0 :                     new ScUndoRefreshLink( pImpl->m_pDocSh, pUndoDoc ) );
     403             : 
     404             :     //  Paint (koennen mehrere Tabellen sein)
     405             : 
     406           0 :     if (bDoPaint)
     407             :     {
     408             :         pImpl->m_pDocSh->PostPaint( ScRange(0,0,0,MAXCOL,MAXROW,MAXTAB),
     409           0 :                                     PAINT_GRID | PAINT_TOP | PAINT_LEFT | PAINT_EXTRAS );
     410           0 :         aModificator.SetDocumentModified();
     411             :     }
     412             : 
     413             :     if (bNotFound)
     414             :     {
     415             :         //! Fehler ausgeben ?
     416             :     }
     417             : 
     418           0 :     pDoc->SetInLinkUpdate( false );
     419             : 
     420             :     //  notify Uno objects (for XRefreshListener)
     421             :     //! also notify Uno objects if file name was changed!
     422           0 :     ScLinkRefreshedHint aHint;
     423           0 :     aHint.SetSheetLink( aFileName );
     424           0 :     pDoc->BroadcastUno( aHint );
     425             : 
     426           0 :     return true;
     427             : }
     428             : 
     429           0 : IMPL_LINK_NOARG(ScTableLink, RefreshHdl)
     430             : {
     431           0 :     long nRes = Refresh( aFileName, aFilterName, NULL, GetRefreshDelay() ) != 0;
     432           0 :     return nRes;
     433             : }
     434             : 
     435           0 : IMPL_LINK( ScTableLink, TableEndEditHdl, ::sfx2::SvBaseLink*, pLink )
     436             : {
     437           0 :     if ( pImpl->m_aEndEditLink.IsSet() )
     438           0 :         pImpl->m_aEndEditLink.Call( pLink );
     439           0 :     bInEdit = false;
     440           0 :     Application::SetDefDialogParent( pImpl->m_pOldParent );
     441           0 :     return 0;
     442             : }
     443             : 
     444             : // === ScDocumentLoader ==================================================
     445             : 
     446           0 : rtl::OUString ScDocumentLoader::GetOptions( SfxMedium& rMedium )
     447             : {
     448           0 :     SfxItemSet* pSet = rMedium.GetItemSet();
     449             :     const SfxPoolItem* pItem;
     450           0 :     if ( pSet && SFX_ITEM_SET == pSet->GetItemState( SID_FILE_FILTEROPTIONS, true, &pItem ) )
     451           0 :         return ((const SfxStringItem*)pItem)->GetValue();
     452             : 
     453           0 :     return EMPTY_STRING;
     454             : }
     455             : 
     456           2 : bool ScDocumentLoader::GetFilterName( const String& rFileName,
     457             :                                       String& rFilter, String& rOptions,
     458             :                                       bool bWithContent, bool bWithInteraction )
     459             : {
     460           2 :     TypeId aScType = TYPE(ScDocShell);
     461           2 :     SfxObjectShell* pDocSh = SfxObjectShell::GetFirst( &aScType );
     462           4 :     while ( pDocSh )
     463             :     {
     464           0 :         if ( pDocSh->HasName() )
     465             :         {
     466           0 :             SfxMedium* pMed = pDocSh->GetMedium();
     467           0 :             if ( pMed->GetName().equals(rFileName) )
     468             :             {
     469           0 :                 rFilter = pMed->GetFilter()->GetFilterName();
     470           0 :                 rOptions = GetOptions(*pMed);
     471           0 :                 return true;
     472             :             }
     473             :         }
     474           0 :         pDocSh = SfxObjectShell::GetNext( *pDocSh, &aScType );
     475             :     }
     476             : 
     477           2 :     INetURLObject aUrl( rFileName );
     478           2 :     INetProtocol eProt = aUrl.GetProtocol();
     479           2 :     if ( eProt == INET_PROT_NOT_VALID )         // invalid URL?
     480           0 :         return false;                           // abort without creating a medium
     481             : 
     482             :     //  Filter-Detection
     483             : 
     484           2 :     const SfxFilter* pSfxFilter = NULL;
     485           2 :     SfxMedium* pMedium = new SfxMedium( rFileName, STREAM_STD_READ );
     486           2 :     if ( pMedium->GetError() == ERRCODE_NONE )
     487             :     {
     488           2 :         if ( bWithInteraction )
     489           0 :             pMedium->UseInteractionHandler(true);   // #i73992# no longer called from GuessFilter
     490             : 
     491           2 :         SfxFilterMatcher aMatcher( rtl::OUString("scalc") );
     492           2 :         if( bWithContent )
     493           2 :             aMatcher.GuessFilter( *pMedium, &pSfxFilter );
     494             :         else
     495           0 :             aMatcher.GuessFilterIgnoringContent( *pMedium, &pSfxFilter );
     496             :     }
     497             : 
     498           2 :     sal_Bool bOK = false;
     499           2 :     if ( pMedium->GetError() == ERRCODE_NONE )
     500             :     {
     501           2 :         if ( pSfxFilter )
     502           0 :             rFilter = pSfxFilter->GetFilterName();
     503             :         else
     504           2 :             rFilter = ScDocShell::GetOwnFilterName();       //  sonst Calc-Datei
     505           2 :         bOK = (rFilter.Len()>0);
     506             :     }
     507             : 
     508           2 :     delete pMedium;
     509           2 :     return bOK;
     510             : }
     511             : 
     512           2 : bool ScDocumentLoader::GetFilterName(
     513             :     const OUString& rFilterName, OUString& rFilter, OUString& rOptions,
     514             :     bool bWithContent, bool bWithInteraction)
     515             : {
     516           2 :     String aTmp1, aTmp2;
     517           2 :     bool bRet = GetFilterName(rFilterName, aTmp1, aTmp2, bWithContent, bWithInteraction);
     518           2 :     rFilter = aTmp1;
     519           2 :     rOptions = aTmp2;
     520           2 :     return bRet;
     521             : }
     522             : 
     523           0 : void ScDocumentLoader::RemoveAppPrefix( rtl::OUString& rFilterName )
     524             : {
     525           0 :     rtl::OUStringBuffer aAppPrefix;
     526           0 :     aAppPrefix.appendAscii(STRING_SCAPP);
     527           0 :     aAppPrefix.appendAscii(": ");
     528           0 :     sal_Int32 nPreLen = aAppPrefix.getLength();
     529           0 :     if (rFilterName.copy(0, nPreLen).equals(aAppPrefix.makeStringAndClear()))
     530           0 :         rFilterName = rFilterName.copy(nPreLen);
     531           0 : }
     532             : 
     533           0 : ScDocumentLoader::ScDocumentLoader( const rtl::OUString& rFileName,
     534             :                                     rtl::OUString& rFilterName, rtl::OUString& rOptions,
     535             :                                     sal_uInt32 nRekCnt, bool bWithInteraction ) :
     536             :         pDocShell(0),
     537           0 :         pMedium(0)
     538             : {
     539           0 :     if ( rFilterName.isEmpty() )
     540           0 :         GetFilterName( rFileName, rFilterName, rOptions, true, bWithInteraction );
     541             : 
     542           0 :     const SfxFilter* pFilter = ScDocShell::Factory().GetFilterContainer()->GetFilter4FilterName( rFilterName );
     543             : 
     544             :     //  ItemSet immer anlegen, damit die DocShell die Optionen setzen kann
     545           0 :     SfxItemSet* pSet = new SfxAllItemSet( SFX_APP()->GetPool() );
     546           0 :     if ( !rOptions.isEmpty() )
     547           0 :         pSet->Put( SfxStringItem( SID_FILE_FILTEROPTIONS, rOptions ) );
     548             : 
     549           0 :     pMedium = new SfxMedium( rFileName, STREAM_STD_READ, pFilter, pSet );
     550           0 :     if ( pMedium->GetError() != ERRCODE_NONE )
     551           0 :         return ;
     552             : 
     553           0 :     if ( bWithInteraction )
     554           0 :         pMedium->UseInteractionHandler( true ); // to enable the filter options dialog
     555             : 
     556           0 :     pDocShell = new ScDocShell( SFX_CREATE_MODE_INTERNAL );
     557           0 :     aRef = pDocShell;
     558             : 
     559           0 :     ScDocument* pDoc = pDocShell->GetDocument();
     560           0 :     if( pDoc )
     561             :     {
     562           0 :         ScExtDocOptions*    pExtDocOpt = pDoc->GetExtDocOptions();
     563           0 :         if( !pExtDocOpt )
     564             :         {
     565           0 :             pExtDocOpt = new ScExtDocOptions;
     566           0 :             pDoc->SetExtDocOptions( pExtDocOpt );
     567             :         }
     568           0 :         pExtDocOpt->GetDocSettings().mnLinkCnt = nRekCnt;
     569             :     }
     570             : 
     571           0 :     pDocShell->DoLoad( pMedium );
     572             : 
     573           0 :     rtl::OUString aNew = GetOptions(*pMedium);         // Optionen werden beim Laden per Dialog gesetzt
     574           0 :     if (!aNew.isEmpty() && aNew != rOptions)
     575           0 :         rOptions = aNew;
     576             : }
     577             : 
     578           0 : ScDocumentLoader::~ScDocumentLoader()
     579             : {
     580           0 :     if ( aRef.Is() )
     581           0 :         aRef->DoClose();
     582           0 :     else if ( pMedium )
     583           0 :         delete pMedium;
     584           0 : }
     585             : 
     586           0 : void ScDocumentLoader::ReleaseDocRef()
     587             : {
     588           0 :     if ( aRef.Is() )
     589             :     {
     590             :         //  release reference without calling DoClose - caller must
     591             :         //  have another reference to the doc and call DoClose later
     592             : 
     593           0 :         pDocShell = NULL;
     594           0 :         pMedium = NULL;
     595           0 :         aRef.Clear();
     596             :     }
     597           0 : }
     598             : 
     599           0 : ScDocument* ScDocumentLoader::GetDocument()
     600             : {
     601           0 :     return pDocShell ? pDocShell->GetDocument() : 0;
     602             : }
     603             : 
     604           0 : bool ScDocumentLoader::IsError() const
     605             : {
     606           0 :     if ( pDocShell && pMedium )
     607           0 :         return pMedium->GetError() != ERRCODE_NONE;
     608             :     else
     609           0 :         return true;
     610             : }
     611             : 
     612           0 : rtl::OUString ScDocumentLoader::GetTitle() const
     613             : {
     614           0 :     if ( pDocShell )
     615           0 :         return pDocShell->GetTitle();
     616             :     else
     617           0 :         return EMPTY_STRING;
     618             : }
     619             : 
     620             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10