summaryrefslogtreecommitdiffstats
path: root/filter/source/config/cache/cacheitem.hxx
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
commited5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch)
tree7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /filter/source/config/cache/cacheitem.hxx
parentInitial commit. (diff)
downloadlibreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz
libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'filter/source/config/cache/cacheitem.hxx')
-rw-r--r--filter/source/config/cache/cacheitem.hxx177
1 files changed, 177 insertions, 0 deletions
diff --git a/filter/source/config/cache/cacheitem.hxx b/filter/source/config/cache/cacheitem.hxx
new file mode 100644
index 000000000..b20bf72c8
--- /dev/null
+++ b/filter/source/config/cache/cacheitem.hxx
@@ -0,0 +1,177 @@
+/* -*- 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 .
+ */
+
+#pragma once
+
+#include <unordered_map>
+#include <com/sun/star/uno/Sequence.h>
+#include <com/sun/star/beans/PropertyValue.hpp>
+#include <vector>
+#include <comphelper/sequenceashashmap.hxx>
+#include <o3tl/span.hxx>
+
+namespace filter::config {
+
+
+/** @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 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 must exist at this item.
+
+ @return sal_True if all given properties exists
+ at this item; sal_False otherwise.
+ */
+ bool haveProps(o3tl::span< const css::beans::NamedValue > 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 exist at this item.
+
+ @return sal_False if at least on property exists at this item(!);
+ sal_True otherwise.
+ */
+ bool dontHaveProps(o3tl::span< const css::beans::NamedValue > 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.
+ It's needed to address the UIName property inside
+ the list of possible ones.
+ */
+ void validateUINames(const 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 do 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(bool bFinalized, bool bMandatory) const;
+};
+
+
+/** @short represent an item list of a FilterCache
+ instance.
+ */
+typedef std::unordered_map< OUString,
+ CacheItem > 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 than 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 pure vector!
+ */
+typedef std::unordered_map< OUString,
+ std::vector<OUString> > CacheItemRegistration;
+
+
+/** @short is used to collect all matching types of a 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 a URLPattern was used.
+ */
+struct FlatDetectionInfo
+{
+ // the internal type name
+ OUString sType;
+
+ // this type was found by a matching the URL extension
+ bool bMatchByExtension;
+
+ // this type was found by a matching URL Pattern
+ bool bMatchByPattern;
+
+ // the user selected this type implicit by selecting a corresponding office module
+ bool bPreselectedByDocumentService;
+
+ FlatDetectionInfo();
+};
+
+typedef ::std::vector< FlatDetectionInfo > FlatDetection;
+
+} // namespace filter::config
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */