bump product version to 5.0.4.1
[LibreOffice.git] / reportdesign / source / core / api / Groups.cxx
bloba50e5e6df7ca7f5cd26b59610c995fa6f9364d60
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #include "Groups.hxx"
20 #include "Group.hxx"
21 #include <tools/debug.hxx>
22 #include "core_resource.hxx"
23 #include "core_resource.hrc"
24 #include <boost/mem_fn.hpp>
25 #include <algorithm>
27 namespace reportdesign
30 using namespace com::sun::star;
32 OGroups::OGroups(const uno::Reference< report::XReportDefinition >& _xParent,const uno::Reference< uno::XComponentContext >& context)
33 :GroupsBase(m_aMutex)
34 ,m_aContainerListeners(m_aMutex)
35 ,m_xContext(context)
36 ,m_xParent(_xParent)
40 // TODO: VirtualFunctionFinder: This is virtual function!
42 OGroups::~OGroups()
46 void SAL_CALL OGroups::dispose() throw(uno::RuntimeException, std::exception)
48 cppu::WeakComponentImplHelperBase::dispose();
51 // TODO: VirtualFunctionFinder: This is virtual function!
53 void SAL_CALL OGroups::disposing()
55 ::std::for_each(m_aGroups.begin(),m_aGroups.end(),::boost::mem_fn(&com::sun::star::report::XGroup::dispose));
56 m_aGroups.clear();
57 lang::EventObject aDisposeEvent( static_cast< ::cppu::OWeakObject* >( this ) );
58 m_aContainerListeners.disposeAndClear( aDisposeEvent );
59 m_xContext.clear();
62 // XGroups
63 uno::Reference< report::XReportDefinition > SAL_CALL OGroups::getReportDefinition() throw (uno::RuntimeException, std::exception)
65 return m_xParent;
68 uno::Reference< report::XGroup > SAL_CALL OGroups::createGroup( ) throw (uno::RuntimeException, std::exception)
70 return new OGroup(this,m_xContext);
73 // XIndexContainer
74 void SAL_CALL OGroups::insertByIndex( ::sal_Int32 Index, const uno::Any& aElement ) throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
77 ::osl::MutexGuard aGuard(m_aMutex);
78 bool bAdd = (Index == static_cast<sal_Int32>(m_aGroups.size()));
79 if ( !bAdd )
80 checkIndex(Index);
81 uno::Reference< report::XGroup > xGroup(aElement,uno::UNO_QUERY);
82 if ( !xGroup.is() )
83 throw lang::IllegalArgumentException(RPT_RESSTRING(RID_STR_ARGUMENT_IS_NULL,m_xContext->getServiceManager()),*this,2);
85 if ( bAdd )
86 m_aGroups.push_back(xGroup);
87 else
89 TGroups::iterator aPos = m_aGroups.begin();
90 ::std::advance(aPos,Index);
91 m_aGroups.insert(aPos, xGroup);
94 // notify our container listeners
95 container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), aElement, uno::Any());
96 m_aContainerListeners.notifyEach(&container::XContainerListener::elementInserted,aEvent);
100 void SAL_CALL OGroups::removeByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
102 uno::Reference< report::XGroup > xGroup;
104 ::osl::MutexGuard aGuard(m_aMutex);
105 checkIndex(Index);
106 TGroups::iterator aPos = m_aGroups.begin();
107 ::std::advance(aPos,Index);
108 xGroup = *aPos;
109 m_aGroups.erase(aPos);
111 container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), uno::makeAny(xGroup), uno::Any());
112 m_aContainerListeners.notifyEach(&container::XContainerListener::elementRemoved,aEvent);
115 // XIndexReplace
116 void SAL_CALL OGroups::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
118 uno::Any aOldElement;
120 ::osl::MutexGuard aGuard(m_aMutex);
121 checkIndex(Index);
122 uno::Reference< report::XGroup > xGroup(Element,uno::UNO_QUERY);
123 if ( !xGroup.is() )
124 throw lang::IllegalArgumentException(RPT_RESSTRING(RID_STR_ARGUMENT_IS_NULL,m_xContext->getServiceManager()),*this,2);
125 TGroups::iterator aPos = m_aGroups.begin();
126 ::std::advance(aPos,Index);
127 aOldElement <<= *aPos;
128 *aPos = xGroup;
131 container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), Element, aOldElement);
132 m_aContainerListeners.notifyEach(&container::XContainerListener::elementReplaced,aEvent);
135 // XIndexAccess
136 ::sal_Int32 SAL_CALL OGroups::getCount( ) throw (uno::RuntimeException, std::exception)
138 ::osl::MutexGuard aGuard(m_aMutex);
139 return m_aGroups.size();
142 uno::Any SAL_CALL OGroups::getByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
144 ::osl::MutexGuard aGuard(m_aMutex);
145 checkIndex(Index);
146 TGroups::iterator aPos = m_aGroups.begin();
147 ::std::advance(aPos,Index);
148 return uno::makeAny(*aPos);
151 // XElementAccess
152 uno::Type SAL_CALL OGroups::getElementType( ) throw (uno::RuntimeException, std::exception)
154 return cppu::UnoType<report::XGroup>::get();
157 sal_Bool SAL_CALL OGroups::hasElements( ) throw (uno::RuntimeException, std::exception)
159 ::osl::MutexGuard aGuard(m_aMutex);
160 return !m_aGroups.empty();
163 // XChild
164 uno::Reference< uno::XInterface > SAL_CALL OGroups::getParent( ) throw (uno::RuntimeException, std::exception)
166 return m_xParent;
169 void SAL_CALL OGroups::setParent( const uno::Reference< uno::XInterface >& /*Parent*/ ) throw (lang::NoSupportException, uno::RuntimeException, std::exception)
171 throw lang::NoSupportException();
174 // XContainer
175 void SAL_CALL OGroups::addContainerListener( const uno::Reference< container::XContainerListener >& xListener ) throw (uno::RuntimeException, std::exception)
177 m_aContainerListeners.addInterface(xListener);
180 void SAL_CALL OGroups::removeContainerListener( const uno::Reference< container::XContainerListener >& xListener ) throw (uno::RuntimeException, std::exception)
182 m_aContainerListeners.removeInterface(xListener);
185 void OGroups::checkIndex(sal_Int32 _nIndex)
187 if ( _nIndex < 0 || static_cast<sal_Int32>(m_aGroups.size()) <= _nIndex )
188 throw lang::IndexOutOfBoundsException();
194 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */