393 lines
9.5 KiB
C++
393 lines
9.5 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 "datacolumn.hxx"
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
#include <cppuhelper/typeprovider.hxx>
|
|
#include <strings.hxx>
|
|
|
|
using namespace dbaccess;
|
|
using namespace ::com::sun::star::sdbc;
|
|
using namespace ::com::sun::star::sdb;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::container;
|
|
using namespace ::osl;
|
|
using namespace ::cppu;
|
|
|
|
|
|
ODataColumn::ODataColumn(
|
|
const Reference < XResultSetMetaData >& _xMetaData,
|
|
const Reference < XRow >& _xRow,
|
|
const Reference < XRowUpdate >& _xRowUpdate,
|
|
sal_Int32 _nPos,
|
|
const Reference< XDatabaseMetaData >& _rxDBMeta)
|
|
:OResultColumn(_xMetaData, _nPos, _rxDBMeta)
|
|
,m_xRow(_xRow)
|
|
,m_xRowUpdate(_xRowUpdate)
|
|
{
|
|
}
|
|
|
|
ODataColumn::~ODataColumn()
|
|
{
|
|
}
|
|
|
|
// css::lang::XTypeProvider
|
|
Sequence< Type > ODataColumn::getTypes()
|
|
{
|
|
OTypeCollection aTypes(cppu::UnoType<XColumn>::get(),
|
|
cppu::UnoType<XColumnUpdate>::get(),
|
|
OColumn::getTypes());
|
|
return aTypes.getTypes();
|
|
}
|
|
|
|
Sequence< sal_Int8 > ODataColumn::getImplementationId()
|
|
{
|
|
return css::uno::Sequence<sal_Int8>();
|
|
}
|
|
|
|
Any SAL_CALL ODataColumn::queryInterface( const Type & _rType )
|
|
{
|
|
Any aReturn = OResultColumn::queryInterface(_rType);
|
|
if (!aReturn.hasValue())
|
|
aReturn = ::cppu::queryInterface(_rType,
|
|
static_cast< XColumn* >(this),
|
|
static_cast< XColumnUpdate* >(this)
|
|
);
|
|
return aReturn;
|
|
}
|
|
|
|
// XServiceInfo
|
|
OUString ODataColumn::getImplementationName( )
|
|
{
|
|
return u"com.sun.star.sdb.ODataColumn"_ustr;
|
|
}
|
|
|
|
Sequence< OUString > ODataColumn::getSupportedServiceNames( )
|
|
{
|
|
return { SERVICE_SDBCX_COLUMN, SERVICE_SDB_RESULTCOLUMN, SERVICE_SDB_DATACOLUMN };
|
|
}
|
|
|
|
// OComponentHelper
|
|
void ODataColumn::disposing()
|
|
{
|
|
OResultColumn::disposing();
|
|
|
|
m_xRow = nullptr;
|
|
m_xRowUpdate = nullptr;
|
|
}
|
|
|
|
// css::sdb::XColumn
|
|
sal_Bool ODataColumn::wasNull()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->wasNull();
|
|
}
|
|
|
|
OUString ODataColumn::getString()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getString(m_nPos);
|
|
}
|
|
|
|
sal_Bool ODataColumn::getBoolean()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getBoolean(m_nPos);
|
|
}
|
|
|
|
sal_Int8 ODataColumn::getByte()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getByte(m_nPos);
|
|
}
|
|
|
|
sal_Int16 ODataColumn::getShort()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getShort(m_nPos);
|
|
}
|
|
|
|
sal_Int32 ODataColumn::getInt()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getInt(m_nPos);
|
|
}
|
|
|
|
sal_Int64 ODataColumn::getLong()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getLong(m_nPos);
|
|
}
|
|
|
|
float ODataColumn::getFloat()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getFloat(m_nPos);
|
|
}
|
|
|
|
double ODataColumn::getDouble()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getDouble(m_nPos);
|
|
}
|
|
|
|
Sequence< sal_Int8 > ODataColumn::getBytes()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getBytes(m_nPos);
|
|
}
|
|
|
|
css::util::Date ODataColumn::getDate()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getDate(m_nPos);
|
|
}
|
|
|
|
css::util::Time ODataColumn::getTime()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getTime(m_nPos);
|
|
}
|
|
|
|
css::util::DateTime ODataColumn::getTimestamp()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getTimestamp(m_nPos);
|
|
}
|
|
|
|
Reference< css::io::XInputStream > ODataColumn::getBinaryStream()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getBinaryStream(m_nPos);
|
|
}
|
|
|
|
Reference< css::io::XInputStream > ODataColumn::getCharacterStream()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getCharacterStream(m_nPos);
|
|
}
|
|
|
|
Any ODataColumn::getObject(const Reference< css::container::XNameAccess > & typeMap)
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getObject(m_nPos, typeMap);
|
|
}
|
|
|
|
Reference< XRef > ODataColumn::getRef()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getRef(m_nPos);
|
|
}
|
|
|
|
Reference< XBlob > ODataColumn::getBlob()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getBlob(m_nPos);
|
|
}
|
|
|
|
Reference< XClob > ODataColumn::getClob()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getClob(m_nPos);
|
|
}
|
|
|
|
Reference< XArray > ODataColumn::getArray()
|
|
{
|
|
MutexGuard aGuard(m_aMutex);
|
|
::connectivity::checkDisposed(!m_xRow.is());
|
|
|
|
return m_xRow->getArray(m_nPos);
|
|
}
|
|
|
|
// css::sdb::XColumnUpdate
|
|
void ODataColumn::updateNull()
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateNull(m_nPos);
|
|
}
|
|
|
|
void ODataColumn::updateBoolean(sal_Bool x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateBoolean(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateByte(sal_Int8 x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateByte(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateShort(sal_Int16 x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateShort(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateInt(sal_Int32 x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateInt(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateLong(sal_Int64 x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateLong(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateFloat(float x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateFloat(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateDouble(double x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateDouble(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateString(const OUString& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateString(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateBytes(const Sequence< sal_Int8 >& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateBytes(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateDate(const css::util::Date& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateDate(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateTime(const css::util::Time& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateTime(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateTimestamp(const css::util::DateTime& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateTimestamp(m_nPos, x);
|
|
}
|
|
|
|
void ODataColumn::updateCharacterStream(const Reference< css::io::XInputStream > & x, sal_Int32 length)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateCharacterStream(m_nPos, x, length);
|
|
}
|
|
|
|
void ODataColumn::updateBinaryStream(const Reference< css::io::XInputStream > & x, sal_Int32 length)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateBinaryStream(m_nPos, x, length);
|
|
}
|
|
|
|
void ODataColumn::updateNumericObject(const Any& x, sal_Int32 scale)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateNumericObject(m_nPos, x, scale);
|
|
}
|
|
|
|
void ODataColumn::updateObject(const Any& x)
|
|
{
|
|
MutexGuard aGuard( m_aMutex );
|
|
::connectivity::checkDisposed(!m_xRowUpdate.is());
|
|
|
|
m_xRowUpdate->updateObject(m_nPos, x);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|