/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sc.hxx" #include #include #include #include #include #include "rangeseq.hxx" #include "document.hxx" #include "dociter.hxx" #include "scmatrix.hxx" #include "cell.hxx" using namespace com::sun::star; //------------------------------------------------------------------------ bool lcl_HasErrors( ScDocument* pDoc, const ScRange& rRange ) { // no need to look at empty cells - just use ScCellIterator ScCellIterator aIter( pDoc, rRange ); ScBaseCell* pCell = aIter.GetFirst(); while (pCell) { if ( pCell->GetCellType() == CELLTYPE_FORMULA && static_cast(pCell)->GetErrCode() != 0 ) return true; pCell = aIter.GetNext(); } return false; // no error found } long lcl_DoubleToLong( double fVal ) { double fInt = (fVal >= 0.0) ? ::rtl::math::approxFloor( fVal ) : ::rtl::math::approxCeil( fVal ); if ( fInt >= LONG_MIN && fInt <= LONG_MAX ) return (long)fInt; else return 0; // out of range } sal_Bool ScRangeToSequence::FillLongArray( uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ) { SCTAB nTab = rRange.aStart.Tab(); SCCOL nStartCol = rRange.aStart.Col(); SCROW nStartRow = rRange.aStart.Row(); long nColCount = rRange.aEnd.Col() + 1 - rRange.aStart.Col(); long nRowCount = rRange.aEnd.Row() + 1 - rRange.aStart.Row(); uno::Sequence< uno::Sequence > aRowSeq( nRowCount ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (long nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( nColCount ); sal_Int32* pColAry = aColSeq.getArray(); for (long nCol = 0; nCol < nColCount; nCol++) pColAry[nCol] = lcl_DoubleToLong( pDoc->GetValue( ScAddress( (SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab ) ) ); pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return !lcl_HasErrors( pDoc, rRange ); } sal_Bool ScRangeToSequence::FillLongArray( uno::Any& rAny, const ScMatrix* pMatrix ) { if (!pMatrix) return sal_False; SCSIZE nColCount; SCSIZE nRowCount; pMatrix->GetDimensions( nColCount, nRowCount ); uno::Sequence< uno::Sequence > aRowSeq( static_cast(nRowCount) ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (SCSIZE nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( static_cast(nColCount) ); sal_Int32* pColAry = aColSeq.getArray(); for (SCSIZE nCol = 0; nCol < nColCount; nCol++) if ( pMatrix->IsString( nCol, nRow ) ) pColAry[nCol] = 0; else pColAry[nCol] = lcl_DoubleToLong( pMatrix->GetDouble( nCol, nRow ) ); pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return sal_True; } //------------------------------------------------------------------------ sal_Bool ScRangeToSequence::FillDoubleArray( uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ) { SCTAB nTab = rRange.aStart.Tab(); SCCOL nStartCol = rRange.aStart.Col(); SCROW nStartRow = rRange.aStart.Row(); long nColCount = rRange.aEnd.Col() + 1 - rRange.aStart.Col(); long nRowCount = rRange.aEnd.Row() + 1 - rRange.aStart.Row(); uno::Sequence< uno::Sequence > aRowSeq( nRowCount ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (long nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( nColCount ); double* pColAry = aColSeq.getArray(); for (long nCol = 0; nCol < nColCount; nCol++) pColAry[nCol] = pDoc->GetValue( ScAddress( (SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab ) ); pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return !lcl_HasErrors( pDoc, rRange ); } sal_Bool ScRangeToSequence::FillDoubleArray( uno::Any& rAny, const ScMatrix* pMatrix ) { if (!pMatrix) return sal_False; SCSIZE nColCount; SCSIZE nRowCount; pMatrix->GetDimensions( nColCount, nRowCount ); uno::Sequence< uno::Sequence > aRowSeq( static_cast(nRowCount) ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (SCSIZE nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( static_cast(nColCount) ); double* pColAry = aColSeq.getArray(); for (SCSIZE nCol = 0; nCol < nColCount; nCol++) if ( pMatrix->IsString( nCol, nRow ) ) pColAry[nCol] = 0.0; else pColAry[nCol] = pMatrix->GetDouble( nCol, nRow ); pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return sal_True; } //------------------------------------------------------------------------ sal_Bool ScRangeToSequence::FillStringArray( uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ) { SCTAB nTab = rRange.aStart.Tab(); SCCOL nStartCol = rRange.aStart.Col(); SCROW nStartRow = rRange.aStart.Row(); long nColCount = rRange.aEnd.Col() + 1 - rRange.aStart.Col(); long nRowCount = rRange.aEnd.Row() + 1 - rRange.aStart.Row(); bool bHasErrors = false; uno::Sequence< uno::Sequence > aRowSeq( nRowCount ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (long nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( nColCount ); rtl::OUString* pColAry = aColSeq.getArray(); for (long nCol = 0; nCol < nColCount; nCol++) { sal_uInt16 nErrCode = pDoc->GetStringForFormula( ScAddress((SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab), pColAry[nCol] ); if ( nErrCode != 0 ) bHasErrors = true; } pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return !bHasErrors; } sal_Bool ScRangeToSequence::FillStringArray( uno::Any& rAny, const ScMatrix* pMatrix, SvNumberFormatter* pFormatter ) { if (!pMatrix) return sal_False; SCSIZE nColCount; SCSIZE nRowCount; pMatrix->GetDimensions( nColCount, nRowCount ); uno::Sequence< uno::Sequence > aRowSeq( static_cast(nRowCount) ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (SCSIZE nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( static_cast(nColCount) ); rtl::OUString* pColAry = aColSeq.getArray(); for (SCSIZE nCol = 0; nCol < nColCount; nCol++) { String aStr; if ( pMatrix->IsString( nCol, nRow ) ) { if ( !pMatrix->IsEmpty( nCol, nRow ) ) aStr = pMatrix->GetString( nCol, nRow ); } else if ( pFormatter ) { double fVal = pMatrix->GetDouble( nCol, nRow ); Color* pColor; pFormatter->GetOutputString( fVal, 0, aStr, &pColor ); } pColAry[nCol] = rtl::OUString( aStr ); } pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return sal_True; } //------------------------------------------------------------------------ double lcl_GetValueFromCell( ScBaseCell& rCell ) { //! ScBaseCell member function? CellType eType = rCell.GetCellType(); if ( eType == CELLTYPE_VALUE ) return ((ScValueCell&)rCell).GetValue(); else if ( eType == CELLTYPE_FORMULA ) return ((ScFormulaCell&)rCell).GetValue(); // called only if result is value DBG_ERROR( "GetValueFromCell: wrong type" ); return 0; } sal_Bool ScRangeToSequence::FillMixedArray( uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange, sal_Bool bAllowNV ) { SCTAB nTab = rRange.aStart.Tab(); SCCOL nStartCol = rRange.aStart.Col(); SCROW nStartRow = rRange.aStart.Row(); long nColCount = rRange.aEnd.Col() + 1 - rRange.aStart.Col(); long nRowCount = rRange.aEnd.Row() + 1 - rRange.aStart.Row(); String aDocStr; sal_Bool bHasErrors = sal_False; uno::Sequence< uno::Sequence > aRowSeq( nRowCount ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (long nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( nColCount ); uno::Any* pColAry = aColSeq.getArray(); for (long nCol = 0; nCol < nColCount; nCol++) { uno::Any& rElement = pColAry[nCol]; ScAddress aPos( (SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab ); ScBaseCell* pCell = pDoc->GetCell( aPos ); if ( pCell ) { if ( pCell->GetCellType() == CELLTYPE_FORMULA && ((ScFormulaCell*)pCell)->GetErrCode() != 0 ) { // if NV is allowed, leave empty for errors bHasErrors = sal_True; } else if ( pCell->HasValueData() ) rElement <<= (double) lcl_GetValueFromCell( *pCell ); else rElement <<= rtl::OUString( pCell->GetStringData() ); } else rElement <<= rtl::OUString(); // empty: empty string } pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return bAllowNV || !bHasErrors; } sal_Bool ScRangeToSequence::FillMixedArray( uno::Any& rAny, const ScMatrix* pMatrix, bool bDataTypes ) { if (!pMatrix) return sal_False; SCSIZE nColCount; SCSIZE nRowCount; pMatrix->GetDimensions( nColCount, nRowCount ); uno::Sequence< uno::Sequence > aRowSeq( static_cast(nRowCount) ); uno::Sequence* pRowAry = aRowSeq.getArray(); for (SCSIZE nRow = 0; nRow < nRowCount; nRow++) { uno::Sequence aColSeq( static_cast(nColCount) ); uno::Any* pColAry = aColSeq.getArray(); for (SCSIZE nCol = 0; nCol < nColCount; nCol++) { if ( pMatrix->IsString( nCol, nRow ) ) { String aStr; if ( !pMatrix->IsEmpty( nCol, nRow ) ) aStr = pMatrix->GetString( nCol, nRow ); pColAry[nCol] <<= rtl::OUString( aStr ); } else { double fVal = pMatrix->GetDouble( nCol, nRow ); if (bDataTypes && pMatrix->IsBoolean( nCol, nRow )) pColAry[nCol] <<= (fVal ? true : false); else pColAry[nCol] <<= fVal; } } pRowAry[nRow] = aColSeq; } rAny <<= aRowSeq; return sal_True; } //------------------------------------------------------------------------ // static bool ScApiTypeConversion::ConvertAnyToDouble( double & o_fVal, com::sun::star::uno::TypeClass & o_eClass, const com::sun::star::uno::Any & rAny ) { bool bRet = false; o_eClass = rAny.getValueTypeClass(); switch (o_eClass) { //! extract integer values case uno::TypeClass_ENUM: case uno::TypeClass_BOOLEAN: case uno::TypeClass_CHAR: case uno::TypeClass_BYTE: case uno::TypeClass_SHORT: case uno::TypeClass_UNSIGNED_SHORT: case uno::TypeClass_LONG: case uno::TypeClass_UNSIGNED_LONG: case uno::TypeClass_FLOAT: case uno::TypeClass_DOUBLE: rAny >>= o_fVal; bRet = true; break; default: ; // nothing, avoid warning } if (!bRet) o_fVal = 0.0; return bRet; } //------------------------------------------------------------------------ // static ScMatrixRef ScSequenceToMatrix::CreateMixedMatrix( const com::sun::star::uno::Any & rAny ) { ScMatrixRef xMatrix; uno::Sequence< uno::Sequence< uno::Any > > aSequence; if ( rAny >>= aSequence ) { sal_Int32 nRowCount = aSequence.getLength(); const uno::Sequence* pRowArr = aSequence.getConstArray(); sal_Int32 nMaxColCount = 0; sal_Int32 nCol, nRow; for (nRow=0; nRow nMaxColCount ) nMaxColCount = nTmp; } if ( nMaxColCount && nRowCount ) { rtl::OUString aUStr; xMatrix = new ScMatrix( static_cast(nMaxColCount), static_cast(nRowCount) ); ScMatrix* pMatrix = xMatrix; SCSIZE nCols, nRows; pMatrix->GetDimensions( nCols, nRows); if (nCols != static_cast(nMaxColCount) || nRows != static_cast(nRowCount)) { DBG_ERRORFILE( "ScSequenceToMatrix::CreateMixedMatrix: matrix exceeded max size, returning NULL matrix"); return NULL; } for (nRow=0; nRowPutBoolean( (fVal ? true : false), static_cast(nCol), static_cast(nRow) ); else pMatrix->PutDouble( fVal, static_cast(nCol), static_cast(nRow) ); } else { // Try string, else use empty as last resort. //Reflection* pRefl = pColArr[nCol].getReflection(); //if ( pRefl->equals( *OUString_getReflection() ) ) if ( pColArr[nCol] >>= aUStr ) pMatrix->PutString( String( aUStr ), static_cast(nCol), static_cast(nRow) ); else pMatrix->PutEmpty( static_cast(nCol), static_cast(nRow) ); } } for (nCol=nColCount; nColPutEmpty( static_cast(nCol), static_cast(nRow) ); } } } } return xMatrix; } //------------------------------------------------------------------------ sal_Bool ScByteSequenceToString::GetString( String& rString, const uno::Any& rAny, sal_uInt16 nEncoding ) { uno::Sequence aSeq; if ( rAny >>= aSeq ) { rString = String( (const sal_Char*)aSeq.getConstArray(), (xub_StrLen)aSeq.getLength(), nEncoding ); rString.EraseTrailingChars( (sal_Unicode) 0 ); return sal_True; } return sal_False; } //------------------------------------------------------------------------