/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef COMPHELPER_NAMEDVALUECOLLECTION_HXX #define COMPHELPER_NAMEDVALUECOLLECTION_HXX #include /** === begin UNO includes === **/ #include #include #include #include /** === end UNO includes === **/ #include #include #include //........................................................................ namespace comphelper { //........................................................................ // ==================================================================== // = NamedValueCollection // ==================================================================== struct NamedValueCollection_Impl; /** a collection of named values, packed in various formats. */ class COMPHELPER_DLLPUBLIC NamedValueCollection { private: ::std::auto_ptr< NamedValueCollection_Impl > m_pImpl; public: NamedValueCollection(); NamedValueCollection( const NamedValueCollection& _rCopySource ); NamedValueCollection& operator=( const NamedValueCollection& i_rCopySource ); /** constructs a collection @param _rElements the wrapped elements of the collection. The Any might contain a sequence of property values, a sequence of named values, or directly a property value or named value. All other cases are worth an assertion in non-product builds. */ NamedValueCollection( const ::com::sun::star::uno::Any& _rElements ); /** constructs a collection @param _rArguments a sequence of Any's containing either PropertyValue's or NamedValue's. */ NamedValueCollection( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& _rArguments ); /** constructs a collection @param _rArguments a sequence of PropertyValues's */ NamedValueCollection( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rArguments ); /** constructs a collection @param _rArguments a sequence of NamedValue's */ NamedValueCollection( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& _rArguments ); ~NamedValueCollection(); inline void assign( const ::com::sun::star::uno::Any& i_rWrappedElements ) { impl_assign( i_rWrappedElements ); } inline void assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& _rArguments ) { impl_assign( _rArguments ); } inline void assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rArguments ) { impl_assign( _rArguments ); } inline void assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& _rArguments ) { impl_assign( _rArguments ); } inline void clear() { impl_assign( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >() ); } /** determines whether or not named values can be extracted from the given value @return if and only if the given Any contains a NamedValue, a PropertyValue, or a sequence thereof. */ static bool canExtractFrom( ::com::sun::star::uno::Any const & i_value ); /// returns the number of elements in the collection size_t size() const; /// determines whether the collection is empty bool empty() const; /** returns the names of all elements in the collection */ ::std::vector< ::rtl::OUString > getNames() const; /** merges the content of another collection into |this| @param _rAdditionalValues the collection whose values are to be merged @param _bOverwriteExisting defines whether or not elements which are already present in |this| should be overwritten () or preserved (). @return |*this| */ NamedValueCollection& merge( const NamedValueCollection& _rAdditionalValues, bool _bOverwriteExisting ); /** retrieves a value with a given name from the collection, if it is present @param _pAsciiValueName the ASCII name of the value to retrieve @param _out_rValue is the output parameter taking the desired value upon successful return. If a value with the given name is not present in the collection, or if a wrong-typed value is present, then this parameter will not be touched. @return if there is a value with the given name, which could successfully be extracted. In this case, _out_rValue will contain the requested value.
, if there is no value with the given name. @throws IllegalArgumentException in case there is a value with the given name, but it cannot legally assigned to _out_rValue. */ template < typename VALUE_TYPE > bool get_ensureType( const sal_Char* _pAsciiValueName, VALUE_TYPE& _out_rValue ) const { return get_ensureType( ::rtl::OUString::createFromAscii( _pAsciiValueName ), &_out_rValue, ::cppu::UnoType< VALUE_TYPE >::get() ); } template < typename VALUE_TYPE > bool get_ensureType( const ::rtl::OUString& _rValueName, VALUE_TYPE& _out_rValue ) const { return get_ensureType( _rValueName, &_out_rValue, ::cppu::UnoType< VALUE_TYPE >::get() ); } /** retrieves a value with a given name, or defaults it to a given value, if its not present in the collection */ template < typename VALUE_TYPE > VALUE_TYPE getOrDefault( const sal_Char* _pAsciiValueName, const VALUE_TYPE& _rDefault ) const { return getOrDefault( ::rtl::OUString::createFromAscii( _pAsciiValueName ), _rDefault ); } template < typename VALUE_TYPE > VALUE_TYPE getOrDefault( const ::rtl::OUString& _rValueName, const VALUE_TYPE& _rDefault ) const { VALUE_TYPE retVal( _rDefault ); get_ensureType( _rValueName, retVal ); return retVal; } /** retrieves a (untyped) value with a given name If the collection does not contain a value with the given name, an empty Any is returned. */ const ::com::sun::star::uno::Any& get( const sal_Char* _pAsciiValueName ) const { return get( ::rtl::OUString::createFromAscii( _pAsciiValueName ) ); } /** retrieves a (untyped) value with a given name If the collection does not contain a value with the given name, an empty Any is returned. */ const ::com::sun::star::uno::Any& get( const ::rtl::OUString& _rValueName ) const { return impl_get( _rValueName ); } /// determines whether a value with a given name is present in the collection inline bool has( const sal_Char* _pAsciiValueName ) const { return impl_has( ::rtl::OUString::createFromAscii( _pAsciiValueName ) ); } /// determines whether a value with a given name is present in the collection inline bool has( const ::rtl::OUString& _rValueName ) const { return impl_has( _rValueName ); } /** puts a value into the collection @return if and only if a value was already present previously, in which case it has been overwritten. */ template < typename VALUE_TYPE > inline bool put( const sal_Char* _pAsciiValueName, const VALUE_TYPE& _rValue ) { return impl_put( ::rtl::OUString::createFromAscii( _pAsciiValueName ), ::com::sun::star::uno::makeAny( _rValue ) ); } /** puts a value into the collection @return if and only if a value was already present previously, in which case it has been overwritten. */ template < typename VALUE_TYPE > inline bool put( const ::rtl::OUString& _rValueName, const VALUE_TYPE& _rValue ) { return impl_put( _rValueName, ::com::sun::star::uno::makeAny( _rValue ) ); } inline bool put( const sal_Char* _pAsciiValueName, const ::com::sun::star::uno::Any& _rValue ) { return impl_put( ::rtl::OUString::createFromAscii( _pAsciiValueName ), _rValue ); } inline bool put( const ::rtl::OUString& _rValueName, const ::com::sun::star::uno::Any& _rValue ) { return impl_put( _rValueName, _rValue ); } /** removes the value with the given name from the collection @return if and only if a value with the given name existed in the collection. */ inline bool remove( const sal_Char* _pAsciiValueName ) { return impl_remove( ::rtl::OUString::createFromAscii( _pAsciiValueName ) ); } /** removes the value with the given name from the collection @return if and only if a value with the given name existed in the collection. */ inline bool remove( const ::rtl::OUString& _rValueName ) { return impl_remove( _rValueName ); } /** transforms the collection to a sequence of PropertyValues @return the number of elements in the sequence */ sal_Int32 operator >>= ( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _out_rValues ) const; /** transforms the collection to a sequence of NamedValues @return the number of elements in the sequence */ sal_Int32 operator >>= ( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& _out_rValues ) const; /** transforms the collection into a sequence of PropertyValues */ inline ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > getPropertyValues() const { ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aValues; *this >>= aValues; return aValues; } /** returns a Sequence< Any >, containing PropertyValues */ inline ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > getWrappedPropertyValues() const { return impl_wrap< ::com::sun::star::beans::PropertyValue >(); } /** returns a Sequence< Any >, containing NamedValues */ inline ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > getWrappedNamedValues() const { return impl_wrap< ::com::sun::star::beans::NamedValue >(); } /** transforms the collection into a sequence of NamedValues */ inline ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue > getNamedValues() const { ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue > aValues; *this >>= aValues; return aValues; } private: void impl_assign( const ::com::sun::star::uno::Any& i_rWrappedElements ); void impl_assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& _rArguments ); void impl_assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rArguments ); void impl_assign( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& _rArguments ); bool get_ensureType( const ::rtl::OUString& _rValueName, void* _pValueLocation, const ::com::sun::star::uno::Type& _rExpectedValueType ) const; const ::com::sun::star::uno::Any& impl_get( const ::rtl::OUString& _rValueName ) const; bool impl_has( const ::rtl::OUString& _rValueName ) const; bool impl_put( const ::rtl::OUString& _rValueName, const ::com::sun::star::uno::Any& _rValue ); bool impl_remove( const ::rtl::OUString& _rValueName ); template< class VALUE_TYPE > ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > impl_wrap() const { ::com::sun::star::uno::Sequence< VALUE_TYPE > aValues; *this >>= aValues; ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > aWrappedValues( aValues.getLength() ); ::com::sun::star::uno::Any* pO = aWrappedValues.getArray(); const VALUE_TYPE* pV = aValues.getConstArray(); const sal_Int32 nLen = aValues.getLength(); for( sal_Int32 i = 0; i < nLen; ++i ) *(pO++) = ::com::sun::star::uno::makeAny( *(pV++) ); return aWrappedValues; } }; //........................................................................ } // namespace comphelper //........................................................................ #endif // COMPHELPER_NAMEDVALUECOLLECTION_HXX