merge the formfield patch from ooo-build
[ooovba.git] / xmloff / source / style / SinglePropertySetInfoCache.cxx
blobc977f66dc27d89d9023ac417aa08a522e12bd6e8
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SinglePropertySetInfoCache.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmloff.hxx"
33 #include <com/sun/star/lang/XTypeProvider.hpp>
34 #include <cppuhelper/weakref.hxx>
36 #ifndef _XMLOFF_SINGLEPROPERTYSETINFOCACHE_HXX
37 #include <xmloff/SinglePropertySetInfoCache.hxx>
38 #endif
40 using namespace ::com::sun::star::uno;
41 using ::com::sun::star::lang::XTypeProvider;
42 using ::com::sun::star::beans::XPropertySet;
43 using ::com::sun::star::beans::XPropertySetInfo;
45 sal_Bool SinglePropertySetInfoCache::hasProperty(
46 const Reference< XPropertySet >& rPropSet,
47 Reference< XPropertySetInfo >& rPropSetInfo )
49 if( !rPropSetInfo.is() )
50 rPropSetInfo = rPropSet->getPropertySetInfo();
51 sal_Bool bRet = sal_False, bValid = sal_False;
52 Reference < XTypeProvider > xTypeProv( rPropSet, UNO_QUERY );
53 Sequence< sal_Int8 > aImplId;
54 if( xTypeProv.is() )
56 aImplId = xTypeProv->getImplementationId();
57 if( aImplId.getLength() == 16 )
59 // The key must not be created outside this block, because it
60 // keeps a reference to the property set info.
61 PropertySetInfoKey aKey( rPropSetInfo, aImplId );
62 iterator aIter = find( aKey );
63 if( aIter != end() )
65 bRet = (*aIter).second;
66 bValid = sal_True;
70 if( !bValid )
72 bRet = rPropSetInfo->hasPropertyByName( sName );
73 if( xTypeProv.is() && aImplId.getLength() == 16 )
75 // Check whether the property set info is destroyed if it is
76 // assigned to a weak reference only. If it is destroyed, then
77 // every instance of getPropertySetInfo returns a new object.
78 // Such property set infos must not be cached.
79 WeakReference < XPropertySetInfo > xWeakInfo( rPropSetInfo );
80 rPropSetInfo = 0;
81 rPropSetInfo = xWeakInfo;
82 if( rPropSetInfo.is() )
84 PropertySetInfoKey aKey( rPropSetInfo, aImplId );
85 value_type aValue( aKey, bRet );
86 insert( aValue );
91 return bRet;