1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef DBA_DATASUPPLIER_HXX
25 #define DBA_DATASUPPLIER_HXX
26 
27 #ifndef _RTL_REF_HXX_
28 #include <rtl/ref.hxx>
29 #endif
30 #ifndef _UCBHELPER_RESULTSET_HXX
31 #include <ucbhelper/resultset.hxx>
32 #endif
33 #ifndef _DBA_COREDATAACCESS_DOCUMENTCONTAINER_HXX_
34 #include "documentcontainer.hxx"
35 #endif
36 #include <memory>
37 
38 namespace dbaccess {
39 
40 struct DataSupplier_Impl;
41 class OContentHelper;
42 
43 class DataSupplier : public ucbhelper::ResultSetDataSupplier
44 {
45 	::std::auto_ptr<DataSupplier_Impl> m_pImpl;
46 
47 public:
48 	DataSupplier( const com::sun::star::uno::Reference<
49 				  	com::sun::star::lang::XMultiServiceFactory >& rxSMgr,
50 					const rtl::Reference< ODocumentContainer >& rxContent,
51 				  sal_Int32 nOpenMode );
52 	virtual ~DataSupplier();
53 
54 	virtual rtl::OUString queryContentIdentifierString( sal_uInt32 nIndex );
55 	virtual com::sun::star::uno::Reference<
56 				com::sun::star::ucb::XContentIdentifier >
57 	queryContentIdentifier( sal_uInt32 nIndex );
58 	virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent >
59 	queryContent( sal_uInt32 nIndex );
60 
61 	virtual sal_Bool getResult( sal_uInt32 nIndex );
62 
63 	virtual sal_uInt32 totalCount();
64 	virtual sal_uInt32 currentCount();
65 	virtual sal_Bool isCountFinal();
66 
67 	virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow >
68 	queryPropertyValues( sal_uInt32 nIndex  );
69 	virtual void releasePropertyValues( sal_uInt32 nIndex );
70 
71 	virtual void close();
72 
73 	virtual void validate()
74 		throw( com::sun::star::ucb::ResultSetException );
75 };
76 
77 }
78 
79 #endif // DBA_DATASUPPLIER_HXX
80