summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
blob: 5192b308d19dd1054a2bcef2187fd70d465e594d (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/* -*- 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/.
 *
 * 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 .
 */

#include <dbase/DDatabaseMetaData.hxx>
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
#include <com/sun/star/sdbc/ColumnSearch.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XIndexesSupplier.hpp>
#include <FDatabaseMetaDataResultSet.hxx>
#include <dbase/DIndex.hxx>
#include <connectivity/FValue.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/types.hxx>
#include <ucbhelper/content.hxx>

using namespace ::comphelper;
using namespace connectivity::dbase;
using namespace connectivity;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::ucb;
using namespace ::com::sun::star::lang;

ODbaseDatabaseMetaData::ODbaseDatabaseMetaData(::connectivity::file::OConnection* _pCon)    :ODatabaseMetaData(_pCon)
{
}

ODbaseDatabaseMetaData::~ODbaseDatabaseMetaData()
{
}

Reference< XResultSet > ODbaseDatabaseMetaData::impl_getTypeInfo_throw(  )
{
    rtl::Reference<::connectivity::ODatabaseMetaDataResultSet> pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTypeInfo);

    ODatabaseMetaDataResultSet::ORows aRows;
    aRows.reserve(10);
    ODatabaseMetaDataResultSet::ORow aRow
    {
        ODatabaseMetaDataResultSet::getEmptyValue(),
        new ORowSetValueDecorator(OUString("VARCHAR")),
        new ORowSetValueDecorator(DataType::VARCHAR),
        new ORowSetValueDecorator(sal_Int32(254)),
        ODatabaseMetaDataResultSet::getQuoteValue(),
        ODatabaseMetaDataResultSet::getQuoteValue(),
        new ORowSetValueDecorator(OUString("length")),
        new ORowSetValueDecorator(sal_Int32(ColumnValue::NULLABLE)),
        ODatabaseMetaDataResultSet::get1Value(),
        new ORowSetValueDecorator(sal_Int32(ColumnSearch::FULL)),
        ODatabaseMetaDataResultSet::get1Value(),
        ODatabaseMetaDataResultSet::get0Value(),
        ODatabaseMetaDataResultSet::get0Value(),
        new ORowSetValueDecorator(OUString("C")),
        ODatabaseMetaDataResultSet::get0Value(),
        ODatabaseMetaDataResultSet::get0Value(),
        ODatabaseMetaDataResultSet::getEmptyValue(),
        ODatabaseMetaDataResultSet::getEmptyValue(),
        new ORowSetValueDecorator(sal_Int32(10))
    };

    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("LONGVARCHAR"));
    aRow[2] = new ORowSetValueDecorator(DataType::LONGVARCHAR);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(2147483647));
    aRow[6] = new ORowSetValueDecorator();
    aRow[13] = new ORowSetValueDecorator(OUString("M"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("DATE"));
    aRow[2] = new ORowSetValueDecorator(DataType::DATE);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(10));
    aRow[13] = new ORowSetValueDecorator(OUString("D"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("BOOLEAN"));
    aRow[2] = new ORowSetValueDecorator(DataType::BIT);
    aRow[3] = ODatabaseMetaDataResultSet::get1Value();
    aRow[4] = ODatabaseMetaDataResultSet::getEmptyValue();
    aRow[5] = ODatabaseMetaDataResultSet::getEmptyValue();
    aRow[6] = new ORowSetValueDecorator(OUString());
    aRow[9] = ODatabaseMetaDataResultSet::getBasicValue();
    aRow[13] = new ORowSetValueDecorator(OUString("L"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("DOUBLE"));
    aRow[2] = new ORowSetValueDecorator(DataType::DOUBLE);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(8));
    aRow[13] = new ORowSetValueDecorator(OUString("B"));
    aRows.push_back(aRow);

    aRow[11] = new ORowSetValueDecorator(ORowSetValue(true));
    aRow[13] = new ORowSetValueDecorator(OUString("Y"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("TIMESTAMP"));
    aRow[2] = new ORowSetValueDecorator(DataType::TIMESTAMP);
    aRow[11] = new ORowSetValueDecorator(ORowSetValue(false));
    aRow[13] = new ORowSetValueDecorator(OUString("T"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("INTEGER"));
    aRow[2] = new ORowSetValueDecorator(DataType::INTEGER);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(10));
    aRow[13] = new ORowSetValueDecorator(OUString("I"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("DECIMAL"));
    aRow[2] = new ORowSetValueDecorator(DataType::DECIMAL);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(20));
    aRow[6] = new ORowSetValueDecorator(OUString("length,scale"));
    aRow[13] = new ORowSetValueDecorator(OUString("F"));
    aRows.push_back(aRow);

    aRow[1] = new ORowSetValueDecorator(OUString("NUMERIC"));
    aRow[2] = new ORowSetValueDecorator(DataType::DECIMAL);
    aRow[3] = new ORowSetValueDecorator(sal_Int32(16));
    aRow[13] = new ORowSetValueDecorator(OUString("N"));
    aRow[15] = new ORowSetValueDecorator(sal_Int32(16));
    aRows.push_back(aRow);

    pResult->setRows(std::move(aRows));
    return pResult;
}

Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getColumns(
    const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& tableNamePattern,
        const OUString& columnNamePattern )
{
    ::osl::MutexGuard aGuard( m_aMutex );

    Reference< XTablesSupplier > xTables = m_pConnection->createCatalog();
    if(!xTables.is())
        throw SQLException();

    Reference< XNameAccess> xNames = xTables->getTables();
    if(!xNames.is())
        throw SQLException();

    ODatabaseMetaDataResultSet::ORows aRows;
    ODatabaseMetaDataResultSet::ORow aRow(19);

    try
    {
        aRow[10] = new ORowSetValueDecorator(sal_Int32(10));
        for (auto& tabName : xNames->getElementNames())
        {
            if (match(tableNamePattern, tabName, '\0'))
            {
                Reference<XColumnsSupplier> xTable(xNames->getByName(tabName), css::uno::UNO_QUERY);
                OSL_ENSURE(xTable.is(),"Table not found! Normally an exception had to be thrown here!");
                aRow[3] = new ORowSetValueDecorator(tabName);

                Reference< XNameAccess> xColumns = xTable->getColumns();
                if(!xColumns.is())
                    throw SQLException();

                Reference< XPropertySet> xColumn;
                sal_Int32 i = 0;
                for (auto& colName : xColumns->getElementNames())
                {
                    ++i;
                    if (match(columnNamePattern, colName, '\0'))
                    {
                        aRow[4] = new ORowSetValueDecorator(colName);

                        xColumn.set(xColumns->getByName(colName), css::uno::UNO_QUERY);
                        OSL_ENSURE(xColumn.is(),"Columns contains a column who isn't a fastpropertyset!");
                        aRow[5] = new ORowSetValueDecorator(getINT32(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE))));
                        aRow[6] = new ORowSetValueDecorator(getString(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME))));
                        aRow[7] = new ORowSetValueDecorator(getINT32(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PRECISION))));
                        aRow[9] = new ORowSetValueDecorator(getINT32(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCALE))));
                        aRow[11] = new ORowSetValueDecorator(getINT32(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISNULLABLE))));
                        aRow[13] = new ORowSetValueDecorator(getString(xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DEFAULTVALUE))));
                        switch(aRow[5]->getValue().getInt32())
                        {
                        case DataType::CHAR:
                        case DataType::VARCHAR:
                            aRow[16] = new ORowSetValueDecorator(sal_Int32(254));
                            break;
                        case DataType::LONGVARCHAR:
                            aRow[16] = new ORowSetValueDecorator(sal_Int32(65535));
                            break;
                        default:
                            aRow[16] = new ORowSetValueDecorator(sal_Int32(0));
                        }
                        aRow[17] = new ORowSetValueDecorator(i);
                        switch(aRow[11]->getValue().getInt32())
                        {
                        case ColumnValue::NO_NULLS:
                            aRow[18] = new ORowSetValueDecorator(OUString("NO"));
                            break;
                        case ColumnValue::NULLABLE:
                            aRow[18] = new ORowSetValueDecorator(OUString("YES"));
                            break;
                        default:
                            aRow[18] = new ORowSetValueDecorator(OUString());
                        }
                        aRows.push_back(aRow);
                    }
                }
            }
        }
    }
    catch (const WrappedTargetException& e)
    {
        SQLException aSql;
        if (e.TargetException >>= aSql)
            throw aSql;
        throw WrappedTargetRuntimeException(e.Message, e.Context, e.TargetException);
    }
    rtl::Reference<::connectivity::ODatabaseMetaDataResultSet> pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eColumns);
    pResult->setRows(std::move(aRows));

    return pResult;
}

Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getIndexInfo(
    const Any& /*catalog*/, const OUString& /*schema*/, const OUString& table,
        sal_Bool unique, sal_Bool /*approximate*/ )
{
    ::osl::MutexGuard aGuard( m_aMutex );

    Reference< XTablesSupplier > xTables = m_pConnection->createCatalog();
    if(!xTables.is())
                throw SQLException();

    Reference< XNameAccess> xNames = xTables->getTables();
    if(!xNames.is())
                throw SQLException();

    ODatabaseMetaDataResultSet::ORows aRows;
    ODatabaseMetaDataResultSet::ORow aRow(14);

    aRow[5]     = new ORowSetValueDecorator(OUString());
    aRow[10]    = new ORowSetValueDecorator(OUString("A"));

    Reference< XIndexesSupplier> xTable(
        xNames->getByName(table), css::uno::UNO_QUERY);
    aRow[3] = new ORowSetValueDecorator(table);
    aRow[7] = new ORowSetValueDecorator(sal_Int32(3));

    Reference< XNameAccess> xIndexes = xTable->getIndexes();
    if(!xIndexes.is())
        throw SQLException();

    Reference< XPropertySet> xIndex;
    for (auto& idxName : xIndexes->getElementNames())
    {
        xIndex.set(xIndexes->getByName(idxName), css::uno::UNO_QUERY);
        OSL_ENSURE(xIndex.is(),"Indexes contains a column who isn't a fastpropertyset!");

        if(unique && !getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE))))
            continue;
        aRow[4] = new ORowSetValueDecorator(ORowSetValue(getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE)))));
        aRow[6] = new ORowSetValueDecorator(idxName);

        auto pIndex = dynamic_cast<ODbaseIndex*>(xIndex.get());
        if(pIndex)
        {
            aRow[11] = new ORowSetValueDecorator(static_cast<sal_Int32>(pIndex->getHeader().db_maxkeys));
            aRow[12] = new ORowSetValueDecorator(static_cast<sal_Int32>(pIndex->getHeader().db_pagecount));
        }

        Reference<XColumnsSupplier> xColumnsSup(xIndex,UNO_QUERY);
        Reference< XNameAccess> xColumns = xColumnsSup->getColumns();

        sal_Int32 j = 0;
        for (auto& colName : xColumns->getElementNames())
        {
            aRow[8] = new ORowSetValueDecorator(++j);
            aRow[9] = new ORowSetValueDecorator(colName);
            aRows.push_back(aRow);
        }
    }

    rtl::Reference<::connectivity::ODatabaseMetaDataResultSet> pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eIndexInfo);
    pResult->setRows(std::move(aRows));
    return pResult;
}

OUString SAL_CALL ODbaseDatabaseMetaData::getURL(  )
{
    ::osl::MutexGuard aGuard( m_aMutex );
    return "sdbc:dbase:" + m_pConnection->getURL();
}

sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxBinaryLiteralLength(  )
{
    return SAL_MAX_INT32;
}

sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxCharLiteralLength(  )
{
    return 254;
}

sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnNameLength(  )
{
    return 10;
}

sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInIndex(  )
{
    return 1;
}

sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInTable(  )
{
    return 128;
}

sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithAddColumn(  )
{
    return true;
}

sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithDropColumn(  )
{
    return false;
}

sal_Bool SAL_CALL ODbaseDatabaseMetaData::isReadOnly(  )
{
    ::osl::MutexGuard aGuard( m_aMutex );

    bool bReadOnly = false;
    ::ucbhelper::Content aFile(m_pConnection->getContent(),Reference< XCommandEnvironment >(), comphelper::getProcessComponentContext());
    aFile.getPropertyValue("IsReadOnly") >>= bReadOnly;

    return bReadOnly;
}

bool ODbaseDatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw(  )
{
    return true;
}

bool ODbaseDatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw(  )
{
    return true;
}


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