Files
libreoffice/ucb/source/cacher/cacheddynamicresultsetstub.cxx

255 lines
7.8 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: clarify Option->Language UI option Patch contributed by Herbert Duerr http://svn.apache.org/viewvc?view=revision&revision=1173991 cws mba34issues01: #i117712#: fix several resource errors introduced by IAccessible2 implementation Patch contributed by Mathias Bauer http://svn.apache.org/viewvc?view=revision&revision=1173991 cws mba34issues01: #i117709#: add missing string resource Patch contributed by Mathias Bauer http://svn.apache.org/viewvc?view=revision&revision=1172348 cws mba34issues01: #i117716#: fix missing resources my removing unused code Patch contributed by Mathias Bauer http://svn.apache.org/viewvc?view=revision&revision=1172345 re-add Crystal, Tango, Oxygen icon theme listings. correct method signature Patch contributed by Jean-Louis 'Hans' Fuchs http://svn.apache.org/viewvc?view=revision&revision=1306725 i#119063 - correct serf integration Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1300521 i#119036 - adapt serf integration -- use transfer-encoding 'chunked' on HTTPS -- switch transfer-encoding between 'chunked' and none on 413 HTTP status code -- refactoring -- improve user experience of certification dialog - only shown once Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1299727 118569: Use whole certification chain for verification. Patch contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1295493 serf integration: improve credential input handling Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1294557 warning-free ucb/source/ucp/webdav Patch contributed by Pavel Janik http://svn.apache.org/viewvc?view=revision&revision=1294086 some refactoring to PROPPATCH and PROPFIND requests Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1293281 i#118569: Replace neon with serf Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1292832 http://svn.apache.org/viewvc?view=revision&revision=1292794 remove OS/2 conditionals for now. re-enable webdav unit tests.
2012-10-04 11:25:41 +01:00
/*
* 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 .
*/
2000-10-16 13:56:13 +00:00
2000-10-16 13:56:13 +00:00
#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>
2000-10-17 09:44:58 +00:00
#include <osl/diagnose.h>
#include <comphelper/processfactory.hxx>
2000-10-16 13:56:13 +00:00
using namespace com::sun::star::lang;
using namespace com::sun::star::sdbc;
using namespace com::sun::star::ucb;
using namespace com::sun::star::uno;
2000-10-16 13:56:13 +00:00
CachedDynamicResultSetStub::CachedDynamicResultSetStub(
Reference< XDynamicResultSet > xOrigin
, const Reference< XComponentContext > & rxContext )
: DynamicResultSetWrapper( xOrigin, rxContext )
2000-10-16 13:56:13 +00:00
{
OSL_ENSURE( m_xContext.is(), "need Multiservicefactory to create stub" );
2000-10-16 13:56:13 +00:00
impl_init();
}
CachedDynamicResultSetStub::~CachedDynamicResultSetStub()
{
impl_deinit();
}
//virtual
void SAL_CALL CachedDynamicResultSetStub
::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet )
{
DynamicResultSetWrapper::impl_InitResultSetOne( xResultSet );
2000-10-17 09:44:58 +00:00
OSL_ENSURE( m_xSourceResultOne.is(), "need source resultset" );
2000-10-16 13:56:13 +00:00
Reference< XResultSet > xStub(
new CachedContentResultSetStub( m_xSourceResultOne ) );
2000-10-17 09:44:58 +00:00
osl::Guard< osl::Mutex > aGuard( m_aMutex );
2000-10-16 13:56:13 +00:00
m_xMyResultOne = xStub;
}
//virtual
void SAL_CALL CachedDynamicResultSetStub
::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet )
{
DynamicResultSetWrapper::impl_InitResultSetTwo( xResultSet );
2000-10-17 09:44:58 +00:00
OSL_ENSURE( m_xSourceResultTwo.is(), "need source resultset" );
2000-10-16 13:56:13 +00:00
Reference< XResultSet > xStub(
new CachedContentResultSetStub( m_xSourceResultTwo ) );
2000-10-17 09:44:58 +00:00
osl::Guard< osl::Mutex > aGuard( m_aMutex );
2000-10-16 13:56:13 +00:00
m_xMyResultTwo = xStub;
}
2000-10-16 13:56:13 +00:00
// XInterface methods.
void SAL_CALL CachedDynamicResultSetStub::acquire()
throw()
{
OWeakObject::acquire();
}
void SAL_CALL CachedDynamicResultSetStub::release()
throw()
{
OWeakObject::release();
}
2000-10-16 13:56:13 +00:00
Any SAL_CALL CachedDynamicResultSetStub
::queryInterface( const Type& rType )
throw ( RuntimeException, std::exception )
2000-10-16 13:56:13 +00:00
{
//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 );
}
2000-10-16 13:56:13 +00:00
// XTypeProvider methods.
2000-10-16 13:56:13 +00:00
//list all interfaces exclusive baseclasses
XTYPEPROVIDER_IMPL_5( CachedDynamicResultSetStub
, XTypeProvider
, XServiceInfo
, XDynamicResultSet
, XDynamicResultSetListener
, XSourceInitialization
);
2000-10-16 13:56:13 +00:00
// XServiceInfo methods.
2000-10-16 13:56:13 +00:00
XSERVICEINFO_NOFACTORY_IMPL_1( CachedDynamicResultSetStub,
OUString( "com.sun.star.comp.ucb.CachedDynamicResultSetStub" ),
CACHED_DRS_STUB_SERVICE_NAME );
2000-10-16 13:56:13 +00:00
2000-10-16 13:56:13 +00:00
// class CachedDynamicResultSetStubFactory
2000-10-16 13:56:13 +00:00
CachedDynamicResultSetStubFactory::CachedDynamicResultSetStubFactory(
const Reference< XComponentContext > & rxContext )
2000-10-16 13:56:13 +00:00
{
m_xContext = rxContext;
2000-10-16 13:56:13 +00:00
}
CachedDynamicResultSetStubFactory::~CachedDynamicResultSetStubFactory()
{
}
2000-10-16 13:56:13 +00:00
// CachedDynamicResultSetStubFactory XInterface methods.
void SAL_CALL CachedDynamicResultSetStubFactory::acquire()
throw()
{
OWeakObject::acquire();
}
void SAL_CALL CachedDynamicResultSetStubFactory::release()
throw()
{
OWeakObject::release();
}
2000-10-16 13:56:13 +00:00
css::uno::Any SAL_CALL CachedDynamicResultSetStubFactory::queryInterface( const css::uno::Type & rType )
throw( css::uno::RuntimeException, std::exception )
{
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 );
}
2000-10-16 13:56:13 +00:00
// CachedDynamicResultSetStubFactory XTypeProvider methods.
2000-10-16 13:56:13 +00:00
XTYPEPROVIDER_IMPL_3( CachedDynamicResultSetStubFactory,
XTypeProvider,
XServiceInfo,
XCachedDynamicResultSetStubFactory );
2000-10-16 13:56:13 +00:00
// CachedDynamicResultSetStubFactory XServiceInfo methods.
2000-10-16 13:56:13 +00:00
XSERVICEINFO_IMPL_1_CTX( CachedDynamicResultSetStubFactory,
OUString( "com.sun.star.comp.ucb.CachedDynamicResultSetStubFactory" ),
CACHED_DRS_STUB_FACTORY_NAME );
2000-10-16 13:56:13 +00:00
2000-10-16 13:56:13 +00:00
// Service factory implementation.
2000-10-16 13:56:13 +00:00
ONE_INSTANCE_SERVICE_FACTORY_IMPL( CachedDynamicResultSetStubFactory );
2000-10-16 13:56:13 +00:00
// CachedDynamicResultSetStubFactory XCachedDynamicResultSetStubFactory methods.
2000-10-16 13:56:13 +00:00
//virtual
Reference< XDynamicResultSet > SAL_CALL CachedDynamicResultSetStubFactory
::createCachedDynamicResultSetStub(
const Reference< XDynamicResultSet > & Source )
throw( RuntimeException, std::exception )
2000-10-16 13:56:13 +00:00
{
Reference< XDynamicResultSet > xRet;
xRet = new CachedDynamicResultSetStub( Source, m_xContext );
2000-10-16 13:56:13 +00:00
return xRet;
}
//virtual
void SAL_CALL CachedDynamicResultSetStubFactory
::connectToCache(
const Reference< XDynamicResultSet > & Source
, const Reference< XDynamicResultSet > & TargetCache
, const Sequence< NumberedSortingInfo > & SortingInfo
, const Reference< XAnyCompareFactory > & CompareFactory
)
throw ( ListenerAlreadySetException
, AlreadyInitializedException
, RuntimeException, std::exception )
2000-10-16 13:56:13 +00:00
{
2000-10-17 09:44:58 +00:00
OSL_ENSURE( Source.is(), "a Source is needed" );
OSL_ENSURE( TargetCache.is(), "a TargetCache is needed" );
2000-10-16 13:56:13 +00:00
Reference< XDynamicResultSet > xSource( Source );
if( SortingInfo.getLength() &&
!( xSource->getCapabilities() & ContentResultSetCapability::SORTED )
)
{
Reference< XSortedDynamicResultSetFactory > xSortFactory;
try
{
xSortFactory = SortedDynamicResultSetFactory::create( m_xContext );
}
catch ( Exception const & )
{
}
2000-10-16 13:56:13 +00:00
if( xSortFactory.is() )
{
Reference< XDynamicResultSet > xSorted(
xSortFactory->createSortedDynamicResultSet(
Source, SortingInfo, CompareFactory ) );
if( xSorted.is() )
xSource = xSorted;
}
}
Reference< XDynamicResultSet > xStub(
new CachedDynamicResultSetStub( xSource, m_xContext ) );
2000-10-16 13:56:13 +00:00
Reference< XSourceInitialization > xTarget( TargetCache, UNO_QUERY );
2000-10-17 09:44:58 +00:00
OSL_ENSURE( xTarget.is(), "Target must have interface XSourceInitialization" );
2000-10-16 13:56:13 +00:00
xTarget->setSource( xStub );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */