nss: upgrade to release 3.73
[LibreOffice.git] / xmloff / inc / MultiPropertySetHelper.hxx
blob65e378bd7a2dde38e78e4b6682d0acd4258794f3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_XMLOFF_INC_MULTIPROPERTYSETHELPER_HXX
20 #define INCLUDED_XMLOFF_INC_MULTIPROPERTYSETHELPER_HXX
22 #include <rtl/ustring.hxx>
23 #include <com/sun/star/uno/Sequence.hxx>
24 #include <memory>
26 namespace com::sun::star
28 namespace beans
30 class XMultiPropertySet;
32 namespace beans
34 class XPropertySet;
36 namespace beans
38 class XPropertySetInfo;
42 /**
43 * The MultiPropertySetHelper performs the following functions:
45 * Given a list of property names (as char** or OUString*), it can
46 * query an XMultiPropertySet (or XPropertySet) which of these properties
47 * it supports (method hasProperties(...)). The properties *MUST* be
48 * sorted alphabetically.
50 * Then, the X(Multi)PropertySet can be queried for values, and only
51 * the supported properties are queried. (method getValues(...)) The
52 * values are stored in the helper itself.
54 * Finally, each property can be queried for existence
55 * (method hasProperty(...)) or its value (method (getValue(...))).
57 * After some initial preparation (hasProperties, getValues) the
58 * MultiPropertySetHelper can be used similarly to an
59 * XPropertySet in that you can query the values in the places where you
60 * need them. However, if an XMultiPropertySet is supplied, the queries
61 * are more efficient, often significantly so.
63 class MultiPropertySetHelper
65 /// names of all properties
66 std::unique_ptr<OUString[]> pPropertyNames;
68 /// length of pPropertyNames array
69 sal_Int16 nLength;
71 /// the sequence of property names that the current (multi)
72 /// property set implementation supports
73 css::uno::Sequence<OUString> aPropertySequence;
75 /// an array of indices that maps from pPropertyNames indices to
76 /// aPropertySequence indices
77 std::unique_ptr<sal_Int16[]> pSequenceIndex;
79 /// the last set of values retrieved by getValues
80 css::uno::Sequence<css::uno::Any> aValues;
82 /// result of aValues.getConstArray()
83 const css::uno::Any* pValues;
85 /// an empty Any
86 css::uno::Any aEmptyAny;
88 public:
89 MultiPropertySetHelper(const char** pNames);
91 ~MultiPropertySetHelper();
93 /**
94 * Call hasPropertiesByName for the provided XPropertySetInfo and build
95 * list of allowed properties.
97 void hasProperties(const css::uno::Reference<css::beans::XPropertySetInfo>&);
99 /**
100 * Return whether hasProperties was called
101 * (i.e. if we are ready to call getValues)
103 bool checkedProperties();
106 * Get values from the XMultiPropertySet.
108 * May only be called after hasProperties() was called for the
109 * appropriate XPropertySetInfo.
111 void getValues(const css::uno::Reference<css::beans::XMultiPropertySet>&);
114 * Get values from the XPropertySet. This can be much slower than
115 * getValues( const Reference<XMultiPropertySet& ) and hence
116 * should be avoided.
118 * May only be called after hasProperties() was called for the
119 * appropriate XPropertySetInfo.
121 void getValues(const css::uno::Reference<css::beans::XPropertySet>&);
124 * Get a value from the values array.
126 * May only be called after getValues() was called.
128 inline const css::uno::Any& getValue(sal_Int16 nIndex);
131 * Find out if this property is supported.
133 * May only be called after hasProperties() was called.
135 inline bool hasProperty(sal_Int16 nIndex);
138 * Get a value from the XPropertySet on demand.
140 * If neither getValues nor getValueOnDemand has been called already
141 * after the last call to resetValues, the values are retrieved
142 * using getValues. Otherwise the value already retrieved is returned.
143 * In case XMultiPropertySet is supported by the XPropertySet and
144 * bTryMult is set, the XMultiPropertySet is used to get the values.
147 const css::uno::Any& getValue(sal_Int16 nIndex,
148 const css::uno::Reference<css::beans::XPropertySet>&,
149 bool bTryMulti = false);
152 * Get a value from the XMultiPropertySet on demand.
154 * If neither getValues nor getValueOnDemand has been called already
155 * after the last call to resetValues, the values are retrieved
156 * using getValues. Otherwise the value already retrieved is returned.
157 * In case XMultiPropertySet is supported by the XPropertySet,
158 * XMultiPropertySet is used to get the values.
161 const css::uno::Any& getValue(sal_Int16 nIndex,
162 const css::uno::Reference<css::beans::XMultiPropertySet>&);
164 void resetValues() { pValues = nullptr; }
167 // inline implementations of the often-called methods getValue and hasProperty:
169 const css::uno::Any& MultiPropertySetHelper::getValue(sal_Int16 nValueNo)
171 assert(pValues && "called getValue() without calling getValues()");
172 assert(pSequenceIndex && "called getValue() without calling hasProperties()");
173 assert(nValueNo < nLength);
175 sal_Int16 nIndex = pSequenceIndex[nValueNo];
176 return (nIndex != -1) ? pValues[nIndex] : aEmptyAny;
179 bool MultiPropertySetHelper::hasProperty(sal_Int16 nValueNo)
181 assert(pSequenceIndex && "called hasProperty() without calling hasProperties()");
182 assert(nValueNo < nLength);
184 return pSequenceIndex[nValueNo] != -1;
187 #endif
189 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */