LCOV - code coverage report
Current view: top level - sc/source/core/tool - doubleref.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 170 241 70.5 %
Date: 2014-11-03 Functions: 21 35 60.0 %
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 "doubleref.hxx"
      21             : #include "formulacell.hxx"
      22             : #include "global.hxx"
      23             : #include "document.hxx"
      24             : #include "queryparam.hxx"
      25             : #include "queryentry.hxx"
      26             : #include "globstr.hrc"
      27             : #include "scmatrix.hxx"
      28             : 
      29             : #include <svl/sharedstringpool.hxx>
      30             : 
      31             : #include <memory>
      32             : #include <vector>
      33             : 
      34             : using ::std::unique_ptr;
      35             : using ::std::vector;
      36             : 
      37             : namespace {
      38             : 
      39         860 : void lcl_uppercase(OUString& rStr)
      40             : {
      41         860 :     rStr = ScGlobal::pCharClass->uppercase(rStr.trim());
      42         860 : }
      43             : 
      44          40 : bool lcl_createStarQuery(
      45             :     svl::SharedStringPool& rPool, ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
      46             : {
      47             :     // A valid StarQuery must be at least 4 columns wide. To be precise it
      48             :     // should be exactly 4 columns ...
      49             :     // Additionally, if this wasn't checked, a formula pointing to a valid 1-3
      50             :     // column Excel style query range immediately left to itself would result
      51             :     // in a circular reference when the field name or operator or value (first
      52             :     // to third query range column) is obtained (#i58354#). Furthermore, if the
      53             :     // range wasn't sufficiently specified data changes wouldn't flag formula
      54             :     // cells for recalculation.
      55             : 
      56          40 :     if (pQueryRef->getColSize() < 4)
      57          16 :         return false;
      58             : 
      59             :     bool bValid;
      60          24 :     OUString aCellStr;
      61          24 :     SCSIZE nIndex = 0;
      62          24 :     SCROW nRow = 0;
      63          24 :     SCROW nRows = pDBRef->getRowSize();
      64          24 :     SCSIZE nNewEntries = static_cast<SCSIZE>(nRows);
      65          24 :     pParam->Resize(nNewEntries);
      66             : 
      67          48 :     do
      68             :     {
      69          48 :         ScQueryEntry& rEntry = pParam->GetEntry(nIndex);
      70             : 
      71          48 :         bValid = false;
      72             : 
      73          48 :         if (nIndex > 0)
      74             :         {
      75             :             // For all entries after the first one, check the and/or connector in the first column.
      76          24 :             aCellStr = pQueryRef->getString(0, nRow);
      77          24 :             lcl_uppercase(aCellStr);
      78          24 :             if ( aCellStr.equals(ScGlobal::GetRscString(STR_TABLE_UND)) )
      79             :             {
      80           0 :                 rEntry.eConnect = SC_AND;
      81           0 :                 bValid = true;
      82             :             }
      83          24 :             else if ( aCellStr.equals(ScGlobal::GetRscString(STR_TABLE_ODER)) )
      84             :             {
      85           0 :                 rEntry.eConnect = SC_OR;
      86           0 :                 bValid = true;
      87             :             }
      88             :         }
      89             : 
      90          48 :         if ((nIndex < 1) || bValid)
      91             :         {
      92             :             // field name in the 2nd column.
      93          24 :             aCellStr = pQueryRef->getString(1, nRow);
      94          24 :             SCCOL nField = pDBRef->findFieldColumn(aCellStr); // TODO: must be case insensitive comparison.
      95          24 :             if (ValidCol(nField))
      96             :             {
      97          24 :                 rEntry.nField = nField;
      98          24 :                 bValid = true;
      99             :             }
     100             :             else
     101           0 :                 bValid = false;
     102             :         }
     103             : 
     104          48 :         if (bValid)
     105             :         {
     106             :             // equality, non-equality operator in the 3rd column.
     107          24 :             aCellStr = pQueryRef->getString(2, nRow);
     108          24 :             lcl_uppercase(aCellStr);
     109          24 :             const sal_Unicode* p = aCellStr.getStr();
     110          24 :             if (p[0] == '<')
     111             :             {
     112           0 :                 if (p[1] == '>')
     113           0 :                     rEntry.eOp = SC_NOT_EQUAL;
     114           0 :                 else if (p[1] == '=')
     115           0 :                     rEntry.eOp = SC_LESS_EQUAL;
     116             :                 else
     117           0 :                     rEntry.eOp = SC_LESS;
     118             :             }
     119          24 :             else if (p[0] == '>')
     120             :             {
     121           0 :                 if (p[1] == '=')
     122           0 :                     rEntry.eOp = SC_GREATER_EQUAL;
     123             :                 else
     124           0 :                     rEntry.eOp = SC_GREATER;
     125             :             }
     126          24 :             else if (p[0] == '=')
     127           0 :                 rEntry.eOp = SC_EQUAL;
     128             : 
     129             :         }
     130             : 
     131          48 :         if (bValid)
     132             :         {
     133             :             // Finally, the right-hand-side value in the 4th column.
     134          48 :             rEntry.GetQueryItem().maString =
     135          48 :                 rPool.intern(pQueryRef->getString(3, nRow));
     136          24 :             rEntry.bDoQuery = true;
     137             :         }
     138          48 :         nIndex++;
     139          48 :         nRow++;
     140             :     }
     141          24 :     while (bValid && (nRow < nRows) /* && (nIndex < MAXQUERY) */ );
     142          24 :     return bValid;
     143             : }
     144             : 
     145          40 : bool lcl_createExcelQuery(
     146             :     svl::SharedStringPool& rPool, ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
     147             : {
     148          40 :     bool bValid = true;
     149          40 :     SCCOL nCols = pQueryRef->getColSize();
     150          40 :     SCROW nRows = pQueryRef->getRowSize();
     151          40 :     vector<SCCOL> aFields(nCols);
     152          40 :     SCCOL nCol = 0;
     153         248 :     while (bValid && (nCol < nCols))
     154             :     {
     155         168 :         OUString aQueryStr = pQueryRef->getString(nCol, 0);
     156         168 :         SCCOL nField = pDBRef->findFieldColumn(aQueryStr);
     157         168 :         if (ValidCol(nField))
     158         168 :             aFields[nCol] = nField;
     159             :         else
     160           0 :             bValid = false;
     161         168 :         ++nCol;
     162         168 :     }
     163             : 
     164          40 :     if (bValid)
     165             :     {
     166             :         // Count the number of visible cells (excluding the header row).  Each
     167             :         // visible cell corresponds with a single query.
     168          40 :         SCSIZE nVisible = pQueryRef->getVisibleDataCellCount();
     169          40 :         if ( nVisible > SCSIZE_MAX / sizeof(void*) )
     170             :         {
     171             :             OSL_FAIL("too many filter criteria");
     172           0 :             nVisible = 0;
     173             :         }
     174             : 
     175          40 :         SCSIZE nNewEntries = nVisible;
     176          40 :         pParam->Resize( nNewEntries );
     177             : 
     178          40 :         SCSIZE nIndex = 0;
     179          40 :         SCROW nRow = 1;
     180          40 :         OUString aCellStr;
     181         134 :         while (nRow < nRows)
     182             :         {
     183          54 :             nCol = 0;
     184         346 :             while (nCol < nCols)
     185             :             {
     186         238 :                 aCellStr = pQueryRef->getString(nCol, nRow);
     187         238 :                 aCellStr = ScGlobal::pCharClass->uppercase( aCellStr );
     188         238 :                 if (!aCellStr.isEmpty())
     189             :                 {
     190          64 :                     if (nIndex < nNewEntries)
     191             :                     {
     192          64 :                         pParam->GetEntry(nIndex).nField = aFields[nCol];
     193          64 :                         pParam->FillInExcelSyntax(rPool, aCellStr, nIndex);
     194          64 :                         nIndex++;
     195          64 :                         if (nIndex < nNewEntries)
     196          64 :                             pParam->GetEntry(nIndex).eConnect = SC_AND;
     197             :                     }
     198             :                     else
     199           0 :                         bValid = false;
     200             :                 }
     201         238 :                 nCol++;
     202             :             }
     203          54 :             nRow++;
     204          54 :             if (nIndex < nNewEntries)
     205          54 :                 pParam->GetEntry(nIndex).eConnect = SC_OR;
     206          40 :         }
     207             :     }
     208          40 :     return bValid;
     209             : }
     210             : 
     211          40 : bool lcl_fillQueryEntries(
     212             :     svl::SharedStringPool& rPool, ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
     213             : {
     214          40 :     SCSIZE nCount = pParam->GetEntryCount();
     215         360 :     for (SCSIZE i = 0; i < nCount; ++i)
     216         320 :         pParam->GetEntry(i).Clear();
     217             : 
     218             :     // Standard QueryTabelle
     219          40 :     bool bValid = lcl_createStarQuery(rPool, pParam, pDBRef, pQueryRef);
     220             :     // Excel QueryTabelle
     221          40 :     if (!bValid)
     222          40 :         bValid = lcl_createExcelQuery(rPool, pParam, pDBRef, pQueryRef);
     223             : 
     224          40 :     nCount = pParam->GetEntryCount();
     225          40 :     if (bValid)
     226             :     {
     227             :         //  bQueryByString muss gesetzt sein
     228         412 :         for (SCSIZE i = 0; i < nCount; ++i)
     229         372 :             pParam->GetEntry(i).GetQueryItem().meType = ScQueryEntry::ByString;
     230             :     }
     231             :     else
     232             :     {
     233             :         //  nix
     234           0 :         for (SCSIZE i = 0; i < nCount; ++i)
     235           0 :             pParam->GetEntry(i).Clear();
     236             :     }
     237          40 :     return bValid;
     238             : }
     239             : 
     240             : }
     241             : 
     242          80 : ScDBRangeBase::ScDBRangeBase(ScDocument* pDoc, RefType eType) :
     243          80 :     mpDoc(pDoc), meType(eType)
     244             : {
     245          80 : }
     246             : 
     247          80 : ScDBRangeBase::~ScDBRangeBase()
     248             : {
     249          80 : }
     250             : 
     251          40 : bool ScDBRangeBase::fillQueryEntries(ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef) const
     252             : {
     253          40 :     if (!pDBRef)
     254           0 :         return false;
     255             : 
     256          40 :     return lcl_fillQueryEntries(getDoc()->GetSharedStringPool(), pParam, pDBRef, this);
     257             : }
     258             : 
     259          40 : void ScDBRangeBase::fillQueryOptions(ScQueryParamBase* pParam)
     260             : {
     261          40 :     pParam->bHasHeader = true;
     262          40 :     pParam->bByRow = true;
     263          40 :     pParam->bInplace = true;
     264          40 :     pParam->bCaseSens = false;
     265          40 :     pParam->bRegExp = false;
     266          40 :     pParam->bDuplicate = true;
     267          40 : }
     268             : 
     269          80 : ScDBInternalRange::ScDBInternalRange(ScDocument* pDoc, const ScRange& rRange) :
     270          80 :     ScDBRangeBase(pDoc, INTERNAL), maRange(rRange)
     271             : {
     272          80 : }
     273             : 
     274         160 : ScDBInternalRange::~ScDBInternalRange()
     275             : {
     276         160 : }
     277             : 
     278         120 : SCCOL ScDBInternalRange::getColSize() const
     279             : {
     280         120 :     return maRange.aEnd.Col() - maRange.aStart.Col() + 1;
     281             : }
     282             : 
     283         104 : SCROW ScDBInternalRange::getRowSize() const
     284             : {
     285         104 :     return maRange.aEnd.Row() - maRange.aStart.Row() + 1;
     286             : }
     287             : 
     288          40 : SCSIZE ScDBInternalRange::getVisibleDataCellCount() const
     289             : {
     290          40 :     SCCOL nCols = getColSize();
     291          40 :     SCROW nRows = getRowSize();
     292          40 :     if (nRows <= 1)
     293           0 :         return 0;
     294             : 
     295          40 :     return (nRows-1)*nCols;
     296             : }
     297             : 
     298         502 : OUString ScDBInternalRange::getString(SCCOL nCol, SCROW nRow) const
     299             : {
     300         502 :     OUString aStr;
     301         502 :     const ScAddress& s = maRange.aStart;
     302             :     // #i109200# this is used in formula calculation, use GetInputString, not GetString
     303             :     // (consistent with ScDBInternalRange::getCellString)
     304             :     // GetStringForFormula is not used here, to allow querying for date values.
     305         502 :     getDoc()->GetInputString(s.Col() + nCol, s.Row() + nRow, maRange.aStart.Tab(), aStr);
     306         502 :     return aStr;
     307             : }
     308             : 
     309          40 : SCCOL ScDBInternalRange::getFirstFieldColumn() const
     310             : {
     311          40 :     return getRange().aStart.Col();
     312             : }
     313             : 
     314           8 : SCCOL ScDBInternalRange::findFieldColumn(SCCOL nIndex) const
     315             : {
     316           8 :     const ScRange& rRange = getRange();
     317           8 :     const ScAddress& s = rRange.aStart;
     318             : 
     319           8 :     SCCOL nDBCol1 = s.Col();
     320             : 
     321             :     // Don't handle out-of-bound condition here.  We'll do that later.
     322           8 :     return nIndex + nDBCol1 - 1;
     323             : }
     324             : 
     325         214 : SCCOL ScDBInternalRange::findFieldColumn(const OUString& rStr, sal_uInt16* pErr) const
     326             : {
     327         214 :     const ScAddress& s = maRange.aStart;
     328         214 :     const ScAddress& e = maRange.aEnd;
     329         214 :     OUString aUpper = rStr;
     330         214 :     lcl_uppercase(aUpper);
     331             : 
     332         214 :     SCCOL nDBCol1 = s.Col();
     333         214 :     SCROW nDBRow1 = s.Row();
     334         214 :     SCTAB nDBTab1 = s.Tab();
     335         214 :     SCCOL nDBCol2 = e.Col();
     336             : 
     337         214 :     SCCOL   nField = nDBCol1;
     338         214 :     bool bFound = false;
     339             : 
     340         428 :     OUString aCellStr;
     341         214 :     ScAddress aLook( nDBCol1, nDBRow1, nDBTab1 );
     342        1026 :     while (!bFound && (aLook.Col() <= nDBCol2))
     343             :     {
     344         598 :         sal_uInt16 nErr = getDoc()->GetStringForFormula( aLook, aCellStr );
     345         598 :         if (pErr)
     346          94 :             *pErr = nErr;
     347         598 :         lcl_uppercase(aCellStr);
     348         598 :         bFound = ScGlobal::GetpTransliteration()->isEqual(aCellStr, aUpper);
     349         598 :         if (!bFound)
     350         384 :             aLook.IncCol();
     351             :     }
     352         214 :     nField = aLook.Col();
     353             : 
     354         428 :     return bFound ? nField : -1;
     355             : }
     356             : 
     357          40 : ScDBQueryParamBase* ScDBInternalRange::createQueryParam(const ScDBRangeBase* pQueryRef) const
     358             : {
     359          40 :     unique_ptr<ScDBQueryParamInternal> pParam(new ScDBQueryParamInternal);
     360             : 
     361             :     // Set the database range first.
     362          40 :     const ScAddress& s = maRange.aStart;
     363          40 :     const ScAddress& e = maRange.aEnd;
     364          40 :     pParam->nCol1 = s.Col();
     365          40 :     pParam->nRow1 = s.Row();
     366          40 :     pParam->nCol2 = e.Col();
     367          40 :     pParam->nRow2 = e.Row();
     368          40 :     pParam->nTab  = s.Tab();
     369             : 
     370          40 :     fillQueryOptions(pParam.get());
     371             : 
     372             :     // Now construct the query entries from the query range.
     373          40 :     if (!pQueryRef->fillQueryEntries(pParam.get(), this))
     374           0 :         return NULL;
     375             : 
     376          40 :     return pParam.release();
     377             : }
     378             : 
     379           0 : bool ScDBInternalRange::isRangeEqual(const ScRange& rRange) const
     380             : {
     381           0 :     return maRange == rRange;
     382             : }
     383             : 
     384           0 : ScDBExternalRange::ScDBExternalRange(ScDocument* pDoc, const ScMatrixRef& pMat) :
     385           0 :     ScDBRangeBase(pDoc, EXTERNAL), mpMatrix(pMat)
     386             : {
     387             :     SCSIZE nC, nR;
     388           0 :     mpMatrix->GetDimensions(nC, nR);
     389           0 :     mnCols = static_cast<SCCOL>(nC);
     390           0 :     mnRows = static_cast<SCROW>(nR);
     391           0 : }
     392             : 
     393           0 : ScDBExternalRange::~ScDBExternalRange()
     394             : {
     395           0 : }
     396             : 
     397           0 : SCCOL ScDBExternalRange::getColSize() const
     398             : {
     399           0 :     return mnCols;
     400             : }
     401             : 
     402           0 : SCROW ScDBExternalRange::getRowSize() const
     403             : {
     404           0 :     return mnRows;
     405             : }
     406             : 
     407           0 : SCSIZE ScDBExternalRange::getVisibleDataCellCount() const
     408             : {
     409           0 :     SCCOL nCols = getColSize();
     410           0 :     SCROW nRows = getRowSize();
     411           0 :     if (nRows <= 1)
     412           0 :         return 0;
     413             : 
     414           0 :     return (nRows-1)*nCols;
     415             : }
     416             : 
     417           0 : OUString ScDBExternalRange::getString(SCCOL nCol, SCROW nRow) const
     418             : {
     419           0 :     if (nCol >= mnCols || nRow >= mnRows)
     420           0 :         return OUString();
     421             : 
     422           0 :     return mpMatrix->GetString(nCol, nRow).getString();
     423             : }
     424             : 
     425           0 : SCCOL ScDBExternalRange::getFirstFieldColumn() const
     426             : {
     427           0 :     return 0;
     428             : }
     429             : 
     430           0 : SCCOL ScDBExternalRange::findFieldColumn(SCCOL nIndex) const
     431             : {
     432           0 :     return nIndex - 1;
     433             : }
     434             : 
     435           0 : SCCOL ScDBExternalRange::findFieldColumn(const OUString& rStr, sal_uInt16* pErr) const
     436             : {
     437           0 :     if (pErr)
     438           0 :         pErr = 0;
     439             : 
     440           0 :     OUString aUpper = rStr;
     441           0 :     lcl_uppercase(aUpper);
     442           0 :     for (SCCOL i = 0; i < mnCols; ++i)
     443             :     {
     444           0 :         OUString aUpperVal = mpMatrix->GetString(i, 0).getString();
     445           0 :         lcl_uppercase(aUpperVal);
     446           0 :         if (aUpper.equals(aUpperVal))
     447           0 :             return i;
     448           0 :     }
     449           0 :     return -1;
     450             : }
     451             : 
     452           0 : ScDBQueryParamBase* ScDBExternalRange::createQueryParam(const ScDBRangeBase* pQueryRef) const
     453             : {
     454           0 :     unique_ptr<ScDBQueryParamMatrix> pParam(new ScDBQueryParamMatrix);
     455           0 :     pParam->mpMatrix = mpMatrix;
     456           0 :     fillQueryOptions(pParam.get());
     457             : 
     458             :     // Now construct the query entries from the query range.
     459           0 :     if (!pQueryRef->fillQueryEntries(pParam.get(), this))
     460           0 :         return NULL;
     461             : 
     462           0 :     return pParam.release();
     463             : }
     464             : 
     465           0 : bool ScDBExternalRange::isRangeEqual(const ScRange& /*rRange*/) const
     466             : {
     467           0 :     return false;
     468         228 : }
     469             : 
     470             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10