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 <comphelper/propagg.hxx>
21 #include <comphelper/property.hxx>
22 #include <comphelper/sequence.hxx>
23 #include <cppuhelper/queryinterface.hxx>
24 #include <osl/diagnose.h>
25 #include <sal/log.hxx>
26 #include <com/sun/star/beans/PropertyAttribute.hpp>
31 #include <unordered_set>
39 using namespace ::com::sun::star::uno
;
40 using namespace ::com::sun::star::lang
;
41 using namespace ::com::sun::star::beans
;
43 using namespace internal
;
48 const Property
* lcl_findPropertyByName( const std::vector
< Property
>& _rProps
, const OUString
& _rName
)
50 Property
aNameProp(_rName
, 0, Type(), 0);
51 auto pResult
= std::lower_bound(_rProps
.begin(), _rProps
.end(), aNameProp
, PropertyCompareByName());
52 if ( pResult
== _rProps
.end() || pResult
->Name
!= _rName
)
59 OPropertyArrayAggregationHelper::OPropertyArrayAggregationHelper(
60 const Sequence
< Property
>& _rProperties
, const Sequence
< Property
>& _rAggProperties
,
61 IPropertyInfoService
* _pInfoService
, sal_Int32 _nFirstAggregateId
)
63 // if properties are present both at the delegatee and the aggregate, then the former are supposed to win
64 // merge and sort properties by name, delete duplicates (stable sort ensures delegator properties win)
65 m_aProperties
.insert( m_aProperties
.end(), _rProperties
.begin(), _rProperties
.end() );
66 m_aProperties
.insert( m_aProperties
.end(), _rAggProperties
.begin(), _rAggProperties
.end() );
67 std::stable_sort( m_aProperties
.begin(), m_aProperties
.end(), PropertyCompareByName() );
68 m_aProperties
.erase( std::unique(m_aProperties
.begin(), m_aProperties
.end(),
69 []( const css::beans::Property
& x
, const css::beans::Property
& y
) -> bool { return x
.Name
== y
.Name
; } ),
70 m_aProperties
.end() );
71 m_aProperties
.shrink_to_fit();
73 // fill aDelegatorProps with names from _rProperties for a fast existence check
74 // different kinds of properties are processed differently
75 std::unordered_set
< OUString
> aDelegatorProps
;
76 aDelegatorProps
.reserve( _rProperties
.getLength() );
77 for( auto &delegateProp
: _rProperties
)
79 const auto inserted
= aDelegatorProps
.insert( delegateProp
.Name
);
80 OSL_ENSURE( inserted
.second
,
81 "OPropertyArrayAggregationHelper::OPropertyArrayAggregationHelper: duplicate delegatee property!" );
84 std::unordered_set
< sal_Int32
> existingHandles
;
85 existingHandles
.reserve( m_aProperties
.size() );
86 sal_Int32 nAggregateHandle
= _nFirstAggregateId
;
87 for ( sal_Int32 nMPLoop
= 0; nMPLoop
< static_cast< sal_Int32
>( m_aProperties
.size() ); ++nMPLoop
)
89 auto &prop
= m_aProperties
[ nMPLoop
];
90 if ( aDelegatorProps
.find( prop
.Name
) != aDelegatorProps
.end() )
92 m_aPropertyAccessors
[ prop
.Handle
] = OPropertyAccessor( -1, nMPLoop
, false );
93 existingHandles
.insert( prop
.Handle
);
97 // determine the handle for the property which we will expose to the outside world
98 sal_Int32 nHandle
= -1;
99 // ask the info service first
101 nHandle
= _pInfoService
->getPreferredPropertyId( prop
.Name
);
103 if ( ( -1 == nHandle
) || ( existingHandles
.find( nHandle
) != existingHandles
.end() ) )
105 // 1. no handle from the info service -> default
106 // 2. conflicts -> use another one (which we don't check anymore, assuming _nFirstAggregateId was large enough)
107 nHandle
= nAggregateHandle
++;
111 existingHandles
.insert( nHandle
);
114 // remember the accessor for this property
115 m_aPropertyAccessors
[ nHandle
] = OPropertyAccessor( prop
.Handle
, nMPLoop
, true );
116 prop
.Handle
= nHandle
;
122 OPropertyArrayAggregationHelper::PropertyOrigin
OPropertyArrayAggregationHelper::classifyProperty( const OUString
& _rName
)
124 PropertyOrigin eOrigin
= PropertyOrigin::Unknown
;
126 const Property
* pPropertyDescriptor
= lcl_findPropertyByName( m_aProperties
, _rName
);
127 if ( pPropertyDescriptor
)
129 // look up the handle for this name
130 ConstPropertyAccessorMapIterator aPos
= m_aPropertyAccessors
.find( pPropertyDescriptor
->Handle
);
131 OSL_ENSURE( m_aPropertyAccessors
.end() != aPos
, "OPropertyArrayAggregationHelper::classifyProperty: should have this handle in my map!" );
132 if ( m_aPropertyAccessors
.end() != aPos
)
134 eOrigin
= aPos
->second
.bAggregate
? PropertyOrigin::Aggregate
: PropertyOrigin::Delegator
;
141 Property
OPropertyArrayAggregationHelper::getPropertyByName( const OUString
& _rPropertyName
)
143 const Property
* pProperty
= findPropertyByName( _rPropertyName
);
146 throw UnknownPropertyException();
152 sal_Bool
OPropertyArrayAggregationHelper::hasPropertyByName(const OUString
& _rPropertyName
)
154 return nullptr != findPropertyByName( _rPropertyName
);
158 const Property
* OPropertyArrayAggregationHelper::findPropertyByName(const OUString
& _rName
) const
160 return lcl_findPropertyByName( m_aProperties
, _rName
);
164 sal_Int32
OPropertyArrayAggregationHelper::getHandleByName(const OUString
& _rPropertyName
)
166 const Property
* pProperty
= findPropertyByName( _rPropertyName
);
167 return pProperty
? pProperty
->Handle
: -1;
171 sal_Bool
OPropertyArrayAggregationHelper::fillPropertyMembersByHandle(
172 OUString
* _pPropName
, sal_Int16
* _pAttributes
, sal_Int32 _nHandle
)
174 ConstPropertyAccessorMapIterator i
= m_aPropertyAccessors
.find(_nHandle
);
175 bool bRet
= i
!= m_aPropertyAccessors
.end();
178 const css::beans::Property
& rProperty
= m_aProperties
[(*i
).second
.nPos
];
180 *_pPropName
= rProperty
.Name
;
182 *_pAttributes
= rProperty
.Attributes
;
188 bool OPropertyArrayAggregationHelper::getPropertyByHandle( sal_Int32 _nHandle
, Property
& _rProperty
) const
190 ConstPropertyAccessorMapIterator pos
= m_aPropertyAccessors
.find(_nHandle
);
191 if ( pos
!= m_aPropertyAccessors
.end() )
193 _rProperty
= m_aProperties
[ pos
->second
.nPos
];
200 bool OPropertyArrayAggregationHelper::fillAggregatePropertyInfoByHandle(
201 OUString
* _pPropName
, sal_Int32
* _pOriginalHandle
, sal_Int32 _nHandle
) const
203 ConstPropertyAccessorMapIterator i
= m_aPropertyAccessors
.find(_nHandle
);
204 bool bRet
= i
!= m_aPropertyAccessors
.end() && (*i
).second
.bAggregate
;
207 if (_pOriginalHandle
)
208 *_pOriginalHandle
= (*i
).second
.nOriginalHandle
;
211 OSL_ENSURE((*i
).second
.nPos
< static_cast<sal_Int32
>(m_aProperties
.size()),"Invalid index for sequence!");
212 const css::beans::Property
& rProperty
= m_aProperties
[(*i
).second
.nPos
];
213 *_pPropName
= rProperty
.Name
;
220 css::uno::Sequence
< css::beans::Property
> OPropertyArrayAggregationHelper::getProperties()
222 return comphelper::containerToSequence(m_aProperties
);
226 sal_Int32
OPropertyArrayAggregationHelper::fillHandles(
227 sal_Int32
* _pHandles
, const css::uno::Sequence
< OUString
>& _rPropNames
)
229 sal_Int32 nHitCount
= 0;
230 const OUString
* pReqProps
= _rPropNames
.getConstArray();
231 sal_Int32 nReqLen
= _rPropNames
.getLength();
234 for( sal_Int32 i
= 0; i
< nReqLen
; ++i
)
236 aNameProp
.Name
= pReqProps
[i
];
237 auto findIter
= std::lower_bound(m_aProperties
.begin(), m_aProperties
.end(), aNameProp
, PropertyCompareByName());
238 if ( findIter
!= m_aProperties
.end() && findIter
->Name
== pReqProps
[i
] )
240 _pHandles
[i
] = findIter
->Handle
;
249 class PropertyForwarder
252 OPropertySetAggregationHelper
& m_rAggregationHelper
;
253 std::set
< sal_Int32
> m_aProperties
;
254 sal_Int32 m_nCurrentlyForwarding
;
257 explicit PropertyForwarder( OPropertySetAggregationHelper
& _rAggregationHelper
);
259 /** declares that the forwarder should be responsible for the given property
262 the public handle (<em>not</em> the original handle!) of the property
264 void takeResponsibilityFor( sal_Int32 _nHandle
);
266 /** checks whether the forwarder is responsible for the given property
268 bool isResponsibleFor( sal_Int32 _nHandle
);
270 /// actually forwards a property value to the aggregate
272 /// @throws Exception
273 void doForward( sal_Int32 _nHandle
, const Any
& _rValue
);
275 sal_Int32
getCurrentlyForwardedProperty( ) const { return m_nCurrentlyForwarding
; }
279 PropertyForwarder::PropertyForwarder( OPropertySetAggregationHelper
& _rAggregationHelper
)
280 :m_rAggregationHelper( _rAggregationHelper
)
281 ,m_nCurrentlyForwarding( -1 )
286 void PropertyForwarder::takeResponsibilityFor( sal_Int32 _nHandle
)
288 m_aProperties
.insert( _nHandle
);
292 bool PropertyForwarder::isResponsibleFor( sal_Int32 _nHandle
)
294 return m_aProperties
.find( _nHandle
) != m_aProperties
.end();
298 void PropertyForwarder::doForward( sal_Int32 _nHandle
, const Any
& _rValue
)
300 OSL_ENSURE( m_rAggregationHelper
.m_xAggregateSet
.is(), "PropertyForwarder::doForward: no property set!" );
301 if ( m_rAggregationHelper
.m_xAggregateSet
.is() )
303 m_rAggregationHelper
.forwardingPropertyValue( _nHandle
);
305 OSL_ENSURE( m_nCurrentlyForwarding
== -1, "PropertyForwarder::doForward: reentrance?" );
306 m_nCurrentlyForwarding
= _nHandle
;
310 m_rAggregationHelper
.m_xAggregateSet
->setPropertyValue( m_rAggregationHelper
.getPropertyName( _nHandle
), _rValue
);
311 // TODO: cache the property name? (it's a O(log n) search)
313 catch( const Exception
& )
315 m_rAggregationHelper
.forwardedPropertyValue( _nHandle
);
319 m_nCurrentlyForwarding
= -1;
321 m_rAggregationHelper
.forwardedPropertyValue( _nHandle
);
326 OPropertySetAggregationHelper::OPropertySetAggregationHelper( ::cppu::OBroadcastHelper
& rBHlp
)
327 :OPropertyStateHelper( rBHlp
)
328 ,m_bListening( false )
330 m_pForwarder
.reset( new PropertyForwarder( *this ) );
334 OPropertySetAggregationHelper::~OPropertySetAggregationHelper()
339 css::uno::Any SAL_CALL
OPropertySetAggregationHelper::queryInterface(const css::uno::Type
& _rType
)
341 css::uno::Any aReturn
= OPropertyStateHelper::queryInterface(_rType
);
343 if ( !aReturn
.hasValue() )
344 aReturn
= cppu::queryInterface(_rType
345 ,static_cast< css::beans::XPropertiesChangeListener
*>(this)
346 ,static_cast< css::beans::XVetoableChangeListener
*>(this)
347 ,static_cast< css::lang::XEventListener
*>(static_cast< css::beans::XPropertiesChangeListener
*>(this))
354 void OPropertySetAggregationHelper::disposing()
356 osl::MutexGuard
aGuard(rBHelper
.rMutex
);
358 if ( m_xAggregateSet
.is() && m_bListening
)
360 // register as a single listener
361 m_xAggregateMultiSet
->removePropertiesChangeListener(this);
362 m_xAggregateSet
->removeVetoableChangeListener(OUString(), this);
363 m_bListening
= false;
366 OPropertyStateHelper::disposing();
370 void SAL_CALL
OPropertySetAggregationHelper::disposing(const css::lang::EventObject
& _rSource
)
372 OSL_ENSURE(m_xAggregateSet
.is(), "OPropertySetAggregationHelper::disposing : don't have an aggregate anymore !");
373 if (_rSource
.Source
== m_xAggregateSet
)
374 m_bListening
= false;
378 void SAL_CALL
OPropertySetAggregationHelper::propertiesChange(const css::uno::Sequence
< css::beans::PropertyChangeEvent
>& _rEvents
)
380 OSL_ENSURE(m_xAggregateSet
.is(), "OPropertySetAggregationHelper::propertiesChange : have no aggregate !");
382 sal_Int32 nLen
= _rEvents
.getLength();
383 cppu::IPropertyArrayHelper
& rPH
= getInfoHelper();
387 const css::beans::PropertyChangeEvent
& evt
= _rEvents
.getConstArray()[0];
388 OSL_ENSURE(!evt
.PropertyName
.isEmpty(), "OPropertySetAggregationHelper::propertiesChange : invalid event !");
389 // we had a bug where this assertion would have us saved a whole day :) (72514)
390 sal_Int32 nHandle
= rPH
.getHandleByName( evt
.PropertyName
);
392 // If nHandle is -1 the event marks a (aggregate) property which we hide to callers
393 // If isCurrentlyForwardingProperty( nHandle ) is <TRUE/>, then we ourself triggered
394 // setting this property. In this case, it will be notified later (by the OPropertySetHelper
397 if ( ( nHandle
!= -1 ) && !isCurrentlyForwardingProperty( nHandle
) )
398 fire(&nHandle
, &evt
.NewValue
, &evt
.OldValue
, 1, false);
402 std::unique_ptr
<sal_Int32
[]> pHandles(new sal_Int32
[nLen
]);
403 std::unique_ptr
< css::uno::Any
[]> pNewValues(new css::uno::Any
[nLen
]);
404 std::unique_ptr
< css::uno::Any
[]> pOldValues(new css::uno::Any
[nLen
]);
407 for (const css::beans::PropertyChangeEvent
& rEvent
: _rEvents
)
409 sal_Int32 nHandle
= rPH
.getHandleByName(rEvent
.PropertyName
);
410 if ( ( nHandle
!= -1 ) && !isCurrentlyForwardingProperty( nHandle
) )
411 { // same as above : -1 is valid (73247) ...
412 pHandles
[nDest
] = nHandle
;
413 pNewValues
[nDest
] = rEvent
.NewValue
;
414 pOldValues
[nDest
] = rEvent
.OldValue
;
420 fire(pHandles
.get(), pNewValues
.get(), pOldValues
.get(), nDest
, false);
425 void SAL_CALL
OPropertySetAggregationHelper::vetoableChange(const css::beans::PropertyChangeEvent
& _rEvent
)
427 OSL_ENSURE(m_xAggregateSet
.is(), "OPropertySetAggregationHelper::vetoableChange : have no aggregate !");
429 cppu::IPropertyArrayHelper
& rPH
= getInfoHelper();
431 sal_Int32 nHandle
= rPH
.getHandleByName(_rEvent
.PropertyName
);
432 fire(&nHandle
, &_rEvent
.NewValue
, &_rEvent
.OldValue
, 1, true);
436 void OPropertySetAggregationHelper::setAggregation(const css::uno::Reference
< css::uno::XInterface
>& _rxDelegate
)
438 osl::MutexGuard
aGuard(rBHelper
.rMutex
);
440 if (m_bListening
&& m_xAggregateSet
.is())
442 m_xAggregateMultiSet
->removePropertiesChangeListener(this);
443 m_xAggregateSet
->removeVetoableChangeListener(OUString(), this);
444 m_bListening
= false;
447 m_xAggregateState
.set(_rxDelegate
, css::uno::UNO_QUERY
);
448 m_xAggregateSet
.set(_rxDelegate
, css::uno::UNO_QUERY
);
449 m_xAggregateMultiSet
.set(_rxDelegate
, css::uno::UNO_QUERY
);
450 m_xAggregateFastSet
.set(_rxDelegate
, css::uno::UNO_QUERY
);
452 // must support XPropertySet and XMultiPropertySet
453 if ( m_xAggregateSet
.is() && !m_xAggregateMultiSet
.is() )
454 throw css::lang::IllegalArgumentException();
458 void OPropertySetAggregationHelper::startListening()
460 osl::MutexGuard
aGuard(rBHelper
.rMutex
);
462 if (!m_bListening
&& m_xAggregateSet
.is())
464 // register as a single listener
465 css::uno::Sequence
< OUString
> aPropertyNames
;
466 m_xAggregateMultiSet
->addPropertiesChangeListener(aPropertyNames
, this);
467 m_xAggregateSet
->addVetoableChangeListener(OUString(), this);
474 void SAL_CALL
OPropertySetAggregationHelper::addVetoableChangeListener(const OUString
& _rPropertyName
,
475 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& _rxListener
)
477 OPropertySetHelper::addVetoableChangeListener(_rPropertyName
, _rxListener
);
483 void SAL_CALL
OPropertySetAggregationHelper::addPropertyChangeListener(const OUString
& _rPropertyName
,
484 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& _rxListener
)
486 OPropertySetHelper::addPropertyChangeListener(_rPropertyName
, _rxListener
);
492 void SAL_CALL
OPropertySetAggregationHelper::addPropertiesChangeListener(const css::uno::Sequence
< OUString
>& _rPropertyNames
,
493 const css::uno::Reference
< css::beans::XPropertiesChangeListener
>& _rxListener
)
495 OPropertySetHelper::addPropertiesChangeListener(_rPropertyNames
, _rxListener
);
501 sal_Int32
OPropertySetAggregationHelper::getOriginalHandle(sal_Int32 nHandle
) const
503 OPropertyArrayAggregationHelper
& rPH
= static_cast<OPropertyArrayAggregationHelper
&>( const_cast<OPropertySetAggregationHelper
*>(this)->getInfoHelper() );
504 sal_Int32 nOriginalHandle
= -1;
505 (void)rPH
.fillAggregatePropertyInfoByHandle(nullptr, &nOriginalHandle
, nHandle
);
506 return nOriginalHandle
;
510 OUString
OPropertySetAggregationHelper::getPropertyName( sal_Int32 _nHandle
) const
512 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( const_cast<OPropertySetAggregationHelper
*>(this)->getInfoHelper() );
514 OSL_VERIFY( rPH
.getPropertyByHandle( _nHandle
, aProperty
) );
515 return aProperty
.Name
;
519 void SAL_CALL
OPropertySetAggregationHelper::setFastPropertyValue(sal_Int32 _nHandle
, const css::uno::Any
& _rValue
)
521 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
523 sal_Int32 nOriginalHandle
= -1;
525 // does the handle belong to the aggregation ?
526 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, _nHandle
))
527 if (m_xAggregateFastSet
.is())
528 m_xAggregateFastSet
->setFastPropertyValue(nOriginalHandle
, _rValue
);
530 m_xAggregateSet
->setPropertyValue(aPropName
, _rValue
);
532 OPropertySetHelper::setFastPropertyValue(_nHandle
, _rValue
);
536 void OPropertySetAggregationHelper::getFastPropertyValue( css::uno::Any
& rValue
, sal_Int32 nHandle
) const
538 OPropertyArrayAggregationHelper
& rPH
= static_cast<OPropertyArrayAggregationHelper
&>( const_cast<OPropertySetAggregationHelper
*>(this)->getInfoHelper() );
540 sal_Int32 nOriginalHandle
= -1;
542 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, nHandle
))
544 if (m_xAggregateFastSet
.is())
545 rValue
= m_xAggregateFastSet
->getFastPropertyValue(nOriginalHandle
);
547 rValue
= m_xAggregateSet
->getPropertyValue(aPropName
);
549 else if ( m_pForwarder
->isResponsibleFor( nHandle
) )
551 // this is a property which has been "overwritten" in our instance (thus
552 // fillAggregatePropertyInfoByHandle didn't find it)
553 rValue
= m_xAggregateSet
->getPropertyValue( getPropertyName( nHandle
) );
558 css::uno::Any SAL_CALL
OPropertySetAggregationHelper::getFastPropertyValue(sal_Int32 nHandle
)
560 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
562 sal_Int32 nOriginalHandle
= -1;
563 css::uno::Any aValue
;
565 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, nHandle
))
567 if (m_xAggregateFastSet
.is())
568 aValue
= m_xAggregateFastSet
->getFastPropertyValue(nOriginalHandle
);
570 aValue
= m_xAggregateSet
->getPropertyValue(aPropName
);
573 aValue
= OPropertySetHelper::getFastPropertyValue(nHandle
);
579 void SAL_CALL
OPropertySetAggregationHelper::setPropertyValues(
580 const Sequence
< OUString
>& _rPropertyNames
, const Sequence
< Any
>& _rValues
)
582 OSL_ENSURE( !rBHelper
.bInDispose
, "OPropertySetAggregationHelper::setPropertyValues : do not use within the dispose call !");
583 OSL_ENSURE( !rBHelper
.bDisposed
, "OPropertySetAggregationHelper::setPropertyValues : object is disposed" );
585 // check where the properties come from
586 if (!m_xAggregateSet
.is())
587 OPropertySetHelper::setPropertyValues(_rPropertyNames
, _rValues
);
588 else if (_rPropertyNames
.getLength() == 1) // use the more efficient way
592 setPropertyValue( _rPropertyNames
[0], _rValues
[0] );
594 catch( const UnknownPropertyException
& )
596 // by definition of XMultiPropertySet::setPropertyValues, unknown properties are to be ignored
597 SAL_WARN( "comphelper", "OPropertySetAggregationHelper::setPropertyValues: unknown property: '"
598 << _rPropertyNames
[0] << "', implementation: " << typeid( *this ).name() );
603 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
605 // determine which properties belong to the aggregate, and which ones to the delegator
606 sal_Int32
nAggCount(0);
607 sal_Int32
nLen(_rPropertyNames
.getLength());
609 for ( const OUString
& rName
: _rPropertyNames
)
611 OPropertyArrayAggregationHelper::PropertyOrigin ePropOrg
= rPH
.classifyProperty( rName
);
612 if ( OPropertyArrayAggregationHelper::PropertyOrigin::Unknown
== ePropOrg
)
613 throw WrappedTargetException( OUString(), static_cast< XMultiPropertySet
* >( this ), Any( UnknownPropertyException( ) ) );
614 // due to a flaw in the API design, this method is not allowed to throw an UnknownPropertyException
615 // so we wrap it into a WrappedTargetException
617 if ( OPropertyArrayAggregationHelper::PropertyOrigin::Aggregate
== ePropOrg
)
621 // all properties belong to the aggregate
622 if (nAggCount
== nLen
)
623 m_xAggregateMultiSet
->setPropertyValues(_rPropertyNames
, _rValues
);
625 // all properties belong to the aggregating object
626 else if (nAggCount
== 0)
627 OPropertySetHelper::setPropertyValues(_rPropertyNames
, _rValues
);
632 const css::uno::Any
* pValues
= _rValues
.getConstArray();
634 // dividing the Names and _rValues
637 Sequence
< OUString
> AggPropertyNames( nAggCount
);
638 OUString
* pAggNames
= AggPropertyNames
.getArray();
639 // aggregate's values
640 Sequence
< Any
> AggValues( nAggCount
);
641 Any
* pAggValues
= AggValues
.getArray();
644 Sequence
< OUString
> DelPropertyNames( nLen
- nAggCount
);
645 OUString
* pDelNames
= DelPropertyNames
.getArray();
648 Sequence
< Any
> DelValues( nLen
- nAggCount
);
649 Any
* pDelValues
= DelValues
.getArray();
651 for ( const OUString
& rName
: _rPropertyNames
)
653 if ( OPropertyArrayAggregationHelper::PropertyOrigin::Aggregate
== rPH
.classifyProperty( rName
) )
655 *pAggNames
++ = rName
;
656 *pAggValues
++ = *pValues
++;
660 *pDelNames
++ = rName
;
661 *pDelValues
++ = *pValues
++;
665 // reset, needed below
666 pDelValues
= DelValues
.getArray();
668 std::unique_ptr
<sal_Int32
[]> pHandles(new sal_Int32
[ nLen
- nAggCount
]);
671 cppu::IPropertyArrayHelper
& rPH2
= getInfoHelper();
673 // fill the handle array
674 sal_Int32 nHitCount
= rPH2
.fillHandles( pHandles
.get(), DelPropertyNames
);
677 std::unique_ptr
< css::uno::Any
[]> pConvertedValues(new css::uno::Any
[ nHitCount
]);
678 std::unique_ptr
< css::uno::Any
[]> pOldValues(new css::uno::Any
[ nHitCount
]);
683 // must lock the mutex outside the loop. So all values are consistent.
684 osl::MutexGuard
aGuard( rBHelper
.rMutex
);
685 for( i
= 0; i
< (nLen
- nAggCount
); ++i
)
687 if( pHandles
[i
] != -1 )
689 sal_Int16 nAttributes
;
690 rPH2
.fillPropertyMembersByHandle( nullptr, &nAttributes
, pHandles
[i
] );
691 if( nAttributes
& css::beans::PropertyAttribute::READONLY
)
692 throw css::beans::PropertyVetoException();
693 // Will the property change?
694 if( convertFastPropertyValue( pConvertedValues
[ nHitCount
], pOldValues
[nHitCount
],
695 pHandles
[i
], pDelValues
[i
] ) )
697 // only increment if the property really change
698 pHandles
[nHitCount
] = pHandles
[i
];
703 // release guard to fire events
706 // fire vetoable events
707 fire( pHandles
.get(), pConvertedValues
.get(), pOldValues
.get(), nHitCount
, true );
709 // setting the agg Properties
710 m_xAggregateMultiSet
->setPropertyValues(AggPropertyNames
, AggValues
);
713 // must lock the mutex outside the loop.
714 osl::MutexGuard
aGuard( rBHelper
.rMutex
);
715 // Loop over all changed properties
716 for( i
= 0; i
< nHitCount
; i
++ )
718 // Will the property change?
719 setFastPropertyValue_NoBroadcast( pHandles
[i
], pConvertedValues
[i
] );
721 // release guard to fire events
724 // fire change events
725 fire( pHandles
.get(), pConvertedValues
.get(), pOldValues
.get(), nHitCount
, false );
728 m_xAggregateMultiSet
->setPropertyValues(AggPropertyNames
, AggValues
);
735 css::beans::PropertyState SAL_CALL
OPropertySetAggregationHelper::getPropertyState(const OUString
& _rPropertyName
)
737 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
738 sal_Int32 nHandle
= rPH
.getHandleByName( _rPropertyName
);
742 throw css::beans::UnknownPropertyException();
746 sal_Int32 nOriginalHandle
= -1;
747 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, nHandle
))
749 if (m_xAggregateState
.is())
750 return m_xAggregateState
->getPropertyState(_rPropertyName
);
752 return css::beans::PropertyState_DIRECT_VALUE
;
755 return getPropertyStateByHandle(nHandle
);
759 void SAL_CALL
OPropertySetAggregationHelper::setPropertyToDefault(const OUString
& _rPropertyName
)
761 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
762 sal_Int32 nHandle
= rPH
.getHandleByName(_rPropertyName
);
765 throw css::beans::UnknownPropertyException();
769 sal_Int32 nOriginalHandle
= -1;
770 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, nHandle
))
772 if (m_xAggregateState
.is())
773 m_xAggregateState
->setPropertyToDefault(_rPropertyName
);
779 setPropertyToDefaultByHandle( nHandle
);
781 catch( const UnknownPropertyException
& ) { throw; }
782 catch( const RuntimeException
& ) { throw; }
783 catch( const Exception
& )
785 OSL_FAIL( "OPropertySetAggregationHelper::setPropertyToDefault: caught an exception which is not allowed to leave here!" );
791 css::uno::Any SAL_CALL
OPropertySetAggregationHelper::getPropertyDefault(const OUString
& aPropertyName
)
793 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
794 sal_Int32 nHandle
= rPH
.getHandleByName( aPropertyName
);
797 throw css::beans::UnknownPropertyException();
800 sal_Int32 nOriginalHandle
= -1;
801 if (rPH
.fillAggregatePropertyInfoByHandle(&aPropName
, &nOriginalHandle
, nHandle
))
803 if (m_xAggregateState
.is())
804 return m_xAggregateState
->getPropertyDefault(aPropertyName
);
806 return css::uno::Any();
809 return getPropertyDefaultByHandle(nHandle
);
812 sal_Bool SAL_CALL
OPropertySetAggregationHelper::convertFastPropertyValue( Any
& _rConvertedValue
, Any
& _rOldValue
, sal_Int32 _nHandle
, const Any
& _rValue
)
814 bool bModified
= false;
816 OSL_ENSURE( m_pForwarder
->isResponsibleFor( _nHandle
), "OPropertySetAggregationHelper::convertFastPropertyValue: this is no forwarded property - did you use declareForwardedProperty for it?" );
817 if ( m_pForwarder
->isResponsibleFor( _nHandle
) )
819 // need to determine the type of the property for conversion
820 OPropertyArrayAggregationHelper
& rPH
= static_cast< OPropertyArrayAggregationHelper
& >( getInfoHelper() );
822 OSL_VERIFY( rPH
.getPropertyByHandle( _nHandle
, aProperty
) );
825 getFastPropertyValue( aCurrentValue
, _nHandle
);
826 bModified
= tryPropertyValue( _rConvertedValue
, _rOldValue
, _rValue
, aCurrentValue
, aProperty
.Type
);
832 void SAL_CALL
OPropertySetAggregationHelper::setFastPropertyValue_NoBroadcast( sal_Int32 _nHandle
, const Any
& _rValue
)
834 OSL_ENSURE( m_pForwarder
->isResponsibleFor( _nHandle
), "OPropertySetAggregationHelper::setFastPropertyValue_NoBroadcast: this is no forwarded property - did you use declareForwardedProperty for it?" );
835 if ( m_pForwarder
->isResponsibleFor( _nHandle
) )
836 m_pForwarder
->doForward( _nHandle
, _rValue
);
840 void OPropertySetAggregationHelper::declareForwardedProperty( sal_Int32 _nHandle
)
842 OSL_ENSURE( !m_pForwarder
->isResponsibleFor( _nHandle
), "OPropertySetAggregationHelper::declareForwardedProperty: already declared!" );
843 m_pForwarder
->takeResponsibilityFor( _nHandle
);
847 void OPropertySetAggregationHelper::forwardingPropertyValue( sal_Int32
)
853 void OPropertySetAggregationHelper::forwardedPropertyValue( sal_Int32
)
859 bool OPropertySetAggregationHelper::isCurrentlyForwardingProperty( sal_Int32 _nHandle
) const
861 return m_pForwarder
->getCurrentlyForwardedProperty() == _nHandle
;
865 } // namespace comphelper
868 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */