Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / comphelper / enumhelper.hxx
blob67b21df92b0fbf2b74174ddaf2a2d98e3a58a4d7
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 .
20 #ifndef INCLUDED_COMPHELPER_ENUMHELPER_HXX
21 #define INCLUDED_COMPHELPER_ENUMHELPER_HXX
23 #include <vector>
24 #include <com/sun/star/container/XNameAccess.hpp>
25 #include <com/sun/star/container/XEnumeration.hpp>
26 #include <com/sun/star/container/XIndexAccess.hpp>
27 #include <com/sun/star/lang/XEventListener.hpp>
28 #include <cppuhelper/implbase.hxx>
29 #include <osl/mutex.hxx>
30 #include <comphelper/comphelperdllapi.h>
32 namespace comphelper
35 struct OEnumerationLock
37 public:
38 ::osl::Mutex m_aLock;
41 /** provides an com.sun.star.container::XEnumeration access based
42 on an object implementing the com.sun.star.container::XNameAccess interface
44 class COMPHELPER_DLLPUBLIC OEnumerationByName : private OEnumerationLock
45 , public ::cppu::WeakImplHelper< css::container::XEnumeration ,
46 css::lang::XEventListener >
48 css::uno::Sequence< OUString > m_aNames;
49 sal_Int32 m_nPos;
50 css::uno::Reference< css::container::XNameAccess > m_xAccess;
51 bool m_bListening;
53 public:
54 OEnumerationByName(const css::uno::Reference< css::container::XNameAccess >& _rxAccess);
55 OEnumerationByName(const css::uno::Reference< css::container::XNameAccess >& _rxAccess,
56 const css::uno::Sequence< OUString >& _aNames );
57 virtual ~OEnumerationByName() override;
59 virtual sal_Bool SAL_CALL hasMoreElements( ) override;
60 virtual css::uno::Any SAL_CALL nextElement( ) override;
62 virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent) override;
64 private:
65 COMPHELPER_DLLPRIVATE void impl_startDisposeListening();
66 COMPHELPER_DLLPRIVATE void impl_stopDisposeListening();
69 /** provides an com.sun.star.container::XEnumeration access based
70 on an object implementing the com.sun.star.container::XNameAccess interface
72 class COMPHELPER_DLLPUBLIC OEnumerationByIndex : private OEnumerationLock
73 , public ::cppu::WeakImplHelper< css::container::XEnumeration ,
74 css::lang::XEventListener >
76 sal_Int32 m_nPos;
77 css::uno::Reference< css::container::XIndexAccess > m_xAccess;
78 bool m_bListening;
80 public:
81 OEnumerationByIndex(const css::uno::Reference< css::container::XIndexAccess >& _rxAccess);
82 virtual ~OEnumerationByIndex() override;
84 virtual sal_Bool SAL_CALL hasMoreElements( ) override;
85 virtual css::uno::Any SAL_CALL nextElement( ) override;
87 virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent) override;
89 private:
90 COMPHELPER_DLLPRIVATE void impl_startDisposeListening();
91 COMPHELPER_DLLPRIVATE void impl_stopDisposeListening();
94 // this is the way that works for ENABLE_LTO with MSVC 2013
95 class SAL_DLLPUBLIC_TEMPLATE OAnyEnumeration_BASE
96 : public ::cppu::WeakImplHelper<css::container::XEnumeration> {};
98 /** provides an com.sun.star.container::XEnumeration
99 for an outside set vector of Any's.
102 class COMPHELPER_DLLPUBLIC OAnyEnumeration : private OEnumerationLock
103 , public OAnyEnumeration_BASE
105 sal_Int32 m_nPos;
106 css::uno::Sequence< css::uno::Any > m_lItems;
108 public:
109 OAnyEnumeration(const css::uno::Sequence< css::uno::Any >& lItems);
110 virtual ~OAnyEnumeration() override;
112 virtual sal_Bool SAL_CALL hasMoreElements( ) override;
113 virtual css::uno::Any SAL_CALL nextElement( ) override;
119 #endif // INCLUDED_COMPHELPER_ENUMHELPER_HXX
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */