1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #ifndef INCLUDED_COMPHELPER_PROPERTYSETINFO_HXX
21 #define INCLUDED_COMPHELPER_PROPERTYSETINFO_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/beans/XPropertySetInfo.hpp>
26 #include <cppuhelper/implbase.hxx>
27 #include <comphelper/comphelperdllapi.h>
28 #include <o3tl/typed_flags_set.hxx>
30 #include <unordered_map>
33 enum class PropertyMoreFlags
: sal_uInt8
{
38 template<> struct typed_flags
<PropertyMoreFlags
> : is_typed_flags
<PropertyMoreFlags
, 0x1> {};
44 struct PropertyMapEntry
47 css::uno::Type maType
;
49 /// flag bitmap, @see css::beans::PropertyAttribute
50 sal_Int16 mnAttributes
;
52 PropertyMoreFlags mnMoreFlags
;
54 PropertyMapEntry(OUString _aName
, sal_Int32 _nHandle
, css::uno::Type
const & _rType
,
55 sal_Int16 _nAttributes
, sal_uInt8 _nMemberId
, PropertyMoreFlags _nMoreFlags
= PropertyMoreFlags::NONE
)
56 : maName(std::move( _aName
))
58 , mnHandle( _nHandle
)
59 , mnAttributes( _nAttributes
)
60 , mnMemberId( _nMemberId
)
61 , mnMoreFlags( _nMoreFlags
)
63 assert(mnAttributes
<= 0x1ff );
64 assert( (_nMemberId
& 0x40) == 0 );
65 // Verify that if METRIC_ITEM is set, we are one of the types supported by
67 assert(!(_nMoreFlags
& PropertyMoreFlags::METRIC_ITEM
) ||
68 ( (maType
.getTypeClass() == css::uno::TypeClass_BYTE
)
69 || (maType
.getTypeClass() == css::uno::TypeClass_SHORT
)
70 || (maType
.getTypeClass() == css::uno::TypeClass_UNSIGNED_SHORT
)
71 || (maType
.getTypeClass() == css::uno::TypeClass_LONG
)
72 || (maType
.getTypeClass() == css::uno::TypeClass_UNSIGNED_LONG
)
75 PropertyMapEntry() = default;
78 typedef std::unordered_map
<OUString
, PropertyMapEntry
const *> PropertyMap
;
80 // don't export to avoid duplicate WeakImplHelper definitions with MSVC
81 class SAL_DLLPUBLIC_TEMPLATE PropertySetInfo_BASE
82 : public ::cppu::WeakImplHelper
< css::beans::XPropertySetInfo
>
85 /** this class implements a XPropertySetInfo that is initialized with arrays of PropertyMapEntry.
86 It is used by the class PropertySetHelper.
88 class COMPHELPER_DLLPUBLIC PropertySetInfo final
89 : public PropertySetInfo_BASE
92 PropertySetInfo() noexcept
;
93 PropertySetInfo( std::span
<const PropertyMapEntry
> pMap
) noexcept
;
94 virtual ~PropertySetInfo() noexcept override
;
96 /** returns a stl map with all PropertyMapEntry pointer.<p>
97 The key is the property name.
99 const PropertyMap
& getPropertyMap() const noexcept
{ return maPropertyMap
; }
101 /** adds an array of PropertyMapEntry to this instance.<p>
102 The end is marked with a PropertyMapEntry where mpName equals NULL</p>
104 void add( std::span
<PropertyMapEntry
const> pMap
) noexcept
;
106 /** removes an already added PropertyMapEntry which string in mpName equals to aName */
107 void remove( const OUString
& aName
) noexcept
;
109 virtual css::uno::Sequence
< css::beans::Property
> SAL_CALL
getProperties() override
;
110 virtual css::beans::Property SAL_CALL
getPropertyByName( const OUString
& aName
) override
;
111 virtual sal_Bool SAL_CALL
hasPropertyByName( const OUString
& Name
) override
;
114 PropertyMap maPropertyMap
;
115 /// Cache the value we return in getProperties because it is expensive to construct
116 css::uno::Sequence
< css::beans::Property
> maProperties
;
121 #endif // _UTL_PROPERTSETINFO_HXX_
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */