Use correct object
[LibreOffice.git] / connectivity / source / drivers / postgresql / pq_array.hxx
blob589fe063d23494cf6c7b8b026f45209fe4009ed7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * Effective License of whole file:
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1, as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
20 * Parts "Copyright by Sun Microsystems, Inc" prior to August 2011:
22 * The Contents of this file are made available subject to the terms of
23 * the GNU Lesser General Public License Version 2.1
25 * Copyright: 2000 by Sun Microsystems, Inc.
27 * Contributor(s): Joerg Budischewski
29 * All parts contributed on or after August 2011:
31 * This Source Code Form is subject to the terms of the Mozilla Public
32 * License, v. 2.0. If a copy of the MPL was not distributed with this
33 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
35 ************************************************************************/
37 #pragma once
38 #include <cppuhelper/implbase.hxx>
39 #include <com/sun/star/sdbc/XArray.hpp>
41 #include "pq_connection.hxx"
42 #include <utility>
43 #include <vector>
45 namespace pq_sdbc_driver
48 class Array : public cppu::WeakImplHelper< css::sdbc::XArray >
50 std::vector< css::uno::Any > m_data;
51 css::uno::Reference< css::uno::XInterface > m_owner;
52 css::uno::Reference< css::script::XTypeConverter > m_tc;
53 rtl::Reference< comphelper::RefCountedMutex > m_xMutex;
55 public:
56 Array(
57 rtl::Reference< comphelper::RefCountedMutex > mutex,
58 std::vector< css::uno::Any > && data,
59 css::uno::Reference< css::uno::XInterface > owner,
60 css::uno::Reference< css::script::XTypeConverter > tc) :
61 m_data( std::move(data) ),
62 m_owner(std::move( owner )),
63 m_tc(std::move( tc )),
64 m_xMutex(std::move( mutex ))
67 public: // XArray
69 // Methods
70 virtual OUString SAL_CALL getBaseTypeName( ) override;
72 virtual sal_Int32 SAL_CALL getBaseType( ) override;
74 virtual css::uno::Sequence< css::uno::Any > SAL_CALL getArray(
75 const css::uno::Reference< css::container::XNameAccess >& typeMap ) override;
77 virtual css::uno::Sequence< css::uno::Any > SAL_CALL getArrayAtIndex(
78 sal_Int32 index,
79 sal_Int32 count,
80 const css::uno::Reference< css::container::XNameAccess >& typeMap ) override;
82 virtual css::uno::Reference< css::sdbc::XResultSet > SAL_CALL
83 getResultSet(
84 const css::uno::Reference< css::container::XNameAccess >& typeMap ) override;
86 virtual css::uno::Reference< css::sdbc::XResultSet > SAL_CALL getResultSetAtIndex(
87 sal_Int32 index,
88 sal_Int32 count,
89 const css::uno::Reference< css::container::XNameAccess >& typeMap ) override;
91 private:
92 void checkRange( sal_Int32 index, sal_Int32 count );
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */