9784934cb9
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I7bfeef47abaf94cfb355db95c0fdb928ce36c0a6 Reviewed-on: https://gerrit.libreoffice.org/60232 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
271 lines
8.3 KiB
C++
271 lines
8.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
|
|
#include "cacheddynamicresultsetstub.hxx"
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
#include "cachedcontentresultsetstub.hxx"
|
|
#include <com/sun/star/ucb/ContentResultSetCapability.hpp>
|
|
#include <com/sun/star/ucb/SortedDynamicResultSetFactory.hpp>
|
|
#include <osl/diagnose.h>
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <ucbhelper/getcomponentcontext.hxx>
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
|
|
using namespace com::sun::star::lang;
|
|
using namespace com::sun::star::sdbc;
|
|
using namespace com::sun::star::ucb;
|
|
using namespace com::sun::star::uno;
|
|
|
|
|
|
CachedDynamicResultSetStub::CachedDynamicResultSetStub(
|
|
Reference< XDynamicResultSet > const & xOrigin
|
|
, const Reference< XComponentContext > & rxContext )
|
|
: DynamicResultSetWrapper( xOrigin, rxContext )
|
|
{
|
|
OSL_ENSURE( m_xContext.is(), "need Multiservicefactory to create stub" );
|
|
impl_init();
|
|
}
|
|
|
|
CachedDynamicResultSetStub::~CachedDynamicResultSetStub()
|
|
{
|
|
impl_deinit();
|
|
}
|
|
|
|
//virtual
|
|
void CachedDynamicResultSetStub
|
|
::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet )
|
|
{
|
|
DynamicResultSetWrapper::impl_InitResultSetOne( xResultSet );
|
|
OSL_ENSURE( m_xSourceResultOne.is(), "need source resultset" );
|
|
|
|
Reference< XResultSet > xStub(
|
|
new CachedContentResultSetStub( m_xSourceResultOne ) );
|
|
|
|
osl::Guard< osl::Mutex > aGuard( m_aMutex );
|
|
m_xMyResultOne = xStub;
|
|
}
|
|
|
|
//virtual
|
|
void CachedDynamicResultSetStub
|
|
::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet )
|
|
{
|
|
DynamicResultSetWrapper::impl_InitResultSetTwo( xResultSet );
|
|
OSL_ENSURE( m_xSourceResultTwo.is(), "need source resultset" );
|
|
|
|
Reference< XResultSet > xStub(
|
|
new CachedContentResultSetStub( m_xSourceResultTwo ) );
|
|
|
|
osl::Guard< osl::Mutex > aGuard( m_aMutex );
|
|
m_xMyResultTwo = xStub;
|
|
}
|
|
|
|
|
|
// XInterface methods.
|
|
void SAL_CALL CachedDynamicResultSetStub::acquire()
|
|
throw()
|
|
{
|
|
OWeakObject::acquire();
|
|
}
|
|
|
|
void SAL_CALL CachedDynamicResultSetStub::release()
|
|
throw()
|
|
{
|
|
OWeakObject::release();
|
|
}
|
|
|
|
Any SAL_CALL CachedDynamicResultSetStub
|
|
::queryInterface( const Type& rType )
|
|
{
|
|
//list all interfaces inclusive baseclasses of interfaces
|
|
|
|
Any aRet = DynamicResultSetWrapper::queryInterface( rType );
|
|
if( aRet.hasValue() )
|
|
return aRet;
|
|
|
|
aRet = cppu::queryInterface( rType,
|
|
static_cast< XTypeProvider* >( this )
|
|
, static_cast< XServiceInfo* >( this )
|
|
);
|
|
return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
|
|
}
|
|
|
|
|
|
// XTypeProvider methods.
|
|
|
|
//list all interfaces exclusive baseclasses
|
|
XTYPEPROVIDER_IMPL_5( CachedDynamicResultSetStub
|
|
, XTypeProvider
|
|
, XServiceInfo
|
|
, XDynamicResultSet
|
|
, XDynamicResultSetListener
|
|
, XSourceInitialization
|
|
);
|
|
|
|
|
|
// XServiceInfo methods.
|
|
|
|
OUString SAL_CALL CachedDynamicResultSetStub::getImplementationName()
|
|
{
|
|
return OUString( "com.sun.star.comp.ucb.CachedDynamicResultSetStub" );
|
|
}
|
|
|
|
sal_Bool SAL_CALL CachedDynamicResultSetStub::supportsService( const OUString& ServiceName )
|
|
{
|
|
return cppu::supportsService( this, ServiceName );
|
|
}
|
|
|
|
css::uno::Sequence< OUString > SAL_CALL CachedDynamicResultSetStub::getSupportedServiceNames()
|
|
{
|
|
return { CACHED_DRS_STUB_SERVICE_NAME };
|
|
}
|
|
|
|
|
|
|
|
// class CachedDynamicResultSetStubFactory
|
|
|
|
|
|
CachedDynamicResultSetStubFactory::CachedDynamicResultSetStubFactory(
|
|
const Reference< XComponentContext > & rxContext )
|
|
{
|
|
m_xContext = rxContext;
|
|
}
|
|
|
|
CachedDynamicResultSetStubFactory::~CachedDynamicResultSetStubFactory()
|
|
{
|
|
}
|
|
|
|
|
|
// CachedDynamicResultSetStubFactory XInterface methods.
|
|
void SAL_CALL CachedDynamicResultSetStubFactory::acquire()
|
|
throw()
|
|
{
|
|
OWeakObject::acquire();
|
|
}
|
|
|
|
void SAL_CALL CachedDynamicResultSetStubFactory::release()
|
|
throw()
|
|
{
|
|
OWeakObject::release();
|
|
}
|
|
|
|
css::uno::Any SAL_CALL CachedDynamicResultSetStubFactory::queryInterface( const css::uno::Type & rType )
|
|
{
|
|
css::uno::Any aRet = cppu::queryInterface( rType,
|
|
static_cast< XTypeProvider* >(this),
|
|
static_cast< XServiceInfo* >(this),
|
|
static_cast< XCachedDynamicResultSetStubFactory* >(this)
|
|
);
|
|
return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
|
|
}
|
|
|
|
// CachedDynamicResultSetStubFactory XTypeProvider methods.
|
|
|
|
|
|
XTYPEPROVIDER_IMPL_3( CachedDynamicResultSetStubFactory,
|
|
XTypeProvider,
|
|
XServiceInfo,
|
|
XCachedDynamicResultSetStubFactory );
|
|
|
|
|
|
// CachedDynamicResultSetStubFactory XServiceInfo methods.
|
|
|
|
XSERVICEINFO_COMMOM_IMPL( CachedDynamicResultSetStubFactory,
|
|
OUString( "com.sun.star.comp.ucb.CachedDynamicResultSetStubFactory" ) )
|
|
/// @throws css::uno::Exception
|
|
static css::uno::Reference< css::uno::XInterface >
|
|
CachedDynamicResultSetStubFactory_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory> & rSMgr )
|
|
{
|
|
css::lang::XServiceInfo* pX =
|
|
static_cast<css::lang::XServiceInfo*>(new CachedDynamicResultSetStubFactory( ucbhelper::getComponentContext(rSMgr) ));
|
|
return css::uno::Reference< css::uno::XInterface >::query( pX );
|
|
}
|
|
|
|
css::uno::Sequence< OUString >
|
|
CachedDynamicResultSetStubFactory::getSupportedServiceNames_Static()
|
|
{
|
|
css::uno::Sequence< OUString > aSNS { CACHED_DRS_STUB_FACTORY_NAME };
|
|
return aSNS;
|
|
}
|
|
|
|
// Service factory implementation.
|
|
|
|
|
|
ONE_INSTANCE_SERVICE_FACTORY_IMPL( CachedDynamicResultSetStubFactory );
|
|
|
|
|
|
// CachedDynamicResultSetStubFactory XCachedDynamicResultSetStubFactory methods.
|
|
|
|
|
|
//virtual
|
|
Reference< XDynamicResultSet > SAL_CALL CachedDynamicResultSetStubFactory
|
|
::createCachedDynamicResultSetStub(
|
|
const Reference< XDynamicResultSet > & Source )
|
|
{
|
|
Reference< XDynamicResultSet > xRet;
|
|
xRet = new CachedDynamicResultSetStub( Source, m_xContext );
|
|
return xRet;
|
|
}
|
|
|
|
//virtual
|
|
void SAL_CALL CachedDynamicResultSetStubFactory
|
|
::connectToCache(
|
|
const Reference< XDynamicResultSet > & Source
|
|
, const Reference< XDynamicResultSet > & TargetCache
|
|
, const Sequence< NumberedSortingInfo > & SortingInfo
|
|
, const Reference< XAnyCompareFactory > & CompareFactory
|
|
)
|
|
{
|
|
OSL_ENSURE( Source.is(), "a Source is needed" );
|
|
OSL_ENSURE( TargetCache.is(), "a TargetCache is needed" );
|
|
|
|
Reference< XDynamicResultSet > xSource( Source );
|
|
if( SortingInfo.getLength() &&
|
|
!( xSource->getCapabilities() & ContentResultSetCapability::SORTED )
|
|
)
|
|
{
|
|
Reference< XSortedDynamicResultSetFactory > xSortFactory;
|
|
try
|
|
{
|
|
xSortFactory = SortedDynamicResultSetFactory::create( m_xContext );
|
|
}
|
|
catch ( Exception const & )
|
|
{
|
|
}
|
|
|
|
if( xSortFactory.is() )
|
|
{
|
|
Reference< XDynamicResultSet > xSorted(
|
|
xSortFactory->createSortedDynamicResultSet(
|
|
Source, SortingInfo, CompareFactory ) );
|
|
if( xSorted.is() )
|
|
xSource = xSorted;
|
|
}
|
|
}
|
|
|
|
Reference< XDynamicResultSet > xStub(
|
|
new CachedDynamicResultSetStub( xSource, m_xContext ) );
|
|
|
|
Reference< XSourceInitialization > xTarget( TargetCache, UNO_QUERY );
|
|
OSL_ENSURE( xTarget.is(), "Target must have interface XSourceInitialization" );
|
|
|
|
xTarget->setSource( xStub );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|