2013-08-19 13:58:55 +01:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "User.hxx"
|
|
|
|
#include "Users.hxx"
|
|
|
|
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
|
|
|
|
using namespace ::connectivity;
|
|
|
|
using namespace ::connectivity::firebird;
|
|
|
|
using namespace ::connectivity::sdbcx;
|
|
|
|
using namespace ::cppu;
|
|
|
|
using namespace ::osl;
|
|
|
|
using namespace ::rtl;
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
|
|
|
|
Users::Users(const uno::Reference< XDatabaseMetaData >& rMetaData,
|
|
|
|
OWeakObject& rParent,
|
|
|
|
Mutex& rMutex,
|
|
|
|
TStringVector& rNames) :
|
|
|
|
OCollection(rParent,
|
|
|
|
sal_True,
|
|
|
|
rMutex,
|
|
|
|
rNames),
|
|
|
|
m_rMutex(rMutex),
|
|
|
|
m_xMetaData(rMetaData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----- OCollection -----------------------------------------------------------
|
|
|
|
void Users::impl_refresh()
|
|
|
|
throw(RuntimeException)
|
|
|
|
{
|
|
|
|
// TODO: IMPLEMENT ME
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectType Users::createObject(const OUString& rName)
|
|
|
|
{
|
2013-08-20 08:18:57 +01:00
|
|
|
return new User(m_xMetaData->getConnection(), rName);
|
2013-08-19 13:58:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< XPropertySet > Users::createDescriptor()
|
|
|
|
{
|
|
|
|
// There is some internal magic so that the same class can be used as either
|
|
|
|
// a descriptor or as a normal user. See VUser.cxx for the details. In our
|
|
|
|
// case we just need to ensure we use the correct constructor.
|
|
|
|
return new User(m_xMetaData->getConnection());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----- XAppend ---------------------------------------------------------------
|
|
|
|
ObjectType Users::appendObject(const OUString& rName,
|
|
|
|
const uno::Reference< XPropertySet >& rDescriptor)
|
|
|
|
{
|
|
|
|
// TODO: set sSql as appropriate
|
|
|
|
(void) rName;
|
|
|
|
(void) rDescriptor;
|
|
|
|
OUString sSql;
|
|
|
|
m_xMetaData->getConnection()->createStatement()->execute(sSql);
|
|
|
|
|
|
|
|
return createObject(rName);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----- XDrop -----------------------------------------------------------------
|
|
|
|
void Users::dropObject(sal_Int32 nPosition, const OUString sName)
|
|
|
|
{
|
|
|
|
uno::Reference< XPropertySet > xUser(getObject(nPosition));
|
|
|
|
|
|
|
|
if (!ODescriptor::isNew(xUser))
|
|
|
|
{
|
|
|
|
(void) sName;
|
|
|
|
// TODO: drop me
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|