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 #include "sortdynres.hxx"
21 #include <comphelper/interfacecontainer2.hxx>
22 #include <cppuhelper/supportsservice.hxx>
23 #include <cppuhelper/weak.hxx>
24 #include <com/sun/star/ucb/ContentResultSetCapability.hpp>
25 #include <com/sun/star/ucb/ListActionType.hpp>
26 #include <com/sun/star/ucb/ListenerAlreadySetException.hpp>
27 #include <com/sun/star/ucb/ServiceNotFoundException.hpp>
28 #include <com/sun/star/ucb/WelcomeDynamicResultSetStruct.hpp>
29 #include <com/sun/star/ucb/CachedDynamicResultSetStubFactory.hpp>
30 #include <com/sun/star/ucb/XSourceInitialization.hpp>
32 using namespace com::sun::star::beans
;
33 using namespace com::sun::star::lang
;
34 using namespace com::sun::star::sdbc
;
35 using namespace com::sun::star::ucb
;
36 using namespace com::sun::star::uno
;
37 using namespace comphelper
;
40 // The mutex to synchronize access to containers.
41 static osl::Mutex
& getContainerMutex()
43 static osl::Mutex ourMutex
;
49 // SortedDynamicResultSet
51 SortedDynamicResultSet::SortedDynamicResultSet(
52 const Reference
< XDynamicResultSet
> &xOriginal
,
53 const Sequence
< NumberedSortingInfo
> &aOptions
,
54 const Reference
< XAnyCompareFactory
> &xCompFac
,
55 const Reference
< XComponentContext
> &rxContext
)
57 mpDisposeEventListeners
= nullptr;
58 mxOwnListener
= new SortedDynamicResultSetListener( this );
60 mxOriginal
= xOriginal
;
63 m_xContext
= rxContext
;
71 SortedDynamicResultSet::~SortedDynamicResultSet()
73 mxOwnListener
->impl_OwnerDies();
74 mxOwnListener
.clear();
76 mpDisposeEventListeners
.reset();
83 // XServiceInfo methods.
85 OUString SAL_CALL
SortedDynamicResultSet::getImplementationName()
87 return "com.sun.star.comp.ucb.SortedDynamicResultSet";
90 sal_Bool SAL_CALL
SortedDynamicResultSet::supportsService( const OUString
& ServiceName
)
92 return cppu::supportsService( this, ServiceName
);
95 css::uno::Sequence
< OUString
> SAL_CALL
SortedDynamicResultSet::getSupportedServiceNames()
97 return { "com.sun.star.ucb.SortedDynamicResultSet" };
100 // XComponent methods.
102 void SAL_CALL
SortedDynamicResultSet::dispose()
104 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
106 if ( mpDisposeEventListeners
&& mpDisposeEventListeners
->getLength() )
109 aEvt
.Source
= static_cast< XComponent
* >( this );
110 mpDisposeEventListeners
->disposeAndClear( aEvt
);
120 void SAL_CALL
SortedDynamicResultSet::addEventListener(
121 const Reference
< XEventListener
>& Listener
)
123 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
125 if ( !mpDisposeEventListeners
)
126 mpDisposeEventListeners
.reset(
127 new OInterfaceContainerHelper2( getContainerMutex() ) );
129 mpDisposeEventListeners
->addInterface( Listener
);
132 void SAL_CALL
SortedDynamicResultSet::removeEventListener(
133 const Reference
< XEventListener
>& Listener
)
135 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
137 if ( mpDisposeEventListeners
)
138 mpDisposeEventListeners
->removeInterface( Listener
);
142 // XDynamicResultSet methods.
144 Reference
< XResultSet
> SAL_CALL
145 SortedDynamicResultSet::getStaticResultSet()
147 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
149 if ( mxListener
.is() )
150 throw ListenerAlreadySetException();
154 if ( mxOriginal
.is() )
156 mxOne
= new SortedResultSet( mxOriginal
->getStaticResultSet() );
157 mxOne
->Initialize( maOptions
, mxCompFac
);
165 SortedDynamicResultSet::setListener( const Reference
< XDynamicResultSetListener
>& Listener
)
167 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
169 if ( mxListener
.is() )
170 throw ListenerAlreadySetException();
172 addEventListener( Reference
< XEventListener
>::query( Listener
) );
174 mxListener
= Listener
;
176 if ( mxOriginal
.is() )
177 mxOriginal
->setListener( mxOwnListener
.get() );
182 SortedDynamicResultSet::connectToCache( const Reference
< XDynamicResultSet
> & xCache
)
184 if( mxListener
.is() )
185 throw ListenerAlreadySetException();
188 throw ListenerAlreadySetException();
190 Reference
< XSourceInitialization
> xTarget( xCache
, UNO_QUERY
);
191 if( xTarget
.is() && m_xContext
.is() )
193 Reference
< XCachedDynamicResultSetStubFactory
> xStubFactory
;
196 xStubFactory
= CachedDynamicResultSetStubFactory::create( m_xContext
);
198 catch ( Exception
const & )
202 if( xStubFactory
.is() )
204 xStubFactory
->connectToCache(
205 this, xCache
, Sequence
< NumberedSortingInfo
> (), nullptr );
209 throw ServiceNotFoundException();
213 sal_Int16 SAL_CALL
SortedDynamicResultSet::getCapabilities()
215 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
219 if ( mxOriginal
.is() )
220 nCaps
= mxOriginal
->getCapabilities();
222 nCaps
|= ContentResultSetCapability::SORTED
;
228 // XDynamicResultSetListener methods.
231 /** In the first notify-call the listener gets the two
232 <type>XResultSet</type>s and has to hold them. The <type>XResultSet</type>s
233 are implementations of the service <type>ContentResultSet</type>.
235 <p>The notified new <type>XResultSet</type> will stay valid after returning
236 notification. The old one will become invalid after returning notification.
238 <p>While in notify-call the listener is allowed to read old and new version,
239 except in the first call, where only the new Resultset is valid.
241 <p>The Listener is allowed to blockade this call, until he really want to go
242 to the new version. The only situation, where the listener has to return the
243 update call at once is, while he disposes his broadcaster or while he is
244 removing himself as listener (otherwise you deadlock)!!!
246 void SortedDynamicResultSet::impl_notify( const ListEvent
& Changes
)
248 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
250 bool bHasNew
= false;
251 bool bHasModified
= false;
253 SortedResultSet
*pCurSet
= nullptr;
255 // exchange mxNew and mxOld and immediately afterwards copy the tables
262 mxTwo
->CopyData( mxOne
.get() );
263 pCurSet
= mxTwo
.get();
268 mxOne
->CopyData( mxTwo
.get() );
269 pCurSet
= mxOne
.get();
279 aRet
= pCurSet
->getPropertyValue("IsRowCountFinal");
281 catch (const UnknownPropertyException
&) {}
282 catch (const WrappedTargetException
&) {}
284 sal_IntPtr nOldCount
= pCurSet
->GetCount();
285 bool bWasFinal
= false;
289 // handle the actions in the list
290 for ( const ListAction
& aAction
: Changes
.Changes
)
292 switch ( aAction
.ListActionType
)
294 case ListActionType::WELCOME
:
296 WelcomeDynamicResultSetStruct aWelcome
;
297 if ( aAction
.ActionInfo
>>= aWelcome
)
299 mxTwo
= new SortedResultSet( aWelcome
.Old
);
300 mxOne
= new SortedResultSet( aWelcome
.New
);
301 mxOne
->Initialize( maOptions
, mxCompFac
);
304 pCurSet
= mxOne
.get();
306 aWelcome
.Old
= mxTwo
.get();
307 aWelcome
.New
= mxOne
.get();
309 std::unique_ptr
<ListAction
> pWelcomeAction(new ListAction
);
310 pWelcomeAction
->ActionInfo
<<= aWelcome
;
311 pWelcomeAction
->Position
= 0;
312 pWelcomeAction
->Count
= 0;
313 pWelcomeAction
->ListActionType
= ListActionType::WELCOME
;
315 maActions
.Insert( std::move(pWelcomeAction
) );
319 // throw RuntimeException();
323 case ListActionType::INSERTED
:
325 pCurSet
->InsertNew( aAction
.Position
, aAction
.Count
);
329 case ListActionType::REMOVED
:
331 pCurSet
->Remove( aAction
.Position
,
336 case ListActionType::MOVED
:
338 sal_Int32 nOffset
= 0;
339 if ( aAction
.ActionInfo
>>= nOffset
)
341 pCurSet
->Move( aAction
.Position
,
347 case ListActionType::PROPERTIES_CHANGED
:
349 pCurSet
->SetChanged( aAction
.Position
, aAction
.Count
);
358 pCurSet
->ResortModified( &maActions
);
361 pCurSet
->ResortNew( &maActions
);
363 // send the new actions with a notify to the listeners
366 // check for propertyChangeEvents
367 pCurSet
->CheckProperties( nOldCount
, bWasFinal
);
372 void SortedDynamicResultSet::impl_disposing()
380 void SortedDynamicResultSet::SendNotify()
382 sal_Int32 nCount
= maActions
.Count();
384 if ( nCount
&& mxListener
.is() )
386 Sequence
< ListAction
> aActionList( maActions
.Count() );
387 ListAction
*pActionList
= aActionList
.getArray();
389 for ( sal_Int32 i
=0; i
<nCount
; i
++ )
391 pActionList
[ i
] = *(maActions
.GetAction( i
));
395 aNewEvent
.Changes
= aActionList
;
397 mxListener
->notify( aNewEvent
);
404 // SortedDynamicResultSetFactory
406 SortedDynamicResultSetFactory::SortedDynamicResultSetFactory(
407 const Reference
< XComponentContext
> & rxContext
)
409 m_xContext
= rxContext
;
413 SortedDynamicResultSetFactory::~SortedDynamicResultSetFactory()
418 // XServiceInfo methods.
420 OUString SAL_CALL
SortedDynamicResultSetFactory::getImplementationName()
422 return "com.sun.star.comp.ucb.SortedDynamicResultSetFactory";
425 sal_Bool SAL_CALL
SortedDynamicResultSetFactory::supportsService( const OUString
& ServiceName
)
427 return cppu::supportsService( this, ServiceName
);
430 css::uno::Sequence
< OUString
> SAL_CALL
SortedDynamicResultSetFactory::getSupportedServiceNames()
432 return { "com.sun.star.ucb.SortedDynamicResultSetFactory" };
436 extern "C" SAL_DLLPUBLIC_EXPORT
css::uno::XInterface
*
437 ucb_SortedDynamicResultSetFactory_get_implementation(
438 css::uno::XComponentContext
* context
, css::uno::Sequence
<css::uno::Any
> const&)
440 return cppu::acquire(static_cast<cppu::OWeakObject
*>(new SortedDynamicResultSetFactory(context
)));
443 // SortedDynamicResultSetFactory methods.
445 Reference
< XDynamicResultSet
> SAL_CALL
446 SortedDynamicResultSetFactory::createSortedDynamicResultSet(
447 const Reference
< XDynamicResultSet
> & Source
,
448 const Sequence
< NumberedSortingInfo
> & Info
,
449 const Reference
< XAnyCompareFactory
> & CompareFactory
)
451 Reference
< XDynamicResultSet
> xRet
= new SortedDynamicResultSet( Source
, Info
, CompareFactory
, m_xContext
);
457 void EventList::Clear()
462 void EventList::AddEvent( sal_IntPtr nType
, sal_IntPtr nPos
)
464 std::unique_ptr
<ListAction
> pAction(new ListAction
);
465 pAction
->Position
= nPos
;
467 pAction
->ListActionType
= nType
;
469 Insert( std::move(pAction
) );
472 // SortedDynamicResultSetListener
474 SortedDynamicResultSetListener::SortedDynamicResultSetListener(
475 SortedDynamicResultSet
*mOwner
)
481 SortedDynamicResultSetListener::~SortedDynamicResultSetListener()
485 // XEventListener ( base of XDynamicResultSetListener )
488 SortedDynamicResultSetListener::disposing( const EventObject
& /*Source*/ )
490 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
493 mpOwner
->impl_disposing();
497 // XDynamicResultSetListener
500 SortedDynamicResultSetListener::notify( const ListEvent
& Changes
)
502 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
505 mpOwner
->impl_notify( Changes
);
511 SortedDynamicResultSetListener::impl_OwnerDies()
513 osl::Guard
< osl::Mutex
> aGuard( maMutex
);
517 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */