From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sc/source/filter/xml/XMLConsolidationContext.cxx | 123 +++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 sc/source/filter/xml/XMLConsolidationContext.cxx (limited to 'sc/source/filter/xml/XMLConsolidationContext.cxx') diff --git a/sc/source/filter/xml/XMLConsolidationContext.cxx b/sc/source/filter/xml/XMLConsolidationContext.cxx new file mode 100644 index 000000000..610a3e275 --- /dev/null +++ b/sc/source/filter/xml/XMLConsolidationContext.cxx @@ -0,0 +1,123 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#include "XMLConsolidationContext.hxx" +#include +#include +#include "xmlimprt.hxx" +#include "XMLConverter.hxx" +#include +#include + +using namespace ::com::sun::star; +using namespace xmloff::token; + +ScXMLConsolidationContext::ScXMLConsolidationContext( + ScXMLImport& rImport, + const rtl::Reference& rAttrList ) : + ScXMLImportContext( rImport ), + eFunction( SUBTOTAL_FUNC_NONE ), + bLinkToSource( false ), + bTargetAddr(false) +{ + rImport.LockSolarMutex(); + if ( !rAttrList.is() ) + return; + + for (auto &aIter : *rAttrList) + { + switch (aIter.getToken()) + { + case XML_ELEMENT( TABLE, XML_FUNCTION ): + eFunction = ScXMLConverter::GetSubTotalFuncFromString( aIter.toString() ); + break; + case XML_ELEMENT( TABLE, XML_SOURCE_CELL_RANGE_ADDRESSES ): + sSourceList = aIter.toString(); + break; + case XML_ELEMENT( TABLE, XML_TARGET_CELL_ADDRESS ): + { + sal_Int32 nOffset(0); + ScDocument* pDoc = GetScImport().GetDocument(); + assert(pDoc); + bTargetAddr = ScRangeStringConverter::GetAddressFromString( + aTargetAddr, aIter.toString(), *pDoc, ::formula::FormulaGrammar::CONV_OOO, nOffset ); + } + break; + case XML_ELEMENT( TABLE, XML_USE_LABEL ): + sUseLabel = aIter.toString(); + break; + case XML_ELEMENT( TABLE, XML_LINK_TO_SOURCE_DATA ): + bLinkToSource = IsXMLToken( aIter, XML_TRUE ); + break; + } + } +} + +ScXMLConsolidationContext::~ScXMLConsolidationContext() +{ + GetScImport().UnlockSolarMutex(); +} + +void SAL_CALL ScXMLConsolidationContext::endFastElement( sal_Int32 /*nElement*/ ) +{ + if (!bTargetAddr) + return; + + std::unique_ptr pConsParam(new ScConsolidateParam); + pConsParam->nCol = aTargetAddr.Col(); + pConsParam->nRow = aTargetAddr.Row(); + pConsParam->nTab = aTargetAddr.Tab(); + pConsParam->eFunction = eFunction; + + sal_uInt16 nCount = static_cast(std::min( ScRangeStringConverter::GetTokenCount( sSourceList ), sal_Int32(0xFFFF) )); + if( nCount ) + { + std::unique_ptr ppAreas(new ScArea[ nCount ]); + sal_Int32 nOffset = 0; + sal_uInt16 nIndex; + ScDocument* pDoc = GetScImport().GetDocument(); + assert(pDoc); + for( nIndex = 0; nIndex < nCount; ++nIndex ) + { + if ( !ScRangeStringConverter::GetAreaFromString( + ppAreas[ nIndex ], sSourceList, *pDoc, ::formula::FormulaGrammar::CONV_OOO, nOffset ) ) + { + //! handle error + } + } + + pConsParam->SetAreas( std::move(ppAreas), nCount ); + } + + pConsParam->bByCol = pConsParam->bByRow = false; + if( IsXMLToken(sUseLabel, XML_COLUMN ) ) + pConsParam->bByCol = true; + else if( IsXMLToken( sUseLabel, XML_ROW ) ) + pConsParam->bByRow = true; + else if( IsXMLToken( sUseLabel, XML_BOTH ) ) + pConsParam->bByCol = pConsParam->bByRow = true; + + pConsParam->bReferenceData = bLinkToSource; + + ScDocument* pDoc = GetScImport().GetDocument(); + if( pDoc ) + pDoc->SetConsolidateDlgData( std::move(pConsParam) ); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3