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 :
20 :
21 : #include <set>
22 : #include <svl/itempool.hxx>
23 : #include <svl/itemset.hxx>
24 : #include <svl/style.hxx>
25 : #include <cppuhelper/supportsservice.hxx>
26 :
27 : #include <svx/svdmodel.hxx>
28 : #include "UnoNameItemTable.hxx"
29 : #include <osl/mutex.hxx>
30 : #include <vcl/svapp.hxx>
31 :
32 : #include "svx/unoapi.hxx"
33 : #include <boost/scoped_ptr.hpp>
34 :
35 : using namespace ::com::sun::star;
36 : using namespace ::cppu;
37 :
38 3940 : SvxUnoNameItemTable::SvxUnoNameItemTable( SdrModel* pModel, sal_uInt16 nWhich, sal_uInt8 nMemberId ) throw()
39 : : mpModel( pModel ),
40 : mpModelPool( pModel ? &pModel->GetItemPool() : NULL ),
41 3940 : mnWhich( nWhich ), mnMemberId( nMemberId )
42 : {
43 3940 : if( pModel )
44 3940 : StartListening( *pModel );
45 3940 : }
46 :
47 7300 : SvxUnoNameItemTable::~SvxUnoNameItemTable() throw()
48 : {
49 3650 : if( mpModel )
50 3650 : EndListening( *mpModel );
51 3650 : dispose();
52 3650 : }
53 :
54 4978 : bool SvxUnoNameItemTable::isValid( const NameOrIndex* pItem ) const
55 : {
56 4978 : return pItem && !pItem->GetName().isEmpty();
57 : }
58 :
59 7404 : void SvxUnoNameItemTable::dispose()
60 : {
61 7404 : ItemPoolVector::iterator aIter = maItemSetVector.begin();
62 7404 : const ItemPoolVector::iterator aEnd = maItemSetVector.end();
63 :
64 15278 : while( aIter != aEnd )
65 : {
66 470 : delete (*aIter++);
67 : }
68 :
69 7404 : maItemSetVector.clear();
70 7404 : }
71 :
72 292894 : void SvxUnoNameItemTable::Notify( SfxBroadcaster&, const SfxHint& rHint ) throw()
73 : {
74 292894 : const SdrHint* pSdrHint = dynamic_cast<const SdrHint*>(&rHint);
75 :
76 292894 : if( pSdrHint && HINT_MODELCLEARED == pSdrHint->GetKind() )
77 3574 : dispose();
78 292894 : }
79 :
80 0 : sal_Bool SAL_CALL SvxUnoNameItemTable::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException, std::exception)
81 : {
82 0 : return cppu::supportsService(this, ServiceName);
83 : }
84 :
85 524 : void SAL_CALL SvxUnoNameItemTable::ImplInsertByName( const OUString& aName, const uno::Any& aElement )
86 : {
87 524 : SfxItemSet* mpInSet = new SfxItemSet( *mpModelPool, mnWhich, mnWhich );
88 524 : maItemSetVector.push_back( mpInSet );
89 :
90 524 : boost::scoped_ptr<NameOrIndex> pNewItem(createItem());
91 524 : pNewItem->SetName( aName );
92 524 : pNewItem->PutValue( aElement, mnMemberId );
93 524 : mpInSet->Put( *pNewItem, mnWhich );
94 524 : }
95 :
96 : // XNameContainer
97 524 : void SAL_CALL SvxUnoNameItemTable::insertByName( const OUString& aApiName, const uno::Any& aElement )
98 : throw( lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
99 : {
100 524 : SolarMutexGuard aGuard;
101 :
102 524 : if( hasByName( aApiName ) )
103 0 : throw container::ElementExistException();
104 :
105 1048 : OUString aName = SvxUnogetInternalNameForItem(mnWhich, aApiName);
106 :
107 1048 : ImplInsertByName( aName, aElement );
108 524 : }
109 :
110 :
111 :
112 180 : void SAL_CALL SvxUnoNameItemTable::removeByName( const OUString& aApiName )
113 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
114 : {
115 180 : SolarMutexGuard aGuard;
116 :
117 : // a little quickfix for 2.0 to let applications clear api
118 : // created items that are not used
119 180 : if ( aApiName == "~clear~" )
120 : {
121 180 : dispose();
122 180 : return;
123 : }
124 :
125 0 : OUString sName = SvxUnogetInternalNameForItem(mnWhich, aApiName);
126 :
127 0 : ItemPoolVector::iterator aIter = maItemSetVector.begin();
128 0 : const ItemPoolVector::iterator aEnd = maItemSetVector.end();
129 :
130 : const NameOrIndex *pItem;
131 :
132 0 : while( aIter != aEnd )
133 : {
134 0 : pItem = static_cast<const NameOrIndex *>(&((*aIter)->Get( mnWhich ) ));
135 0 : if (sName.equals(pItem->GetName()))
136 : {
137 0 : delete (*aIter);
138 0 : maItemSetVector.erase( aIter );
139 0 : return;
140 : }
141 0 : ++aIter;
142 : }
143 :
144 0 : if (!hasByName(sName))
145 0 : throw container::NoSuchElementException();
146 : }
147 :
148 : // XNameReplace
149 0 : void SAL_CALL SvxUnoNameItemTable::replaceByName( const OUString& aApiName, const uno::Any& aElement )
150 : throw( lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
151 : {
152 0 : SolarMutexGuard aGuard;
153 :
154 0 : OUString aName = SvxUnogetInternalNameForItem(mnWhich, aApiName);
155 :
156 0 : ItemPoolVector::iterator aIter = maItemSetVector.begin();
157 0 : const ItemPoolVector::iterator aEnd = maItemSetVector.end();
158 :
159 0 : while( aIter != aEnd )
160 : {
161 0 : const NameOrIndex *pItem = static_cast<const NameOrIndex *>(&((*aIter)->Get( mnWhich ) ));
162 0 : if (aName.equals(pItem->GetName()))
163 : {
164 0 : NameOrIndex* pNewItem = createItem();
165 0 : pNewItem->SetName(aName);
166 0 : if( !pNewItem->PutValue( aElement, mnMemberId ) || !isValid( pNewItem ) )
167 0 : throw lang::IllegalArgumentException();
168 :
169 0 : (*aIter)->Put( *pNewItem );
170 0 : return;
171 : }
172 0 : ++aIter;
173 : }
174 :
175 : // if it is not in our own sets, modify the pool!
176 0 : bool bFound = false;
177 :
178 : sal_uInt32 nSurrogate;
179 0 : sal_uInt32 nCount = mpModelPool ? mpModelPool->GetItemCount2( mnWhich ) : 0;
180 0 : for( nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
181 : {
182 0 : NameOrIndex *pItem = const_cast<NameOrIndex*>(static_cast<const NameOrIndex*>(mpModelPool->GetItem2( mnWhich, nSurrogate)));
183 0 : if (pItem && aName.equals(pItem->GetName()))
184 : {
185 0 : pItem->PutValue( aElement, mnMemberId );
186 0 : bFound = true;
187 0 : break;
188 : }
189 : }
190 :
191 0 : if( bFound )
192 0 : ImplInsertByName( aName, aElement );
193 : else
194 0 : throw container::NoSuchElementException();
195 :
196 0 : if( !hasByName( aName ) )
197 0 : throw container::NoSuchElementException();
198 : }
199 :
200 : // XNameAccess
201 28 : uno::Any SAL_CALL SvxUnoNameItemTable::getByName( const OUString& aApiName )
202 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
203 : {
204 28 : SolarMutexGuard aGuard;
205 :
206 56 : OUString aName = SvxUnogetInternalNameForItem(mnWhich, aApiName);
207 :
208 28 : uno::Any aAny;
209 :
210 28 : if (mpModelPool && !aName.isEmpty())
211 : {
212 : const NameOrIndex *pItem;
213 : sal_uInt32 nSurrogate;
214 :
215 28 : sal_uInt32 nSurrogateCount = mpModelPool ? mpModelPool->GetItemCount2( mnWhich ) : 0;
216 34 : for( nSurrogate = 0; nSurrogate < nSurrogateCount; nSurrogate++ )
217 : {
218 34 : pItem = static_cast<const NameOrIndex*>(mpModelPool->GetItem2( mnWhich, nSurrogate ));
219 :
220 34 : if (isValid(pItem) && aName.equals(pItem->GetName()))
221 : {
222 28 : pItem->QueryValue( aAny, mnMemberId );
223 56 : return aAny;
224 : }
225 : }
226 : }
227 :
228 28 : throw container::NoSuchElementException();
229 : }
230 :
231 22 : uno::Sequence< OUString > SAL_CALL SvxUnoNameItemTable::getElementNames( )
232 : throw( uno::RuntimeException, std::exception )
233 : {
234 22 : SolarMutexGuard aGuard;
235 :
236 44 : std::set< OUString > aNameSet;
237 :
238 : const NameOrIndex *pItem;
239 :
240 22 : const sal_uInt32 nSurrogateCount = mpModelPool ? mpModelPool->GetItemCount2( mnWhich ) : 0;
241 : sal_uInt32 nSurrogate;
242 52 : for( nSurrogate = 0; nSurrogate < nSurrogateCount; nSurrogate++ )
243 : {
244 30 : pItem = static_cast<const NameOrIndex*>(mpModelPool->GetItem2( mnWhich, nSurrogate ));
245 :
246 30 : if( !isValid( pItem ) )
247 4 : continue;
248 :
249 26 : OUString aApiName = SvxUnogetApiNameForItem(mnWhich, pItem->GetName());
250 26 : aNameSet.insert(aApiName);
251 26 : }
252 :
253 22 : uno::Sequence< OUString > aSeq( aNameSet.size() );
254 22 : OUString* pNames = aSeq.getArray();
255 :
256 22 : std::set< OUString >::iterator aIter( aNameSet.begin() );
257 22 : const std::set< OUString >::iterator aEnd( aNameSet.end() );
258 :
259 70 : while( aIter != aEnd )
260 : {
261 26 : *pNames++ = *aIter++;
262 : }
263 :
264 44 : return aSeq;
265 : }
266 :
267 1226 : sal_Bool SAL_CALL SvxUnoNameItemTable::hasByName( const OUString& aApiName )
268 : throw( uno::RuntimeException, std::exception )
269 : {
270 1226 : SolarMutexGuard aGuard;
271 :
272 2452 : OUString aName = SvxUnogetInternalNameForItem(mnWhich, aApiName);
273 :
274 1226 : if (aName.isEmpty())
275 0 : return sal_False;
276 :
277 : sal_uInt32 nSurrogate;
278 :
279 : const NameOrIndex *pItem;
280 :
281 1226 : sal_uInt32 nCount = mpModelPool ? mpModelPool->GetItemCount2( mnWhich ) : 0;
282 6030 : for( nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
283 : {
284 4804 : pItem = static_cast<const NameOrIndex*>(mpModelPool->GetItem2( mnWhich, nSurrogate ));
285 4804 : if (isValid(pItem) && aName.equals(pItem->GetName()))
286 0 : return sal_True;
287 : }
288 :
289 2452 : return sal_False;
290 : }
291 :
292 3370 : sal_Bool SAL_CALL SvxUnoNameItemTable::hasElements( )
293 : throw( uno::RuntimeException, std::exception )
294 : {
295 3370 : SolarMutexGuard aGuard;
296 :
297 : const NameOrIndex *pItem;
298 :
299 : sal_uInt32 nSurrogate;
300 3370 : const sal_uInt32 nSurrogateCount = mpModelPool ? mpModelPool->GetItemCount2( mnWhich ) : 0;
301 3458 : for( nSurrogate = 0; nSurrogate < nSurrogateCount; nSurrogate++ )
302 : {
303 110 : pItem = static_cast<const NameOrIndex*>(mpModelPool->GetItem2( mnWhich, nSurrogate ));
304 :
305 110 : if( isValid( pItem ) )
306 22 : return sal_True;
307 : }
308 :
309 3348 : return sal_False;
310 651 : }
311 :
312 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|