Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / ucb / source / cacher / cacheddynamicresultset.hxx
blobe5cb903564af32c7016b5718b031dfc02da1633a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #ifndef INCLUDED_UCB_SOURCE_CACHER_CACHEDDYNAMICRESULTSET_HXX
21 #define INCLUDED_UCB_SOURCE_CACHER_CACHEDDYNAMICRESULTSET_HXX
23 #include "dynamicresultsetwrapper.hxx"
24 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
25 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/lang/XTypeProvider.hpp>
28 #include <com/sun/star/ucb/XContentIdentifierMapping.hpp>
29 #include <com/sun/star/ucb/XCachedDynamicResultSetFactory.hpp>
30 #include <cppuhelper/implbase.hxx>
32 #define CACHED_DRS_SERVICE_NAME "com.sun.star.ucb.CachedDynamicResultSet"
33 #define CACHED_DRS_FACTORY_NAME "com.sun.star.ucb.CachedDynamicResultSetFactory"
36 class CachedDynamicResultSet
37 : public DynamicResultSetWrapper
38 , public css::lang::XTypeProvider
39 , public css::lang::XServiceInfo
41 css::uno::Reference< css::ucb::XContentIdentifierMapping >
42 m_xContentIdentifierMapping;
44 protected:
45 virtual void
46 impl_InitResultSetOne( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override;
47 virtual void
48 impl_InitResultSetTwo( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override;
50 public:
51 CachedDynamicResultSet( css::uno::Reference< css::ucb::XDynamicResultSet > const & xOrigin
52 , const css::uno::Reference< css::ucb::XContentIdentifierMapping > & xContentMapping
53 , const css::uno::Reference< css::uno::XComponentContext > & xContext );
55 virtual ~CachedDynamicResultSet() override;
58 // XInterface
59 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
60 virtual void SAL_CALL acquire()
61 throw() override;
62 virtual void SAL_CALL release()
63 throw() override;
65 // XTypeProvider
67 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
68 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
70 // XServiceInfo
71 virtual OUString SAL_CALL getImplementationName() override;
72 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
73 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
75 // own methods ( inherited )
77 virtual void
78 impl_disposing( const css::lang::EventObject& Source ) override;
82 class CachedDynamicResultSetFactory final :
83 public cppu::WeakImplHelper<
84 css::lang::XServiceInfo,
85 css::ucb::XCachedDynamicResultSetFactory>
87 css::uno::Reference< css::uno::XComponentContext > m_xContext;
89 public:
91 CachedDynamicResultSetFactory(
92 const css::uno::Reference< css::uno::XComponentContext > & xContext);
94 virtual ~CachedDynamicResultSetFactory() override;
96 // XServiceInfo
97 virtual OUString SAL_CALL getImplementationName() override;
98 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
99 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
101 static OUString getImplementationName_Static();
102 static css::uno::Sequence< OUString > getSupportedServiceNames_Static();
104 static css::uno::Reference< css::lang::XSingleServiceFactory >
105 createServiceFactory( const css::uno::Reference<
106 css::lang::XMultiServiceFactory >& rxServiceMgr );
108 // XCachedDynamicResultSetFactory
110 virtual css::uno::Reference< css::ucb::XDynamicResultSet > SAL_CALL
111 createCachedDynamicResultSet(
112 const css::uno::Reference< css::ucb::XDynamicResultSet > & SourceStub
113 , const css::uno::Reference< css::ucb::XContentIdentifierMapping > & ContentIdentifierMapping
114 ) override;
117 #endif
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */