Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef _CPPUHELPER_INTERFACECONTAINER_HXX_
20 : #define _CPPUHELPER_INTERFACECONTAINER_HXX_
21 :
22 : #include <cppuhelper/interfacecontainer.h>
23 :
24 :
25 : namespace cppu
26 : {
27 :
28 : template< class key , class hashImpl , class equalImpl >
29 154023 : inline OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::OMultiTypeInterfaceContainerHelperVar( ::osl::Mutex & rMutex_ )
30 : SAL_THROW(())
31 154023 : : rMutex( rMutex_ )
32 : {
33 154023 : m_pMap = new InterfaceMap;
34 154023 : }
35 :
36 : //===================================================================
37 : template< class key , class hashImpl , class equalImpl >
38 153946 : inline OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::~OMultiTypeInterfaceContainerHelperVar()
39 : SAL_THROW(())
40 : {
41 153946 : typename InterfaceMap::iterator iter = m_pMap->begin();
42 153946 : typename InterfaceMap::iterator end = m_pMap->end();
43 :
44 364729 : while( iter != end )
45 : {
46 56837 : delete (OInterfaceContainerHelper*)(*iter).second;
47 56837 : (*iter).second = 0;
48 56837 : ++iter;
49 : }
50 153946 : delete m_pMap;
51 153946 : }
52 :
53 : //===================================================================
54 : template< class key , class hashImpl , class equalImpl >
55 0 : inline ::com::sun::star::uno::Sequence< key > OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::getContainedTypes() const
56 : SAL_THROW(())
57 : {
58 0 : ::osl::MutexGuard aGuard( rMutex );
59 0 : typename InterfaceMap::size_type nSize = m_pMap->size();
60 0 : if( nSize != 0 )
61 : {
62 0 : ::com::sun::star::uno::Sequence< key > aInterfaceTypes( nSize );
63 0 : key * pArray = aInterfaceTypes.getArray();
64 :
65 0 : typename InterfaceMap::iterator iter = m_pMap->begin();
66 0 : typename InterfaceMap::iterator end = m_pMap->end();
67 :
68 0 : sal_uInt32 i = 0;
69 0 : while( iter != end )
70 : {
71 : // are interfaces added to this container?
72 0 : if( ((OInterfaceContainerHelper*)(*iter).second)->getLength() )
73 : // yes, put the type in the array
74 0 : pArray[i++] = (*iter).first;
75 0 : iter++;
76 : }
77 0 : if( i != nSize ) {
78 : // may be empty container, reduce the sequence to the right size
79 0 : aInterfaceTypes = ::com::sun::star::uno::Sequence<key>( pArray, i );
80 : }
81 0 : return aInterfaceTypes;
82 : }
83 0 : return ::com::sun::star::uno::Sequence<key>();
84 : }
85 :
86 : //===================================================================
87 : template< class key , class hashImpl , class equalImpl >
88 542600 : OInterfaceContainerHelper * OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::getContainer(
89 : const key & rKey ) const SAL_THROW(())
90 : {
91 542600 : ::osl::MutexGuard aGuard( rMutex );
92 :
93 542600 : typename InterfaceMap::iterator iter = find( rKey );
94 542600 : if( iter != m_pMap->end() )
95 26441 : return (OInterfaceContainerHelper*) (*iter).second;
96 516159 : return 0;
97 : }
98 :
99 : //===================================================================
100 : template< class key , class hashImpl , class equalImpl >
101 65366 : sal_Int32 OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::addInterface(
102 : const key & rKey,
103 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > & rListener )
104 : SAL_THROW(())
105 : {
106 65366 : ::osl::MutexGuard aGuard( rMutex );
107 65366 : typename InterfaceMap::iterator iter = find( rKey );
108 65366 : if( iter == m_pMap->end() )
109 : {
110 56837 : OInterfaceContainerHelper * pLC = new OInterfaceContainerHelper( rMutex );
111 56837 : m_pMap->push_back(std::pair<key, void*>(rKey, pLC));
112 56837 : return pLC->addInterface( rListener );
113 : }
114 : else
115 8529 : return ((OInterfaceContainerHelper*)(*iter).second)->addInterface( rListener );
116 : }
117 :
118 : //===================================================================
119 : template< class key , class hashImpl , class equalImpl >
120 67136 : inline sal_Int32 OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::removeInterface(
121 : const key & rKey,
122 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > & rListener )
123 : SAL_THROW(())
124 : {
125 67136 : ::osl::MutexGuard aGuard( rMutex );
126 :
127 : // search container with id nUik
128 67136 : typename InterfaceMap::iterator iter = find( rKey );
129 : // container found?
130 67136 : if( iter != m_pMap->end() )
131 65317 : return ((OInterfaceContainerHelper*)(*iter).second)->removeInterface( rListener );
132 :
133 : // no container with this id. Always return 0
134 1819 : return 0;
135 : }
136 :
137 : //===================================================================
138 : template< class key , class hashImpl , class equalImpl >
139 3836 : void OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::disposeAndClear(
140 : const ::com::sun::star::lang::EventObject & rEvt )
141 : SAL_THROW(())
142 : {
143 3836 : typename InterfaceMap::size_type nSize = 0;
144 3836 : OInterfaceContainerHelper ** ppListenerContainers = NULL;
145 : {
146 3836 : ::osl::MutexGuard aGuard( rMutex );
147 3836 : nSize = m_pMap->size();
148 3836 : if( nSize )
149 : {
150 : typedef OInterfaceContainerHelper* ppp;
151 19 : ppListenerContainers = new ppp[nSize];
152 :
153 19 : typename InterfaceMap::iterator iter = m_pMap->begin();
154 19 : typename InterfaceMap::iterator end = m_pMap->end();
155 :
156 19 : typename InterfaceMap::size_type i = 0;
157 154 : while( iter != end )
158 : {
159 116 : ppListenerContainers[i++] = (OInterfaceContainerHelper*)(*iter).second;
160 116 : ++iter;
161 : }
162 3836 : }
163 : }
164 :
165 : // create a copy, because do not fire event in a guarded section
166 3952 : for( typename InterfaceMap::size_type i = 0; i < nSize; i++ )
167 : {
168 116 : if( ppListenerContainers[i] )
169 116 : ppListenerContainers[i]->disposeAndClear( rEvt );
170 : }
171 :
172 3836 : delete [] ppListenerContainers;
173 3836 : }
174 :
175 : //===================================================================
176 : template< class key , class hashImpl , class equalImpl >
177 : void OMultiTypeInterfaceContainerHelperVar< key , hashImpl , equalImpl >::clear() SAL_THROW(())
178 : {
179 : ::osl::MutexGuard aGuard( rMutex );
180 : typename InterfaceMap::iterator iter = m_pMap->begin();
181 : typename InterfaceMap::iterator end = m_pMap->end();
182 :
183 : while( iter != end )
184 : {
185 : ((OInterfaceContainerHelper*)(*iter).second)->clear();
186 : ++iter;
187 : }
188 : }
189 :
190 :
191 : }
192 :
193 : #endif
194 :
195 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|