Files
libreoffice/connectivity/source/sdbcx/VCatalog.cxx
Brij Mohan Lal Srivastava d32be3ace8 fdo#86023 - O[U]String needs a 'clear' method
Added clear() method to OString and OUString class, Updated appropriate call-sites.

Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-11-14 09:20:38 +01:00

232 lines
5.7 KiB
C++

/* -*- 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 <connectivity/sdbcx/VCatalog.hxx>
#include <connectivity/sdbcx/VCollection.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
#include <connectivity/sdbcx/VDescriptor.hxx>
#include "TConnection.hxx"
#include <comphelper/uno3.hxx>
#include <connectivity/dbtools.hxx>
using namespace connectivity;
using namespace connectivity::sdbcx;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
IMPLEMENT_SERVICE_INFO(OCatalog,"com.sun.star.comp.connectivity.OCatalog","com.sun.star.sdbcx.DatabaseDefinition")
OCatalog::OCatalog(const Reference< XConnection> &_xConnection) : OCatalog_BASE(m_aMutex)
,connectivity::OSubComponent<OCatalog, OCatalog_BASE>(_xConnection, this)
,m_pTables(NULL)
,m_pViews(NULL)
,m_pGroups(NULL)
,m_pUsers(NULL)
{
try
{
m_xMetaData = _xConnection->getMetaData();
}
catch(const Exception&)
{
OSL_FAIL("No Metadata available!");
}
}
OCatalog::~OCatalog()
{
delete m_pTables;
delete m_pViews;
delete m_pGroups;
delete m_pUsers;
}
void SAL_CALL OCatalog::acquire() throw()
{
OCatalog_BASE::acquire();
}
void SAL_CALL OCatalog::release() throw()
{
relase_ChildImpl();
}
void SAL_CALL OCatalog::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
if(m_pTables)
m_pTables->disposing();
if(m_pViews)
m_pViews->disposing();
if(m_pGroups)
m_pGroups->disposing();
if(m_pUsers)
m_pUsers->disposing();
dispose_ChildImpl();
OCatalog_BASE::disposing();
}
// XTablesSupplier
Reference< XNameAccess > SAL_CALL OCatalog::getTables( ) throw(RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
checkDisposed(OCatalog_BASE::rBHelper.bDisposed);
try
{
if(!m_pTables)
refreshTables();
}
catch( const RuntimeException& )
{
// allowed to leave this method
throw;
}
catch( const Exception& )
{
// allowed
}
return m_pTables;
}
// XViewsSupplier
Reference< XNameAccess > SAL_CALL OCatalog::getViews( ) throw(RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
checkDisposed(OCatalog_BASE::rBHelper.bDisposed);
try
{
if(!m_pViews)
refreshViews();
}
catch( const RuntimeException& )
{
// allowed to leave this method
throw;
}
catch( const Exception& )
{
// allowed
}
return m_pViews;
}
// XUsersSupplier
Reference< XNameAccess > SAL_CALL OCatalog::getUsers( ) throw(RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
checkDisposed(OCatalog_BASE::rBHelper.bDisposed);
try
{
if(!m_pUsers)
refreshUsers();
}
catch( const RuntimeException& )
{
// allowed to leave this method
throw;
}
catch( const Exception& )
{
// allowed
}
return m_pUsers;
}
// XGroupsSupplier
Reference< XNameAccess > SAL_CALL OCatalog::getGroups( ) throw(RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
checkDisposed(OCatalog_BASE::rBHelper.bDisposed);
try
{
if(!m_pGroups)
refreshGroups();
}
catch( const RuntimeException& )
{
// allowed to leave this method
throw;
}
catch( const Exception& )
{
// allowed
}
return m_pGroups;
}
OUString OCatalog::buildName(const Reference< XRow >& _xRow)
{
OUString sCatalog = _xRow->getString(1);
if ( _xRow->wasNull() )
sCatalog.clear();
OUString sSchema = _xRow->getString(2);
if ( _xRow->wasNull() )
sSchema.clear();
OUString sTable = _xRow->getString(3);
if ( _xRow->wasNull() )
sTable.clear();
OUString sComposedName(
::dbtools::composeTableName( m_xMetaData, sCatalog, sSchema, sTable, false, ::dbtools::eInDataManipulation ) );
return sComposedName;
}
void OCatalog::fillNames(Reference< XResultSet >& _xResult,TStringVector& _rNames)
{
if ( _xResult.is() )
{
_rNames.reserve(20);
Reference< XRow > xRow(_xResult,UNO_QUERY);
while ( _xResult->next() )
{
_rNames.push_back( buildName(xRow) );
}
xRow.clear();
::comphelper::disposeComponent(_xResult);
}
}
void ODescriptor::construct()
{
sal_Int32 nAttrib = isNew() ? 0 : ::com::sun::star::beans::PropertyAttribute::READONLY;
registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME), PROPERTY_ID_NAME ,nAttrib,&m_Name,::cppu::UnoType<OUString>::get());
}
ODescriptor::~ODescriptor()
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */