Files
libreoffice/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx

382 lines
17 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 15:18:56 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 15:18:56 +00:00
*
* $RCSfile: DDatabaseMetaData.cxx,v $
2008-10-01 12:28:29 +00:00
* $Revision: 1.35.56.1 $
2000-09-18 15:18:56 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 15:18:56 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 15:18:56 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_connectivity.hxx"
2000-09-20 05:52:26 +00:00
2000-10-25 12:20:55 +00:00
#ifndef _CONNECTIVITY_DBASE_ODbaseDatabaseMetaData_HXX_
2000-09-18 15:18:56 +00:00
#include "dbase/DDatabaseMetaData.hxx"
#endif
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdbc/ResultSetType.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
2000-10-30 07:07:33 +00:00
#ifndef _COM_SUN_STAR_BEANS_XPropertySet_HPP_
#include <com/sun/star/beans/XPropertySet.hpp>
2000-09-18 15:18:56 +00:00
#endif
#include <com/sun/star/sdbc/ResultSetConcurrency.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XIndexesSupplier.hpp>
#include <tools/urlobj.hxx>
2001-03-28 10:32:43 +00:00
#include "FDatabaseMetaDataResultSet.hxx"
2000-09-18 15:18:56 +00:00
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include "dbase/DIndex.hxx"
2001-07-24 12:18:40 +00:00
#include "connectivity/FValue.hxx"
#include <comphelper/extract.hxx>
2001-05-18 07:51:34 +00:00
#include <comphelper/types.hxx>
2001-09-18 12:14:31 +00:00
#include <ucbhelper/content.hxx>
2000-09-18 15:18:56 +00:00
2001-05-18 07:51:34 +00:00
using namespace ::comphelper;
2000-09-18 15:18:56 +00:00
using namespace connectivity::dbase;
2001-03-30 13:01:50 +00:00
using namespace connectivity;
2000-09-18 15:18:56 +00:00
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;
2000-09-18 15:18:56 +00:00
2001-03-30 13:01:50 +00:00
ODbaseDatabaseMetaData::ODbaseDatabaseMetaData(::connectivity::file::OConnection* _pCon) :ODatabaseMetaData(_pCon)
2000-09-18 15:18:56 +00:00
{
}
// -------------------------------------------------------------------------
ODbaseDatabaseMetaData::~ODbaseDatabaseMetaData()
{
}
// -------------------------------------------------------------------------
Reference< XResultSet > ODbaseDatabaseMetaData::impl_getTypeInfo_throw( )
2000-09-18 15:18:56 +00:00
{
::osl::MutexGuard aGuard( m_aMutex );
::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTypeInfo);
Reference< XResultSet > xRef = pResult;
static ODatabaseMetaDataResultSet::ORows aRows;
if(aRows.empty())
{
ODatabaseMetaDataResultSet::ORow aRow;
aRow.reserve(18);
aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue());
2001-08-29 11:21:08 +00:00
aRow.push_back(new ORowSetValueDecorator(::rtl::OUString::createFromAscii("CHAR")));
aRow.push_back(new ORowSetValueDecorator(DataType::CHAR));
aRow.push_back(new ORowSetValueDecorator((sal_Int32)254));
aRow.push_back(ODatabaseMetaDataResultSet::getQuoteValue());
aRow.push_back(ODatabaseMetaDataResultSet::getQuoteValue());
2001-08-29 11:21:08 +00:00
aRow.push_back(new ORowSetValueDecorator(::rtl::OUString::createFromAscii("length")));
aRow.push_back(new ORowSetValueDecorator((sal_Int32)ColumnValue::NULLABLE));
aRow.push_back(ODatabaseMetaDataResultSet::get1Value());
2001-08-29 11:21:08 +00:00
aRow.push_back(new ORowSetValueDecorator((sal_Int32)ColumnSearch::FULL));
aRow.push_back(ODatabaseMetaDataResultSet::get1Value());
aRow.push_back(ODatabaseMetaDataResultSet::get0Value());
aRow.push_back(ODatabaseMetaDataResultSet::get0Value());
aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue());
aRow.push_back(ODatabaseMetaDataResultSet::get0Value());
aRow.push_back(ODatabaseMetaDataResultSet::get0Value());
aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue());
aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue());
2001-08-29 11:21:08 +00:00
aRow.push_back(new ORowSetValueDecorator((sal_Int32)10));
aRows.push_back(aRow);
2001-08-29 11:21:08 +00:00
aRow[1] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("VARCHAR"));
aRow[2] = new ORowSetValueDecorator(DataType::VARCHAR);
aRow[4] = ODatabaseMetaDataResultSet::getQuoteValue();
aRow[5] = ODatabaseMetaDataResultSet::getQuoteValue();
2001-08-29 11:21:08 +00:00
aRow[6] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("length"));
aRows.push_back(aRow);
2001-08-29 11:21:08 +00:00
aRow[1] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("LONGVARCHAR"));
aRow[2] = new ORowSetValueDecorator(DataType::LONGVARCHAR);
aRow[3] = new ORowSetValueDecorator((sal_Int32)65535);
aRow[6] = new ORowSetValueDecorator();
aRows.push_back(aRow);
2001-08-29 11:21:08 +00:00
aRow[1] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("DATE"));
aRow[2] = new ORowSetValueDecorator(DataType::DATE);
aRow[3] = new ORowSetValueDecorator((sal_Int32)10);
aRows.push_back(aRow);
aRow[1] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("BOOLEAN"));
2001-08-29 11:21:08 +00:00
aRow[2] = new ORowSetValueDecorator(DataType::BIT);
aRow[3] = ODatabaseMetaDataResultSet::get1Value();
aRow[4] = ODatabaseMetaDataResultSet::getEmptyValue();
aRow[5] = ODatabaseMetaDataResultSet::getEmptyValue();
2001-08-29 11:21:08 +00:00
aRow[6] = new ORowSetValueDecorator(::rtl::OUString());
aRow[9] = ODatabaseMetaDataResultSet::getBasicValue();
aRows.push_back(aRow);
2001-08-29 11:21:08 +00:00
aRow[1] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("DECIMAL"));
aRow[2] = new ORowSetValueDecorator(DataType::DECIMAL);
aRow[3] = new ORowSetValueDecorator((sal_Int32)20);
aRow[6] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("length,scale"));
aRow[15] = new ORowSetValueDecorator((sal_Int32)20);
aRows.push_back(aRow);
}
2000-09-18 15:18:56 +00:00
pResult->setRows(aRows);
return xRef;
}
// -------------------------------------------------------------------------
Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getColumns(
const Any& /*catalog*/, const ::rtl::OUString& /*schemaPattern*/, const ::rtl::OUString& tableNamePattern,
2000-09-18 15:18:56 +00:00
const ::rtl::OUString& columnNamePattern ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
2000-11-03 13:21:22 +00:00
Reference< XTablesSupplier > xTables = m_pConnection->createCatalog();
2000-09-18 15:18:56 +00:00
if(!xTables.is())
2000-11-03 13:21:22 +00:00
throw SQLException();
2000-09-18 15:18:56 +00:00
Reference< XNameAccess> xNames = xTables->getTables();
if(!xNames.is())
2000-11-03 13:21:22 +00:00
throw SQLException();
2000-09-18 15:18:56 +00:00
ODatabaseMetaDataResultSet::ORows aRows;
ODatabaseMetaDataResultSet::ORow aRow(19);
2001-03-15 12:07:57 +00:00
2001-08-29 11:21:08 +00:00
aRow[10] = new ORowSetValueDecorator((sal_Int32)10);
2000-09-18 15:18:56 +00:00
Sequence< ::rtl::OUString> aTabNames(xNames->getElementNames());
const ::rtl::OUString* pTabBegin = aTabNames.getConstArray();
const ::rtl::OUString* pTabEnd = pTabBegin + aTabNames.getLength();
for(;pTabBegin != pTabEnd;++pTabBegin)
{
if(match(tableNamePattern,*pTabBegin,'\0'))
{
Reference< XColumnsSupplier> xTable;
2001-02-14 06:22:50 +00:00
::cppu::extractInterface(xTable,xNames->getByName(*pTabBegin));
OSL_ENSURE(xTable.is(),"Table not found! Normallya exception had to be thrown here!");
2001-08-29 11:21:08 +00:00
aRow[3] = new ORowSetValueDecorator(*pTabBegin);
2000-09-18 15:18:56 +00:00
Reference< XNameAccess> xColumns = xTable->getColumns();
if(!xColumns.is())
2000-11-03 13:21:22 +00:00
throw SQLException();
2000-09-18 15:18:56 +00:00
Sequence< ::rtl::OUString> aColNames(xColumns->getElementNames());
const ::rtl::OUString* pBegin = aColNames.getConstArray();
const ::rtl::OUString* pEnd = pBegin + aColNames.getLength();
2000-10-30 07:07:33 +00:00
Reference< XPropertySet> xColumn;
2000-09-18 15:18:56 +00:00
for(sal_Int32 i=1;pBegin != pEnd;++pBegin,++i)
{
if(match(columnNamePattern,*pBegin,'\0'))
{
2001-08-29 11:21:08 +00:00
aRow[4] = new ORowSetValueDecorator(*pBegin);
2000-09-18 15:18:56 +00:00
2001-02-14 06:22:50 +00:00
::cppu::extractInterface(xColumn,xColumns->getByName(*pBegin));
OSL_ENSURE(xColumn.is(),"Columns contains a column who isn't a fastpropertyset!");
2001-08-29 11:21:08 +00:00
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((sal_Int32)aRow[5]->getValue())
2000-09-18 15:18:56 +00:00
{
case DataType::CHAR:
case DataType::VARCHAR:
2001-08-29 11:21:08 +00:00
aRow[16] = new ORowSetValueDecorator((sal_Int32)254);
2000-09-18 15:18:56 +00:00
break;
case DataType::LONGVARCHAR:
2001-08-29 11:21:08 +00:00
aRow[16] = new ORowSetValueDecorator((sal_Int32)65535);
2000-09-18 15:18:56 +00:00
break;
default:
2001-08-29 11:21:08 +00:00
aRow[16] = new ORowSetValueDecorator((sal_Int32)0);
2000-09-18 15:18:56 +00:00
}
2001-08-29 11:21:08 +00:00
aRow[17] = new ORowSetValueDecorator(i);
switch(sal_Int32(aRow[11]->getValue()))
2000-09-18 15:18:56 +00:00
{
case ColumnValue::NO_NULLS:
2001-08-29 11:21:08 +00:00
aRow[18] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("NO"));
2000-09-18 15:18:56 +00:00
break;
case ColumnValue::NULLABLE:
2001-08-29 11:21:08 +00:00
aRow[18] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("YES"));
2000-09-18 15:18:56 +00:00
break;
default:
2001-08-29 11:21:08 +00:00
aRow[18] = new ORowSetValueDecorator(::rtl::OUString());
2000-09-18 15:18:56 +00:00
}
aRows.push_back(aRow);
}
}
}
}
::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eColumns);
2000-11-03 13:21:22 +00:00
Reference< XResultSet > xRef = pResult;
2000-09-18 15:18:56 +00:00
pResult->setRows(aRows);
return xRef;
}
// -------------------------------------------------------------------------
Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getIndexInfo(
const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const ::rtl::OUString& table,
sal_Bool unique, sal_Bool /*approximate*/ ) throw(SQLException, RuntimeException)
2000-09-18 15:18:56 +00:00
{
::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);
2001-03-15 12:07:57 +00:00
2001-08-29 11:21:08 +00:00
aRow[5] = new ORowSetValueDecorator(::rtl::OUString());
aRow[10] = new ORowSetValueDecorator(::rtl::OUString::createFromAscii("A"));
2000-09-18 15:18:56 +00:00
Reference< XIndexesSupplier> xTable;
2001-02-14 06:22:50 +00:00
::cppu::extractInterface(xTable,xNames->getByName(table));
2001-08-29 11:21:08 +00:00
aRow[3] = new ORowSetValueDecorator(table);
aRow[7] = new ORowSetValueDecorator((sal_Int32)3);
2000-09-18 15:18:56 +00:00
Reference< XNameAccess> xIndexes = xTable->getIndexes();
if(!xIndexes.is())
2001-02-14 06:22:50 +00:00
throw SQLException();
2000-09-18 15:18:56 +00:00
Sequence< ::rtl::OUString> aIdxNames(xIndexes->getElementNames());
const ::rtl::OUString* pBegin = aIdxNames.getConstArray();
const ::rtl::OUString* pEnd = pBegin + aIdxNames.getLength();
2000-10-30 07:07:33 +00:00
Reference< XPropertySet> xIndex;
2000-09-18 15:18:56 +00:00
for(;pBegin != pEnd;++pBegin)
{
2001-02-14 06:22:50 +00:00
::cppu::extractInterface(xIndex,xIndexes->getByName(*pBegin));
OSL_ENSURE(xIndex.is(),"Indexes contains a column who isn't a fastpropertyset!");
2000-09-18 15:18:56 +00:00
2001-05-14 10:42:44 +00:00
if(unique && !getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE))))
2000-09-18 15:18:56 +00:00
continue;
2001-08-29 11:21:08 +00:00
aRow[4] = new ORowSetValueDecorator(getBOOL(xIndex->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE))));
aRow[6] = new ORowSetValueDecorator(*pBegin);
2000-09-18 15:18:56 +00:00
Reference< XUnoTunnel> xTunnel(xIndex,UNO_QUERY);
2000-09-18 15:18:56 +00:00
if(xTunnel.is())
{
ODbaseIndex* pIndex = reinterpret_cast< ODbaseIndex* >( xTunnel->getSomething(ODbaseIndex::getUnoTunnelImplementationId()) );
2000-09-18 15:18:56 +00:00
if(pIndex)
{
2001-08-29 11:21:08 +00:00
aRow[11] = new ORowSetValueDecorator((sal_Int32)pIndex->getHeader().db_maxkeys);
aRow[12] = new ORowSetValueDecorator((sal_Int32)pIndex->getHeader().db_pagecount);
2000-09-18 15:18:56 +00:00
}
}
Reference<XColumnsSupplier> xColumnsSup(xIndex,UNO_QUERY);
Reference< XNameAccess> xColumns = xColumnsSup->getColumns();
Sequence< ::rtl::OUString> aColNames(xColumns->getElementNames());
const ::rtl::OUString* pColBegin = aColNames.getConstArray();
const ::rtl::OUString* pColEnd = pColBegin + aColNames.getLength();
2000-10-30 07:07:33 +00:00
Reference< XPropertySet> xColumn;
2000-09-18 15:18:56 +00:00
for(sal_Int32 j=1;pColBegin != pColEnd;++pColBegin,++j)
{
2001-02-14 06:22:50 +00:00
// xColumns->getByName(*pColBegin) >>= xColumn;
2001-08-29 11:21:08 +00:00
aRow[8] = new ORowSetValueDecorator(j);
aRow[9] = new ORowSetValueDecorator(*pColBegin);
2000-09-18 15:18:56 +00:00
aRows.push_back(aRow);
}
}
::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eIndexInfo);
Reference< XResultSet > xRef = pResult;
2000-09-18 15:18:56 +00:00
pResult->setRows(aRows);
return xRef;
}
// -------------------------------------------------------------------------
2000-10-05 13:39:02 +00:00
::rtl::OUString SAL_CALL ODbaseDatabaseMetaData::getURL( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("sdbc:dbase:")) + m_pConnection->getURL();
2000-10-05 13:39:02 +00:00
}
2000-10-25 12:20:55 +00:00
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxBinaryLiteralLength( ) throw(SQLException, RuntimeException)
{
return STRING_MAXLEN;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxCharLiteralLength( ) throw(SQLException, RuntimeException)
{
return 254;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnNameLength( ) throw(SQLException, RuntimeException)
{
return 10;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInIndex( ) throw(SQLException, RuntimeException)
{
return 1;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInTable( ) throw(SQLException, RuntimeException)
{
return 128;
}
2001-02-14 06:22:50 +00:00
// -----------------------------------------------------------------------------
2001-03-28 10:32:43 +00:00
sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithAddColumn( ) throw(SQLException, RuntimeException)
{
return sal_True;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithDropColumn( ) throw(SQLException, RuntimeException)
{
return sal_False;
}
// -----------------------------------------------------------------------------
2001-07-17 09:38:27 +00:00
sal_Bool SAL_CALL ODbaseDatabaseMetaData::isReadOnly( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
2001-03-28 10:32:43 +00:00
2001-09-18 12:14:31 +00:00
sal_Bool bReadOnly = sal_False;
static ::rtl::OUString sReadOnly = ::rtl::OUString::createFromAscii("IsReadOnly");
::ucbhelper::Content aFile(m_pConnection->getContent(),Reference< XCommandEnvironment >());
2001-09-18 12:14:31 +00:00
aFile.getPropertyValue(sReadOnly) >>= bReadOnly;
return bReadOnly;
2001-07-17 09:38:27 +00:00
}
// -----------------------------------------------------------------------------
2008-10-01 12:28:29 +00:00
sal_Bool ODbaseDatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw( )
{
return sal_True;
}
// -----------------------------------------------------------------------------
sal_Bool ODbaseDatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw( )
{
return sal_True;
}
// -----------------------------------------------------------------------------
2000-10-25 12:20:55 +00:00
2000-09-18 15:18:56 +00:00