summaryrefslogtreecommitdiff
path: root/dbaccess/source/filter/hsqldb/hsqlimport.hxx
blob: 12d0489cb852784ced544cbb511b0f6f545f5798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* -*- 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/.
 */

#ifndef INCLUDED_DBACCESS_SOURCE_FILTER_HSQLDB_HSQLIMPORT_HXX
#define INCLUDED_DBACCESS_SOURCE_FILTER_HSQLDB_HSQLIMPORT_HXX

#include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>

#include "rowinputbinary.hxx"
#include "hsqlbinarynode.hxx"
#include "columndef.hxx"

namespace dbahsql
{
class SAL_DLLPUBLIC_EXPORT HsqlImporter
{
private:
    css::uno::Reference<css::sdbc::XConnection>& m_rConnection;
    css::uno::Reference<css::embed::XStorage> m_xStorage;

protected:
    void insertRow(const std::vector<css::uno::Any>& xRows, const OUString& sTable,
                   const std::vector<ColumnDefinition>& rColTypes);
    void processTree(HsqlBinaryNode& rNode, HsqlRowInputStream& rStream,
                     const std::vector<ColumnDefinition>& rColTypes, const OUString& sTableName,
                     sal_Int32 nIndexCount);
    void parseTableRows(const std::vector<sal_Int32>& rIndexes,
                        const std::vector<ColumnDefinition>& rColTypes, const OUString& sTableName);

public:
    /**
     * @param rConnection reference to an sdbc connection. The migration will
     * perform to this connection.
     *
     * @param rStorage Storage where the HSQL database can be found. The schema
     * definition should be in file "script" in form of DDL SQL statements. The
     * data should be found in file "data". These are HSQLDB's own format.
     */
    HsqlImporter(css::uno::Reference<css::sdbc::XConnection>& rConnection,
                 const css::uno::Reference<css::embed::XStorage>& rStorage);

    /**
     * Migrate a HSQL database to another.
     */
    void importHsqlDatabase();
};
}

#endif // INCLUDED_DBACCESS_SOURCE_FILTER_HSQLDB_HSQLIMPORT_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */