/************************************************************** * * 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 __FILTER_CONFIG_CACHEITEM_HXX_ #define __FILTER_CONFIG_CACHEITEM_HXX_ //_______________________________________________ // includes #include #include #include #include #include #include #include #include #include #include //_______________________________________________ // namespace namespace filter{ namespace config{ namespace css = ::com::sun::star; //_______________________________________________ // definitions /** @short Must be used as first derived base class to get a full initialized mutex member, which can be used during the ctor runs too! */ struct BaseLock { public: // must be mutable to be useable in const environments too! mutable ::osl::Mutex m_aLock; }; typedef ::comphelper::SequenceAsVector< ::rtl::OUString > OUStringList; //_______________________________________________ /** @short represent an item of a FilterCache instance. @descr This class is not threadsafe tp perform operations, which use many instances of this class! Synchronizations must be done outside. */ class CacheItem : public ::comphelper::SequenceAsHashMap { //------------------------------------------- public: //--------------------------------------- /** @short creates an empty item. */ CacheItem(); //--------------------------------------- /** @short update only properties, which are given by the specified rItem. @descr Update means: - add new properties - change existing values @param rUpdateItem another cache item, which contains some special properties, which should by used for updating this one. */ void update(const CacheItem& rUpdateItem); //--------------------------------------- /** @short check, if the given properties exists at this item. @descr All properties are compared in its minimum. E.g: string lists => only the requested items are checked. Additional existing items are ignored. @param lProps contains all properties, which must exist at this item. @return sal_True if all given properties exist at this item; sal_False otherwise. */ sal_Bool haveProps(const CacheItem& lProps) const; //--------------------------------------- /** @short check, if the given properties don't exist at this item. @descr All properties are compared in its minimum. E.g: string lists => only the requested items are checked. Additional existing items are ignored. @param lProps contains all properties, which should not exists at this item. @return sal_False if at least one property exists at this item(!); sal_True otherwise. */ sal_Bool dontHaveProps(const CacheItem& lProps) const; //--------------------------------------- /** @short check, if the given properties don't exist at this item. @descr All properties are compared in its minimum. E.g: string lists => only the specified items are checked. Additional existing items are ignored. @param lProps contains all properties, which should be checked. @return sal_True if all given properties don't exist at this item; sal_False otherwise. */ sal_Bool excludeProps(const CacheItem& lProps) const; //--------------------------------------- /** @short because we know two UIName properties (a list with all locales and the value for the current locale only), we must be sure that the correspond together. @param sActLocale must specify the current office locale. Its needed to address the UIName property inside the list of possible ones. */ void validateUINames(const ::rtl::OUString& sActLocale); //--------------------------------------- /** @short convert this structure to a seq< PropertyValue > and ignore all empty properties! @descr Normally the converter routines of the base class SequenceAsHashMap done this job already. But it doesn't provide a "pack" mechanism to ignore properties with empty (means "void") values. @return css::uno::Sequence< css::beans::PropertyValue > as a list of all properties of this cacheitem, where empty properties was removed. */ css::uno::Sequence< css::beans::PropertyValue > getAsPackedPropertyValueList(); }; //_______________________________________________ /** @short represent an item list of a FilterCache instance. */ typedef ::std::hash_map< ::rtl::OUString , CacheItem , ::rtl::OUStringHash , ::std::equal_to< ::rtl::OUString > > CacheItemList; //_______________________________________________ /** @short supports registration of multiple key to another string information. @descr E.g. a list of internal type names can be registered to an extension. Organization as an hash makes it faster then searching inside vectors. On the other side e.g. URLPattern can't be really addressed by a hash value ... because the use wildcards. But there we need key-value pairs too, which can't be provided by a pur vector! */ typedef ::std::hash_map< ::rtl::OUString , OUStringList , ::rtl::OUStringHash , ::std::equal_to< ::rtl::OUString > > CacheItemRegistration; //_______________________________________________ /** @short is used to collect all matching types of an URL during type detection. @descr Every type in this list is combined with an information, which property matched to the given URL. The user of this structure can decide then, if a deep detection should be suppressed e.g. if an URLPattern was used. */ struct FlatDetectionInfo { // the internal type name ::rtl::OUString sType; // this type was found by a matching the URL extension sal_Bool bMatchByExtension; // this type was found by a matching URL Pattern sal_Bool bMatchByPattern; // the user selected this type explicitly sal_Bool bPreselectedAsType; // the user selected this type implicit by selecting a corresponding filter sal_Bool bPreselectedByFilter; // the user selected this type implicit by selecting a corresponding office module sal_Bool bPreselectedByDocumentService; FlatDetectionInfo() : sType (::rtl::OUString()) , bMatchByExtension (sal_False ) , bMatchByPattern (sal_False ) , bPreselectedAsType (sal_False ) , bPreselectedByFilter (sal_False ) , bPreselectedByDocumentService(sal_False ) {} }; typedef ::std::list< FlatDetectionInfo > FlatDetection; } // namespace config } // namespace filter #endif // __FILTER_CONFIG_CACHEITEM_HXX_