1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <xmloff/SchXMLSeriesHelper.hxx>
21 #include <com/sun/star/chart2/XChartDocument.hpp>
22 #include <com/sun/star/chart2/XChartTypeContainer.hpp>
23 #include <com/sun/star/chart2/XCoordinateSystemContainer.hpp>
24 #include <com/sun/star/chart2/XDataSeriesContainer.hpp>
25 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
28 #include <sal/log.hxx>
29 #include <comphelper/diagnose_ex.hxx>
31 using namespace ::com::sun::star
;
33 using ::com::sun::star::uno::Reference
;
34 using ::com::sun::star::uno::Sequence
;
36 ::std::vector
< Reference
< chart2::XDataSeries
> >
37 SchXMLSeriesHelper::getDataSeriesFromDiagram(
38 const Reference
< chart2::XDiagram
> & xDiagram
)
40 ::std::vector
< Reference
< chart2::XDataSeries
> > aResult
;
44 Reference
< chart2::XCoordinateSystemContainer
> xCooSysCnt(
45 xDiagram
, uno::UNO_QUERY_THROW
);
46 const Sequence
< Reference
< chart2::XCoordinateSystem
> > aCooSysSeq(
47 xCooSysCnt
->getCoordinateSystems());
48 for( const auto& rCooSys
: aCooSysSeq
)
50 Reference
< chart2::XChartTypeContainer
> xCTCnt( rCooSys
, uno::UNO_QUERY_THROW
);
51 const Sequence
< Reference
< chart2::XChartType
> > aChartTypeSeq( xCTCnt
->getChartTypes());
52 for( const auto& rChartType
: aChartTypeSeq
)
54 Reference
< chart2::XDataSeriesContainer
> xDSCnt( rChartType
, uno::UNO_QUERY_THROW
);
55 const Sequence
< Reference
< chart2::XDataSeries
> > aSeriesSeq( xDSCnt
->getDataSeries() );
56 aResult
.insert( aResult
.end(), aSeriesSeq
.begin(), aSeriesSeq
.end() );
60 catch( const uno::Exception
& )
62 DBG_UNHANDLED_EXCEPTION("xmloff.chart");
68 ::std::map
< Reference
< chart2::XDataSeries
>, sal_Int32
> SchXMLSeriesHelper::getDataSeriesIndexMapFromDiagram(
69 const Reference
< chart2::XDiagram
> & xDiagram
)
71 ::std::map
< Reference
< chart2::XDataSeries
>, sal_Int32
> aRet
;
75 ::std::vector
< Reference
< chart2::XDataSeries
> > aSeriesVector( SchXMLSeriesHelper::getDataSeriesFromDiagram( xDiagram
));
76 for( const Reference
< chart2::XDataSeries
>& xSeries
: aSeriesVector
)
80 if( aRet
.end() == aRet
.find(xSeries
) )
89 uno::Reference
< chart2::XChartType
> lcl_getChartTypeOfSeries(
90 const uno::Reference
< chart2::XDiagram
>& xDiagram
91 , const Reference
< chart2::XDataSeries
>& xSeries
)
96 //iterate through the model to find the given xSeries
97 //the found parent indicates the charttype
99 //iterate through all coordinate systems
100 uno::Reference
< chart2::XCoordinateSystemContainer
> xCooSysContainer( xDiagram
, uno::UNO_QUERY
);
101 if( !xCooSysContainer
.is())
104 const uno::Sequence
< uno::Reference
< chart2::XCoordinateSystem
> > aCooSysList( xCooSysContainer
->getCoordinateSystems() );
105 for( const auto& xCooSys
: aCooSysList
)
107 //iterate through all chart types in the current coordinate system
108 uno::Reference
< chart2::XChartTypeContainer
> xChartTypeContainer( xCooSys
, uno::UNO_QUERY
);
109 SAL_WARN_IF( !xChartTypeContainer
.is(), "xmloff.chart", "xChartTypeContainer is NULL");
110 if( !xChartTypeContainer
.is() )
112 const uno::Sequence
< uno::Reference
< chart2::XChartType
> > aChartTypeList( xChartTypeContainer
->getChartTypes() );
113 for( const auto& xChartType
: aChartTypeList
)
115 //iterate through all series in this chart type
116 uno::Reference
< chart2::XDataSeriesContainer
> xDataSeriesContainer( xChartType
, uno::UNO_QUERY
);
117 SAL_WARN_IF( !xDataSeriesContainer
.is(), "xmloff.chart", "xDataSeriesContainer is NULL");
118 if( !xDataSeriesContainer
.is() )
121 const uno::Sequence
< uno::Reference
< chart2::XDataSeries
> > aSeriesList( xDataSeriesContainer
->getDataSeries() );
122 if (std::find(aSeriesList
.begin(), aSeriesList
.end(), xSeries
) != aSeriesList
.end())
130 bool SchXMLSeriesHelper::isCandleStickSeries(
131 const Reference
< chart2::XDataSeries
>& xSeries
132 , const Reference
< frame::XModel
>& xChartModel
)
136 uno::Reference
< chart2::XChartDocument
> xNewDoc( xChartModel
, uno::UNO_QUERY
);
139 uno::Reference
< chart2::XDiagram
> xNewDiagram( xNewDoc
->getFirstDiagram() );
140 if( xNewDiagram
.is() )
142 uno::Reference
< chart2::XChartType
> xChartType( lcl_getChartTypeOfSeries(
143 xNewDiagram
, xSeries
) );
144 if( xChartType
.is() )
146 OUString
aServiceName( xChartType
->getChartType() );
147 if( aServiceName
== "com.sun.star.chart2.CandleStickChartType" )
156 uno::Reference
< beans::XPropertySet
> SchXMLSeriesHelper::createOldAPISeriesPropertySet(
157 const uno::Reference
< chart2::XDataSeries
>& xSeries
158 , const uno::Reference
< frame::XModel
>& xChartModel
)
160 uno::Reference
< beans::XPropertySet
> xRet
;
166 uno::Reference
< lang::XMultiServiceFactory
> xFactory( xChartModel
, uno::UNO_QUERY
);
169 xRet
.set( xFactory
->createInstance( "com.sun.star.comp.chart2.DataSeriesWrapper" ), uno::UNO_QUERY
);
170 Reference
< lang::XInitialization
> xInit( xRet
, uno::UNO_QUERY
);
173 xInit
->initialize( { uno::Any(xSeries
) });
177 catch( const uno::Exception
& )
179 TOOLS_INFO_EXCEPTION("xmloff.chart", "Exception caught SchXMLSeriesHelper::createOldAPISeriesPropertySet" );
187 uno::Reference
< beans::XPropertySet
> SchXMLSeriesHelper::createOldAPIDataPointPropertySet(
188 const uno::Reference
< chart2::XDataSeries
>& xSeries
189 , sal_Int32 nPointIndex
190 , const uno::Reference
< frame::XModel
>& xChartModel
)
192 uno::Reference
< beans::XPropertySet
> xRet
;
198 uno::Reference
< lang::XMultiServiceFactory
> xFactory( xChartModel
, uno::UNO_QUERY
);
201 xRet
.set( xFactory
->createInstance( "com.sun.star.comp.chart2.DataSeriesWrapper" ), uno::UNO_QUERY
);
202 Reference
< lang::XInitialization
> xInit( xRet
, uno::UNO_QUERY
);
205 xInit
->initialize({ uno::Any(xSeries
), uno::Any(nPointIndex
) });
209 catch( const uno::Exception
& )
211 TOOLS_INFO_EXCEPTION("xmloff.chart", "Exception caught SchXMLSeriesHelper::createOldAPIDataPointPropertySet" );
218 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */