/* -*- 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 .
*/
using com::sun::star::uno::Any; using com::sun::star::uno::Reference; using com::sun::star::uno::Exception; using com::sun::star::lang::IllegalArgumentException; using com::sun::star::beans::Property; using com::sun::star::beans::XPropertySetInfo;
PropertyValueCache::iterator aPos = m_aCache.find( nHandle ); if ( aPos == m_aCache.end() )
{ // method has never before been invoked for this property try
{ // determine the type of this property
::cppu::IPropertyArrayHelper& rPropertyMetaData = getInfoHelper();
OUString sPropName;
OSL_VERIFY( rPropertyMetaData.fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ) );
Property aProperty = rPropertyMetaData.getPropertyByName( sPropName ); // default construct a value of this type
Any aEmptyValue( nullptr, aProperty.Type ); // insert into the cache
aPos = m_aCache.emplace( nHandle, aEmptyValue ).first;
} catch( const Exception& )
{
OSL_FAIL( "PropertySetBase::notifyAndCachePropertyValue: this is not expected to fail!" );
}
}
Any aOldValue = aPos->second; // determine the current value
Any aNewValue;
getFastPropertyValue( aNewValue, nHandle ); // remember the old value
aPos->second = aNewValue;
::std::pair< PropertyValueCache::iterator, bool > aInsertResult =
m_aCache.emplace( nHandle, aCurrentValue );
OSL_ENSURE( aInsertResult.second, "PropertySetBase::initializePropertyValueCache: already cached a value for this property!" );
}
PropertyAccessorBase& PropertySetBase::locatePropertyHandler( sal_Int32 nHandle ) const
{
PropertyAccessors::const_iterator aPropertyPos = m_aAccessors.find( nHandle );
assert( aPropertyPos != m_aAccessors.end() && aPropertyPos->second && "PropertySetBase::locatePropertyHandler: accessor map is corrupted!" ); // neither should this be called for handles where there is no accessor, nor should a // NULL accessor be in the map return *aPropertyPos->second;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.