See tdf#74608 for motivation. Change-Id: I7f783161c190940b10d9acd971a008c17f4f7dbc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89158 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
632 lines
25 KiB
C++
632 lines
25 KiB
C++
/* -*- 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 <SchXMLImport.hxx>
|
|
#include "SchXMLChartContext.hxx"
|
|
#include "contexts.hxx"
|
|
#include "SchXMLTools.hxx"
|
|
#include <facreg.hxx>
|
|
|
|
#include <sal/log.hxx>
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <xmloff/nmspmap.hxx>
|
|
#include <xmloff/prstylei.hxx>
|
|
#include <xmloff/xmlnmspe.hxx>
|
|
#include <xmloff/xmltoken.hxx>
|
|
#include <xmloff/xmluconv.hxx>
|
|
#include <xmloff/xmlictxt.hxx>
|
|
#include <xmloff/xmlstyle.hxx>
|
|
#include <com/sun/star/chart/XChartDocument.hpp>
|
|
#include <com/sun/star/container/XChild.hpp>
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
#include <com/sun/star/chart2/data/XDataReceiver.hpp>
|
|
#include <com/sun/star/chart2/XChartDocument.hpp>
|
|
#include <com/sun/star/chart2/XCoordinateSystemContainer.hpp>
|
|
#include <com/sun/star/chart2/XChartTypeContainer.hpp>
|
|
#include <com/sun/star/chart2/XDataSeriesContainer.hpp>
|
|
|
|
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
|
|
|
|
#include <tools/diagnose_ex.h>
|
|
|
|
using namespace com::sun::star;
|
|
using namespace ::xmloff::token;
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
namespace
|
|
{
|
|
class lcl_MatchesChartType
|
|
{
|
|
public:
|
|
explicit lcl_MatchesChartType( const OUString & aChartTypeName ) :
|
|
m_aChartTypeName( aChartTypeName )
|
|
{}
|
|
|
|
bool operator () ( const Reference< chart2::XChartType > & xChartType ) const
|
|
{
|
|
return (xChartType.is() &&
|
|
xChartType->getChartType() == m_aChartTypeName );
|
|
}
|
|
|
|
private:
|
|
OUString const m_aChartTypeName;
|
|
};
|
|
} // anonymous namespace
|
|
|
|
// TokenMaps for distinguishing different
|
|
// tokens in different contexts
|
|
|
|
// element maps
|
|
|
|
// attribute maps
|
|
|
|
SchXMLImportHelper::SchXMLImportHelper() :
|
|
mpAutoStyles( nullptr )
|
|
{
|
|
}
|
|
|
|
SvXMLImportContext* SchXMLImportHelper::CreateChartContext(
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 /*nPrefix*/, const OUString& rLocalName,
|
|
const Reference< frame::XModel >& rChartModel,
|
|
const Reference< xml::sax::XAttributeList >& )
|
|
{
|
|
SvXMLImportContext* pContext = nullptr;
|
|
|
|
Reference< chart::XChartDocument > xDoc( rChartModel, uno::UNO_QUERY );
|
|
if( xDoc.is())
|
|
{
|
|
mxChartDoc = xDoc;
|
|
pContext = new SchXMLChartContext( *this, rImport, rLocalName );
|
|
}
|
|
else
|
|
{
|
|
SAL_WARN("xmloff.chart", "No valid XChartDocument given as XModel" );
|
|
}
|
|
|
|
return pContext;
|
|
}
|
|
|
|
void SchXMLImportHelper::FillAutoStyle(const OUString& rAutoStyleName, const uno::Reference<beans::XPropertySet>& rProp)
|
|
{
|
|
if (!rProp.is())
|
|
return;
|
|
|
|
const SvXMLStylesContext* pStylesCtxt = GetAutoStylesContext();
|
|
if (pStylesCtxt)
|
|
{
|
|
SvXMLStyleContext* pStyle = const_cast<SvXMLStyleContext*>(pStylesCtxt->FindStyleChildContext(SchXMLImportHelper::GetChartFamilyID(), rAutoStyleName));
|
|
|
|
if (XMLPropStyleContext* pPropStyle = dynamic_cast<XMLPropStyleContext*>(pStyle))
|
|
pPropStyle->FillPropertySet(rProp);
|
|
}
|
|
}
|
|
|
|
// get various token maps
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetDocElemTokenMap()
|
|
{
|
|
if( ! mpChartDocElemTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aDocElemTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_OFFICE, XML_AUTOMATIC_STYLES, XML_TOK_DOC_AUTOSTYLES },
|
|
{ XML_NAMESPACE_OFFICE, XML_STYLES, XML_TOK_DOC_STYLES },
|
|
{ XML_NAMESPACE_OFFICE, XML_META, XML_TOK_DOC_META },
|
|
{ XML_NAMESPACE_OFFICE, XML_BODY, XML_TOK_DOC_BODY },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpChartDocElemTokenMap = std::make_unique<SvXMLTokenMap>( aDocElemTokenMap );
|
|
} // if( ! mpChartDocElemTokenMap )
|
|
|
|
return *mpChartDocElemTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetTableElemTokenMap()
|
|
{
|
|
if( ! mpTableElemTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aTableElemTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_HEADER_COLUMNS, XML_TOK_TABLE_HEADER_COLS },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_COLUMNS, XML_TOK_TABLE_COLUMNS },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_COLUMN, XML_TOK_TABLE_COLUMN },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_HEADER_ROWS, XML_TOK_TABLE_HEADER_ROWS },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_ROWS, XML_TOK_TABLE_ROWS },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE_ROW, XML_TOK_TABLE_ROW },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpTableElemTokenMap = std::make_unique<SvXMLTokenMap>( aTableElemTokenMap );
|
|
} // if( ! mpTableElemTokenMap )
|
|
|
|
return *mpTableElemTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetChartElemTokenMap()
|
|
{
|
|
if( ! mpChartElemTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aChartElemTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_CHART, XML_PLOT_AREA, XML_TOK_CHART_PLOT_AREA },
|
|
{ XML_NAMESPACE_CHART, XML_TITLE, XML_TOK_CHART_TITLE },
|
|
{ XML_NAMESPACE_CHART, XML_SUBTITLE, XML_TOK_CHART_SUBTITLE },
|
|
{ XML_NAMESPACE_CHART, XML_LEGEND, XML_TOK_CHART_LEGEND },
|
|
{ XML_NAMESPACE_TABLE, XML_TABLE, XML_TOK_CHART_TABLE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpChartElemTokenMap = std::make_unique<SvXMLTokenMap>( aChartElemTokenMap );
|
|
} // if( ! mpChartElemTokenMap )
|
|
|
|
return *mpChartElemTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetPlotAreaElemTokenMap()
|
|
{
|
|
if( ! mpPlotAreaElemTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aPlotAreaElemTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_CHART_EXT, XML_COORDINATE_REGION, XML_TOK_PA_COORDINATE_REGION_EXT },
|
|
{ XML_NAMESPACE_CHART, XML_COORDINATE_REGION, XML_TOK_PA_COORDINATE_REGION },
|
|
{ XML_NAMESPACE_CHART, XML_AXIS, XML_TOK_PA_AXIS },
|
|
{ XML_NAMESPACE_CHART, XML_SERIES, XML_TOK_PA_SERIES },
|
|
{ XML_NAMESPACE_CHART, XML_WALL, XML_TOK_PA_WALL },
|
|
{ XML_NAMESPACE_CHART, XML_FLOOR, XML_TOK_PA_FLOOR },
|
|
{ XML_NAMESPACE_DR3D, XML_LIGHT, XML_TOK_PA_LIGHT_SOURCE },
|
|
{ XML_NAMESPACE_CHART, XML_STOCK_GAIN_MARKER, XML_TOK_PA_STOCK_GAIN },
|
|
{ XML_NAMESPACE_CHART, XML_STOCK_LOSS_MARKER, XML_TOK_PA_STOCK_LOSS },
|
|
{ XML_NAMESPACE_CHART, XML_STOCK_RANGE_LINE, XML_TOK_PA_STOCK_RANGE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpPlotAreaElemTokenMap = std::make_unique<SvXMLTokenMap>( aPlotAreaElemTokenMap );
|
|
} // if( ! mpPlotAreaElemTokenMap )
|
|
|
|
return *mpPlotAreaElemTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetSeriesElemTokenMap()
|
|
{
|
|
if( ! mpSeriesElemTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aSeriesElemTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_CHART, XML_DATA_POINT, XML_TOK_SERIES_DATA_POINT },
|
|
{ XML_NAMESPACE_CHART, XML_DOMAIN, XML_TOK_SERIES_DOMAIN },
|
|
{ XML_NAMESPACE_CHART, XML_MEAN_VALUE, XML_TOK_SERIES_MEAN_VALUE_LINE },
|
|
{ XML_NAMESPACE_CHART, XML_REGRESSION_CURVE, XML_TOK_SERIES_REGRESSION_CURVE },
|
|
{ XML_NAMESPACE_CHART, XML_ERROR_INDICATOR, XML_TOK_SERIES_ERROR_INDICATOR },
|
|
{ XML_NAMESPACE_LO_EXT, XML_PROPERTY_MAPPING, XML_TOK_SERIES_PROPERTY_MAPPING },
|
|
{ XML_NAMESPACE_CHART, XML_DATA_LABEL, XML_TOK_SERIES_DATA_LABEL },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpSeriesElemTokenMap = std::make_unique<SvXMLTokenMap>( aSeriesElemTokenMap );
|
|
} // if( ! mpSeriesElemTokenMap )
|
|
|
|
return *mpSeriesElemTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetChartAttrTokenMap()
|
|
{
|
|
if( ! mpChartAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aChartAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_CHART_HREF },
|
|
{ XML_NAMESPACE_CHART, XML_CLASS, XML_TOK_CHART_CLASS },
|
|
{ XML_NAMESPACE_SVG, XML_WIDTH, XML_TOK_CHART_WIDTH },
|
|
{ XML_NAMESPACE_SVG, XML_HEIGHT, XML_TOK_CHART_HEIGHT },
|
|
{ XML_NAMESPACE_CHART, XML_STYLE_NAME, XML_TOK_CHART_STYLE_NAME },
|
|
{ XML_NAMESPACE_CHART, XML_COLUMN_MAPPING, XML_TOK_CHART_COL_MAPPING },
|
|
{ XML_NAMESPACE_CHART, XML_ROW_MAPPING, XML_TOK_CHART_ROW_MAPPING },
|
|
{ XML_NAMESPACE_LO_EXT, XML_DATA_PILOT_SOURCE, XML_TOK_CHART_DATA_PILOT_SOURCE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpChartAttrTokenMap = std::make_unique<SvXMLTokenMap>( aChartAttrTokenMap );
|
|
} // if( ! mpChartAttrTokenMap )
|
|
|
|
return *mpChartAttrTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetPlotAreaAttrTokenMap()
|
|
{
|
|
if( ! mpPlotAreaAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aPlotAreaAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_SVG, XML_X, XML_TOK_PA_X },
|
|
{ XML_NAMESPACE_SVG, XML_Y, XML_TOK_PA_Y },
|
|
{ XML_NAMESPACE_SVG, XML_WIDTH, XML_TOK_PA_WIDTH },
|
|
{ XML_NAMESPACE_SVG, XML_HEIGHT, XML_TOK_PA_HEIGHT },
|
|
{ XML_NAMESPACE_CHART, XML_STYLE_NAME, XML_TOK_PA_STYLE_NAME },
|
|
{ XML_NAMESPACE_TABLE, XML_CELL_RANGE_ADDRESS, XML_TOK_PA_CHART_ADDRESS },
|
|
{ XML_NAMESPACE_CHART, XML_DATA_SOURCE_HAS_LABELS, XML_TOK_PA_DS_HAS_LABELS },
|
|
{ XML_NAMESPACE_DR3D, XML_TRANSFORM, XML_TOK_PA_TRANSFORM },
|
|
{ XML_NAMESPACE_DR3D, XML_VRP, XML_TOK_PA_VRP },
|
|
{ XML_NAMESPACE_DR3D, XML_VPN, XML_TOK_PA_VPN },
|
|
{ XML_NAMESPACE_DR3D, XML_VUP, XML_TOK_PA_VUP },
|
|
{ XML_NAMESPACE_DR3D, XML_PROJECTION, XML_TOK_PA_PROJECTION },
|
|
{ XML_NAMESPACE_DR3D, XML_DISTANCE, XML_TOK_PA_DISTANCE },
|
|
{ XML_NAMESPACE_DR3D, XML_FOCAL_LENGTH, XML_TOK_PA_FOCAL_LENGTH },
|
|
{ XML_NAMESPACE_DR3D, XML_SHADOW_SLANT, XML_TOK_PA_SHADOW_SLANT },
|
|
{ XML_NAMESPACE_DR3D, XML_SHADE_MODE, XML_TOK_PA_SHADE_MODE },
|
|
{ XML_NAMESPACE_DR3D, XML_AMBIENT_COLOR, XML_TOK_PA_AMBIENT_COLOR },
|
|
{ XML_NAMESPACE_DR3D, XML_LIGHTING_MODE, XML_TOK_PA_LIGHTING_MODE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpPlotAreaAttrTokenMap = std::make_unique<SvXMLTokenMap>( aPlotAreaAttrTokenMap );
|
|
} // if( ! mpPlotAreaAttrTokenMap )
|
|
|
|
return *mpPlotAreaAttrTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetCellAttrTokenMap()
|
|
{
|
|
if( ! mpCellAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aCellAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_OFFICE, XML_VALUE_TYPE, XML_TOK_CELL_VAL_TYPE },
|
|
{ XML_NAMESPACE_OFFICE, XML_VALUE, XML_TOK_CELL_VALUE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpCellAttrTokenMap = std::make_unique<SvXMLTokenMap>( aCellAttrTokenMap );
|
|
} // if( ! mpCellAttrTokenMap )
|
|
|
|
return *mpCellAttrTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetSeriesAttrTokenMap()
|
|
{
|
|
if( ! mpSeriesAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aSeriesAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_CHART, XML_VALUES_CELL_RANGE_ADDRESS, XML_TOK_SERIES_CELL_RANGE },
|
|
{ XML_NAMESPACE_CHART, XML_LABEL_CELL_ADDRESS, XML_TOK_SERIES_LABEL_ADDRESS },
|
|
{ XML_NAMESPACE_LO_EXT, XML_LABEL_STRING, XML_TOK_SERIES_LABEL_STRING },
|
|
{ XML_NAMESPACE_CHART, XML_ATTACHED_AXIS, XML_TOK_SERIES_ATTACHED_AXIS },
|
|
{ XML_NAMESPACE_CHART, XML_STYLE_NAME, XML_TOK_SERIES_STYLE_NAME },
|
|
{ XML_NAMESPACE_CHART, XML_CLASS, XML_TOK_SERIES_CHART_CLASS },
|
|
{ XML_NAMESPACE_LO_EXT, XML_HIDE_LEGEND, XML_TOK_SERIES_HIDE_LEGEND },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpSeriesAttrTokenMap = std::make_unique<SvXMLTokenMap>( aSeriesAttrTokenMap );
|
|
} // if( ! mpSeriesAttrTokenMap )
|
|
|
|
return *mpSeriesAttrTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetPropMappingAttrTokenMap()
|
|
{
|
|
if( !mpPropMappingAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aPropMappingAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_LO_EXT, XML_PROPERTY, XML_TOK_PROPERTY_MAPPING_PROPERTY },
|
|
{ XML_NAMESPACE_LO_EXT, XML_CELL_RANGE_ADDRESS, XML_TOK_PROPERTY_MAPPING_RANGE },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpPropMappingAttrTokenMap = std::make_unique<SvXMLTokenMap>( aPropMappingAttrTokenMap );
|
|
}
|
|
|
|
return *mpPropMappingAttrTokenMap;
|
|
}
|
|
|
|
const SvXMLTokenMap& SchXMLImportHelper::GetRegEquationAttrTokenMap()
|
|
{
|
|
if( ! mpRegEquationAttrTokenMap )
|
|
{
|
|
static const SvXMLTokenMapEntry aRegressionEquationAttrTokenMap[] =
|
|
{
|
|
{ XML_NAMESPACE_CHART, XML_STYLE_NAME, XML_TOK_REGEQ_STYLE_NAME },
|
|
{ XML_NAMESPACE_CHART, XML_DISPLAY_EQUATION, XML_TOK_REGEQ_DISPLAY_EQUATION },
|
|
{ XML_NAMESPACE_CHART, XML_DISPLAY_R_SQUARE, XML_TOK_REGEQ_DISPLAY_R_SQUARE },
|
|
{ XML_NAMESPACE_SVG, XML_X, XML_TOK_REGEQ_POS_X },
|
|
{ XML_NAMESPACE_SVG, XML_Y, XML_TOK_REGEQ_POS_Y },
|
|
XML_TOKEN_MAP_END
|
|
};
|
|
|
|
mpRegEquationAttrTokenMap = std::make_unique<SvXMLTokenMap>( aRegressionEquationAttrTokenMap );
|
|
} // if( ! mpRegEquationAttrTokenMap )
|
|
|
|
return *mpRegEquationAttrTokenMap;
|
|
}
|
|
|
|
//static
|
|
void SchXMLImportHelper::DeleteDataSeries(
|
|
const Reference< chart2::XDataSeries > & xSeries,
|
|
const Reference< chart2::XChartDocument > & xDoc )
|
|
{
|
|
if( !xDoc.is() )
|
|
return;
|
|
try
|
|
{
|
|
Reference< chart2::XCoordinateSystemContainer > xCooSysCnt(
|
|
xDoc->getFirstDiagram(), uno::UNO_QUERY_THROW );
|
|
const Sequence< Reference< chart2::XCoordinateSystem > > aCooSysSeq(
|
|
xCooSysCnt->getCoordinateSystems());
|
|
|
|
for( const auto& rCooSys : aCooSysSeq )
|
|
{
|
|
Reference< chart2::XChartTypeContainer > xCTCnt( rCooSys, uno::UNO_QUERY_THROW );
|
|
const Sequence< Reference< chart2::XChartType > > aChartTypes( xCTCnt->getChartTypes());
|
|
|
|
for( const auto& rChartType : aChartTypes )
|
|
{
|
|
Reference< chart2::XDataSeriesContainer > xSeriesCnt( rChartType, uno::UNO_QUERY_THROW );
|
|
Sequence< Reference< chart2::XDataSeries > > aSeriesSeq( xSeriesCnt->getDataSeries());
|
|
|
|
if (std::find(aSeriesSeq.begin(), aSeriesSeq.end(), xSeries) != aSeriesSeq.end())
|
|
{
|
|
xSeriesCnt->removeDataSeries(xSeries);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch( const uno::Exception &)
|
|
{
|
|
DBG_UNHANDLED_EXCEPTION("xmloff.chart");
|
|
}
|
|
}
|
|
|
|
// static
|
|
Reference< chart2::XDataSeries > SchXMLImportHelper::GetNewDataSeries(
|
|
const Reference< chart2::XChartDocument > & xDoc,
|
|
sal_Int32 nCoordinateSystemIndex,
|
|
const OUString & rChartTypeName,
|
|
bool bPushLastChartType /* = false */ )
|
|
{
|
|
Reference< chart2::XDataSeries > xResult;
|
|
if(!xDoc.is())
|
|
return xResult;
|
|
|
|
try
|
|
{
|
|
Reference< chart2::XCoordinateSystemContainer > xCooSysCnt(
|
|
xDoc->getFirstDiagram(), uno::UNO_QUERY_THROW );
|
|
Sequence< Reference< chart2::XCoordinateSystem > > aCooSysSeq(
|
|
xCooSysCnt->getCoordinateSystems());
|
|
Reference< uno::XComponentContext > xContext(
|
|
comphelper::getProcessComponentContext() );
|
|
|
|
if( nCoordinateSystemIndex < aCooSysSeq.getLength())
|
|
{
|
|
Reference< chart2::XChartType > xCurrentType;
|
|
{
|
|
Reference< chart2::XChartTypeContainer > xCTCnt( aCooSysSeq[ nCoordinateSystemIndex ], uno::UNO_QUERY_THROW );
|
|
Sequence< Reference< chart2::XChartType > > aChartTypes( xCTCnt->getChartTypes());
|
|
// find matching chart type group
|
|
const Reference< chart2::XChartType > * pBegin = aChartTypes.getConstArray();
|
|
const Reference< chart2::XChartType > * pEnd = pBegin + aChartTypes.getLength();
|
|
const Reference< chart2::XChartType > * pIt =
|
|
::std::find_if( pBegin, pEnd, lcl_MatchesChartType( rChartTypeName ));
|
|
if( pIt != pEnd )
|
|
xCurrentType.set( *pIt );
|
|
// if chart type is set at series and differs from current one,
|
|
// create a new chart type
|
|
if( !xCurrentType.is())
|
|
{
|
|
xCurrentType.set(
|
|
xContext->getServiceManager()->createInstanceWithContext( rChartTypeName, xContext ),
|
|
uno::UNO_QUERY );
|
|
if( xCurrentType.is())
|
|
{
|
|
if( bPushLastChartType && aChartTypes.hasElements())
|
|
{
|
|
sal_Int32 nIndex( aChartTypes.getLength() - 1 );
|
|
aChartTypes.realloc( aChartTypes.getLength() + 1 );
|
|
aChartTypes[ nIndex + 1 ] = aChartTypes[ nIndex ];
|
|
aChartTypes[ nIndex ] = xCurrentType;
|
|
xCTCnt->setChartTypes( aChartTypes );
|
|
}
|
|
else
|
|
xCTCnt->addChartType( xCurrentType );
|
|
}
|
|
}
|
|
}
|
|
|
|
if( xCurrentType.is())
|
|
{
|
|
Reference< chart2::XDataSeriesContainer > xSeriesCnt( xCurrentType, uno::UNO_QUERY_THROW );
|
|
|
|
if( xContext.is() )
|
|
{
|
|
xResult.set(
|
|
xContext->getServiceManager()->createInstanceWithContext(
|
|
"com.sun.star.chart2.DataSeries",
|
|
xContext ), uno::UNO_QUERY_THROW );
|
|
}
|
|
if( xResult.is() )
|
|
xSeriesCnt->addDataSeries( xResult );
|
|
}
|
|
}
|
|
}
|
|
catch( const uno::Exception & )
|
|
{
|
|
DBG_UNHANDLED_EXCEPTION("xmloff.chart");
|
|
}
|
|
return xResult;
|
|
}
|
|
|
|
SchXMLImport::SchXMLImport(
|
|
const Reference< uno::XComponentContext >& xContext,
|
|
OUString const & implementationName, SvXMLImportFlags nImportFlags ) :
|
|
SvXMLImport( xContext, implementationName, nImportFlags ),
|
|
maImportHelper(new SchXMLImportHelper)
|
|
{
|
|
GetNamespaceMap().Add( GetXMLToken(XML_NP_XLINK), GetXMLToken(XML_N_XLINK), XML_NAMESPACE_XLINK );
|
|
GetNamespaceMap().Add( GetXMLToken(XML_NP_CHART_EXT), GetXMLToken(XML_N_CHART_EXT), XML_NAMESPACE_CHART_EXT);
|
|
}
|
|
|
|
SchXMLImport::~SchXMLImport() throw ()
|
|
{
|
|
uno::Reference< chart2::XChartDocument > xChartDoc( GetModel(), uno::UNO_QUERY );
|
|
if( xChartDoc.is() && xChartDoc->hasControllersLocked() )
|
|
xChartDoc->unlockControllers();
|
|
}
|
|
|
|
// create the main context (subcontexts are created
|
|
// by the one created here)
|
|
SvXMLImportContext *SchXMLImport::CreateFastContext( sal_Int32 nElement,
|
|
const uno::Reference< xml::sax::XFastAttributeList >& /*xAttrList*/ )
|
|
{
|
|
SvXMLImportContext* pContext = nullptr;
|
|
|
|
switch (nElement)
|
|
{
|
|
case XML_ELEMENT( OFFICE, XML_DOCUMENT ):
|
|
case XML_ELEMENT( OFFICE, XML_DOCUMENT_META ):
|
|
{
|
|
uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
|
|
GetModel(), uno::UNO_QUERY);
|
|
// mst@: right now, this seems to be not supported, so it is untested
|
|
if (xDPS.is()) {
|
|
pContext = (nElement == XML_ELEMENT(OFFICE, XML_DOCUMENT_META))
|
|
? new SvXMLMetaDocumentContext(*this, xDPS->getDocumentProperties())
|
|
// flat OpenDocument file format
|
|
: new SchXMLFlatDocContext_Impl(*maImportHelper, *this, nElement,
|
|
xDPS->getDocumentProperties());
|
|
}
|
|
}
|
|
break;
|
|
// accept <office:document>
|
|
case XML_ELEMENT(OFFICE, XML_DOCUMENT_STYLES):
|
|
case XML_ELEMENT(OFFICE, XML_DOCUMENT_CONTENT):
|
|
pContext = new SchXMLDocContext(*maImportHelper, *this, nElement);
|
|
break;
|
|
}
|
|
return pContext;
|
|
}
|
|
|
|
SvXMLImportContext* SchXMLImport::CreateStylesContext()
|
|
{
|
|
//#i103287# make sure that the version information is set before importing all the properties (especially stroke-opacity!)
|
|
SchXMLTools::setBuildIDAtImportInfo( GetModel(), getImportInfo() );
|
|
|
|
SvXMLStylesContext* pStylesCtxt = new SvXMLStylesContext( *this );
|
|
|
|
// set context at base class, so that all auto-style classes are imported
|
|
SetAutoStyles( pStylesCtxt );
|
|
maImportHelper->SetAutoStylesContext( pStylesCtxt );
|
|
|
|
return pStylesCtxt;
|
|
}
|
|
|
|
void SAL_CALL SchXMLImport::setTargetDocument(const uno::Reference<lang::XComponent>& xDoc)
|
|
{
|
|
uno::Reference<chart2::XChartDocument> xOldDoc(GetModel(), uno::UNO_QUERY);
|
|
if (xOldDoc.is() && xOldDoc->hasControllersLocked())
|
|
xOldDoc->unlockControllers();
|
|
|
|
SvXMLImport::setTargetDocument(xDoc);
|
|
|
|
uno::Reference<chart2::XChartDocument> xChartDoc(GetModel(), uno::UNO_QUERY);
|
|
|
|
if (!xChartDoc.is())
|
|
return;
|
|
try
|
|
{
|
|
// prevent rebuild of view during load (necessary especially if loaded not
|
|
// via load api, which is the case for example if binary files are loaded)
|
|
xChartDoc->lockControllers();
|
|
|
|
uno::Reference<container::XChild> xChild(xChartDoc, uno::UNO_QUERY);
|
|
uno::Reference<chart2::data::XDataReceiver> xDataReceiver(xChartDoc, uno::UNO_QUERY);
|
|
if (xChild.is() && xDataReceiver.is())
|
|
{
|
|
Reference<lang::XMultiServiceFactory> xFact(xChild->getParent(), uno::UNO_QUERY);
|
|
if (xFact.is())
|
|
{
|
|
//if the parent has a number formatter we will use the numberformatter of the parent
|
|
Reference<util::XNumberFormatsSupplier> xNumberFormatsSupplier(xFact, uno::UNO_QUERY);
|
|
xDataReceiver->attachNumberFormatsSupplier(xNumberFormatsSupplier);
|
|
}
|
|
}
|
|
}
|
|
catch (const uno::Exception &)
|
|
{
|
|
TOOLS_INFO_EXCEPTION("xmloff.chart", "SchXMLChartContext::StartElement(): Exception caught");
|
|
}
|
|
}
|
|
|
|
// first version: everything comes from one storage
|
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
|
|
com_sun_star_comp_Chart_XMLOasisImporter_get_implementation(uno::XComponentContext* pCtx,
|
|
uno::Sequence<uno::Any> const& /*rSeq*/)
|
|
{
|
|
return cppu::acquire(new SchXMLImport(pCtx, "SchXMLImport", SvXMLImportFlags::ALL));
|
|
}
|
|
|
|
// multiple storage version: one for content / styles / meta
|
|
|
|
Sequence< OUString > SchXMLImport_Styles_getSupportedServiceNames() throw()
|
|
{
|
|
return Sequence< OUString > { "com.sun.star.comp.Chart.XMLOasisStylesImporter" };
|
|
}
|
|
|
|
OUString SchXMLImport_Styles_getImplementationName() throw()
|
|
{
|
|
return "SchXMLImport.Styles";
|
|
}
|
|
|
|
Reference< uno::XInterface > SchXMLImport_Styles_createInstance(const Reference< lang::XMultiServiceFactory > & rSMgr)
|
|
{
|
|
return static_cast<cppu::OWeakObject*>(new SchXMLImport( comphelper::getComponentContext(rSMgr), SchXMLImport_Styles_getImplementationName(), SvXMLImportFlags::STYLES ));
|
|
}
|
|
|
|
Sequence< OUString > SchXMLImport_Content_getSupportedServiceNames() throw()
|
|
{
|
|
return Sequence< OUString > { "com.sun.star.comp.Chart.XMLOasisContentImporter" };
|
|
}
|
|
|
|
OUString SchXMLImport_Content_getImplementationName() throw()
|
|
{
|
|
return "SchXMLImport.Content";
|
|
}
|
|
|
|
Reference< uno::XInterface > SchXMLImport_Content_createInstance(const Reference< lang::XMultiServiceFactory > & rSMgr)
|
|
{
|
|
return static_cast<cppu::OWeakObject*>(new SchXMLImport( comphelper::getComponentContext(rSMgr), SchXMLImport_Content_getImplementationName(), SvXMLImportFlags::CONTENT | SvXMLImportFlags::AUTOSTYLES | SvXMLImportFlags::FONTDECLS ));
|
|
}
|
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
|
|
com_sun_star_comp_Chart_XMLOasisMetaImporter_get_implementation(
|
|
uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
|
|
{
|
|
return cppu::acquire(new SchXMLImport(pCtx, "SchXMLImport.Meta", SvXMLImportFlags::META));
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|