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