xref: /aoo41x/main/oox/source/helper/propertyset.cxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #include "oox/helper/propertyset.hxx"
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir #include <osl/diagnose.h>
31*cdf0e10cSrcweir #include <rtl/strbuf.hxx>
32*cdf0e10cSrcweir #include "oox/helper/propertymap.hxx"
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir namespace oox {
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir // ============================================================================
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir using namespace ::com::sun::star::beans;
39*cdf0e10cSrcweir using namespace ::com::sun::star::uno;
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir using ::rtl::OStringBuffer;
42*cdf0e10cSrcweir using ::rtl::OUString;
43*cdf0e10cSrcweir using ::rtl::OUStringToOString;
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir // ============================================================================
46*cdf0e10cSrcweir 
47*cdf0e10cSrcweir void PropertySet::set( const Reference< XPropertySet >& rxPropSet )
48*cdf0e10cSrcweir {
49*cdf0e10cSrcweir     mxPropSet = rxPropSet;
50*cdf0e10cSrcweir     mxMultiPropSet.set( mxPropSet, UNO_QUERY );
51*cdf0e10cSrcweir     if( mxPropSet.is() ) try
52*cdf0e10cSrcweir     {
53*cdf0e10cSrcweir         mxPropSetInfo = mxPropSet->getPropertySetInfo();
54*cdf0e10cSrcweir     }
55*cdf0e10cSrcweir     catch( Exception& )
56*cdf0e10cSrcweir     {
57*cdf0e10cSrcweir     }
58*cdf0e10cSrcweir }
59*cdf0e10cSrcweir 
60*cdf0e10cSrcweir bool PropertySet::hasProperty( sal_Int32 nPropId ) const
61*cdf0e10cSrcweir {
62*cdf0e10cSrcweir     if( mxPropSetInfo.is() ) try
63*cdf0e10cSrcweir     {
64*cdf0e10cSrcweir         const OUString& rPropName = PropertyMap::getPropertyName( nPropId );
65*cdf0e10cSrcweir         return mxPropSetInfo->hasPropertyByName( rPropName );
66*cdf0e10cSrcweir     }
67*cdf0e10cSrcweir     catch( Exception& )
68*cdf0e10cSrcweir     {
69*cdf0e10cSrcweir     }
70*cdf0e10cSrcweir     return false;
71*cdf0e10cSrcweir }
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir // Get properties -------------------------------------------------------------
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir Any PropertySet::getAnyProperty( sal_Int32 nPropId ) const
76*cdf0e10cSrcweir {
77*cdf0e10cSrcweir     Any aValue;
78*cdf0e10cSrcweir     return implGetPropertyValue( aValue, PropertyMap::getPropertyName( nPropId ) ) ? aValue : Any();
79*cdf0e10cSrcweir }
80*cdf0e10cSrcweir 
81*cdf0e10cSrcweir void PropertySet::getProperties( Sequence< Any >& orValues, const Sequence< OUString >& rPropNames ) const
82*cdf0e10cSrcweir {
83*cdf0e10cSrcweir     if( mxMultiPropSet.is() ) try
84*cdf0e10cSrcweir     {
85*cdf0e10cSrcweir         orValues = mxMultiPropSet->getPropertyValues( rPropNames );
86*cdf0e10cSrcweir         return;
87*cdf0e10cSrcweir     }
88*cdf0e10cSrcweir     catch( Exception& )
89*cdf0e10cSrcweir     {
90*cdf0e10cSrcweir         OSL_ENSURE( false, "PropertySet::getProperties - cannot get all property values - fallback to single mode" );
91*cdf0e10cSrcweir     }
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir     if( mxPropSet.is() )
94*cdf0e10cSrcweir     {
95*cdf0e10cSrcweir         sal_Int32 nLen = rPropNames.getLength();
96*cdf0e10cSrcweir         const OUString* pPropName = rPropNames.getConstArray();
97*cdf0e10cSrcweir         const OUString* pPropNameEnd = pPropName + nLen;
98*cdf0e10cSrcweir         orValues.realloc( nLen );
99*cdf0e10cSrcweir         Any* pValue = orValues.getArray();
100*cdf0e10cSrcweir         for( ; pPropName != pPropNameEnd; ++pPropName, ++pValue )
101*cdf0e10cSrcweir             implGetPropertyValue( *pValue, *pPropName );
102*cdf0e10cSrcweir     }
103*cdf0e10cSrcweir }
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir // Set properties -------------------------------------------------------------
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir bool PropertySet::setAnyProperty( sal_Int32 nPropId, const Any& rValue )
108*cdf0e10cSrcweir {
109*cdf0e10cSrcweir     return implSetPropertyValue( PropertyMap::getPropertyName( nPropId ), rValue );
110*cdf0e10cSrcweir }
111*cdf0e10cSrcweir 
112*cdf0e10cSrcweir void PropertySet::setProperties( const Sequence< OUString >& rPropNames, const Sequence< Any >& rValues )
113*cdf0e10cSrcweir {
114*cdf0e10cSrcweir     OSL_ENSURE( rPropNames.getLength() == rValues.getLength(),
115*cdf0e10cSrcweir         "PropertySet::setProperties - length of sequences different" );
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir     if( mxMultiPropSet.is() ) try
118*cdf0e10cSrcweir     {
119*cdf0e10cSrcweir         mxMultiPropSet->setPropertyValues( rPropNames, rValues );
120*cdf0e10cSrcweir         return;
121*cdf0e10cSrcweir     }
122*cdf0e10cSrcweir     catch( Exception& )
123*cdf0e10cSrcweir     {
124*cdf0e10cSrcweir         OSL_ENSURE( false, "PropertySet::setProperties - cannot set all property values, fallback to single mode" );
125*cdf0e10cSrcweir     }
126*cdf0e10cSrcweir 
127*cdf0e10cSrcweir     if( mxPropSet.is() )
128*cdf0e10cSrcweir     {
129*cdf0e10cSrcweir         const OUString* pPropName = rPropNames.getConstArray();
130*cdf0e10cSrcweir         const OUString* pPropNameEnd = pPropName + rPropNames.getLength();
131*cdf0e10cSrcweir         const Any* pValue = rValues.getConstArray();
132*cdf0e10cSrcweir         for( ; pPropName != pPropNameEnd; ++pPropName, ++pValue )
133*cdf0e10cSrcweir             implSetPropertyValue( *pPropName, *pValue );
134*cdf0e10cSrcweir     }
135*cdf0e10cSrcweir }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir void PropertySet::setProperties( const PropertyMap& rPropertyMap )
138*cdf0e10cSrcweir {
139*cdf0e10cSrcweir     if( !rPropertyMap.empty() )
140*cdf0e10cSrcweir     {
141*cdf0e10cSrcweir         Sequence< OUString > aPropNames;
142*cdf0e10cSrcweir         Sequence< Any > aValues;
143*cdf0e10cSrcweir         rPropertyMap.fillSequences( aPropNames, aValues );
144*cdf0e10cSrcweir         setProperties( aPropNames, aValues );
145*cdf0e10cSrcweir     }
146*cdf0e10cSrcweir }
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir // private --------------------------------------------------------------------
149*cdf0e10cSrcweir 
150*cdf0e10cSrcweir bool PropertySet::implGetPropertyValue( Any& orValue, const OUString& rPropName ) const
151*cdf0e10cSrcweir {
152*cdf0e10cSrcweir     if( mxPropSet.is() ) try
153*cdf0e10cSrcweir     {
154*cdf0e10cSrcweir         orValue = mxPropSet->getPropertyValue( rPropName );
155*cdf0e10cSrcweir         return true;
156*cdf0e10cSrcweir     }
157*cdf0e10cSrcweir     catch( Exception& )
158*cdf0e10cSrcweir     {
159*cdf0e10cSrcweir         OSL_ENSURE( false, OStringBuffer( "PropertySet::implGetPropertyValue - cannot get property \"" ).
160*cdf0e10cSrcweir             append( OUStringToOString( rPropName, RTL_TEXTENCODING_ASCII_US ) ).append( '"' ).getStr() );
161*cdf0e10cSrcweir     }
162*cdf0e10cSrcweir     return false;
163*cdf0e10cSrcweir }
164*cdf0e10cSrcweir 
165*cdf0e10cSrcweir bool PropertySet::implSetPropertyValue( const OUString& rPropName, const Any& rValue )
166*cdf0e10cSrcweir {
167*cdf0e10cSrcweir     if( mxPropSet.is() ) try
168*cdf0e10cSrcweir     {
169*cdf0e10cSrcweir         mxPropSet->setPropertyValue( rPropName, rValue );
170*cdf0e10cSrcweir         return true;
171*cdf0e10cSrcweir     }
172*cdf0e10cSrcweir     catch( Exception& )
173*cdf0e10cSrcweir     {
174*cdf0e10cSrcweir         OSL_ENSURE( false, OStringBuffer( "PropertySet::implSetPropertyValue - cannot set property \"" ).
175*cdf0e10cSrcweir             append( OUStringToOString( rPropName, RTL_TEXTENCODING_ASCII_US ) ).append( '"' ).getStr() );
176*cdf0e10cSrcweir     }
177*cdf0e10cSrcweir     return false;
178*cdf0e10cSrcweir }
179*cdf0e10cSrcweir 
180*cdf0e10cSrcweir // ============================================================================
181*cdf0e10cSrcweir 
182*cdf0e10cSrcweir } // namespace oox
183