1946794ae0
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
203 lines
6.7 KiB
C++
203 lines
6.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 <comphelper/namecontainer.hxx>
|
|
#include <cppuhelper/implbase1.hxx>
|
|
#include <osl/diagnose.h>
|
|
#include <osl/mutex.hxx>
|
|
#include <comphelper/stl_types.hxx>
|
|
|
|
DECLARE_STL_USTRINGACCESS_MAP( ::com::sun::star::uno::Any, SvGenericNameContainerMapImpl );
|
|
|
|
namespace comphelper
|
|
{
|
|
class NameContainerImpl
|
|
{
|
|
public:
|
|
osl::Mutex maMutex;
|
|
};
|
|
|
|
/** this is the base helper class for NameContainer thats also declared in this header. */
|
|
class NameContainer : public ::cppu::WeakImplHelper1< ::com::sun::star::container::XNameContainer >, private NameContainerImpl
|
|
{
|
|
public:
|
|
NameContainer( ::com::sun::star::uno::Type aType );
|
|
virtual ~NameContainer();
|
|
|
|
// XNameContainer
|
|
virtual void SAL_CALL insertByName( const OUString& aName, const ::com::sun::star::uno::Any& aElement )
|
|
throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException,
|
|
::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeByName( const OUString& Name )
|
|
throw(::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException,
|
|
::com::sun::star::uno::RuntimeException);
|
|
|
|
// XNameReplace
|
|
virtual void SAL_CALL replaceByName( const OUString& aName, const ::com::sun::star::uno::Any& aElement )
|
|
throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException,
|
|
::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XNameAccess
|
|
virtual ::com::sun::star::uno::Any SAL_CALL getByName( const OUString& aName )
|
|
throw(::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException,
|
|
::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getElementNames( )
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL hasByName( const OUString& aName )
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
// XElementAccess
|
|
virtual sal_Bool SAL_CALL hasElements( )
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Type SAL_CALL getElementType( )
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
private:
|
|
SvGenericNameContainerMapImpl maProperties;
|
|
const ::com::sun::star::uno::Type maType;
|
|
};
|
|
}
|
|
|
|
using namespace ::comphelper;
|
|
using namespace ::osl;
|
|
using namespace ::rtl;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::container;
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
|
|
NameContainer::NameContainer( ::com::sun::star::uno::Type aType )
|
|
: maType( aType )
|
|
{
|
|
}
|
|
|
|
NameContainer::~NameContainer()
|
|
{
|
|
}
|
|
|
|
// XNameContainer
|
|
void SAL_CALL NameContainer::insertByName( const OUString& aName, const Any& aElement )
|
|
throw(IllegalArgumentException, ElementExistException,
|
|
WrappedTargetException, RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
if( maProperties.find( aName ) != maProperties.end() )
|
|
throw ElementExistException();
|
|
|
|
if( aElement.getValueType() != maType )
|
|
throw IllegalArgumentException();
|
|
|
|
maProperties.insert( SvGenericNameContainerMapImpl::value_type(aName,aElement));
|
|
}
|
|
|
|
void SAL_CALL NameContainer::removeByName( const OUString& Name )
|
|
throw(NoSuchElementException, WrappedTargetException,
|
|
RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
SvGenericNameContainerMapImpl::iterator aIter = maProperties.find( Name );
|
|
if( aIter == maProperties.end() )
|
|
throw NoSuchElementException();
|
|
|
|
maProperties.erase( aIter );
|
|
}
|
|
|
|
// XNameReplace
|
|
|
|
void SAL_CALL NameContainer::replaceByName( const OUString& aName, const Any& aElement )
|
|
throw(IllegalArgumentException, NoSuchElementException,
|
|
WrappedTargetException, RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
SvGenericNameContainerMapImpl::iterator aIter( maProperties.find( aName ) );
|
|
if( aIter == maProperties.end() )
|
|
throw NoSuchElementException();
|
|
|
|
if( aElement.getValueType() != maType )
|
|
throw IllegalArgumentException();
|
|
|
|
(*aIter).second = aElement;
|
|
}
|
|
|
|
// XNameAccess
|
|
|
|
Any SAL_CALL NameContainer::getByName( const OUString& aName )
|
|
throw(NoSuchElementException, WrappedTargetException,
|
|
RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
SvGenericNameContainerMapImpl::iterator aIter = maProperties.find( aName );
|
|
if( aIter == maProperties.end() )
|
|
throw NoSuchElementException();
|
|
|
|
return (*aIter).second;
|
|
}
|
|
|
|
Sequence< OUString > SAL_CALL NameContainer::getElementNames( )
|
|
throw(RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
SvGenericNameContainerMapImpl::iterator aIter = maProperties.begin();
|
|
const SvGenericNameContainerMapImpl::iterator aEnd = maProperties.end();
|
|
|
|
Sequence< OUString > aNames( maProperties.size() );
|
|
OUString* pNames = aNames.getArray();
|
|
|
|
while( aIter != aEnd )
|
|
{
|
|
*pNames++ = (*aIter++).first;
|
|
}
|
|
|
|
return aNames;
|
|
}
|
|
|
|
sal_Bool SAL_CALL NameContainer::hasByName( const OUString& aName )
|
|
throw(RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
SvGenericNameContainerMapImpl::iterator aIter = maProperties.find( aName );
|
|
return aIter != maProperties.end();
|
|
}
|
|
|
|
sal_Bool SAL_CALL NameContainer::hasElements( )
|
|
throw(RuntimeException)
|
|
{
|
|
MutexGuard aGuard( maMutex );
|
|
|
|
return !maProperties.empty();
|
|
}
|
|
|
|
Type SAL_CALL NameContainer::getElementType()
|
|
throw( RuntimeException )
|
|
{
|
|
return maType;
|
|
}
|
|
|
|
Reference< XNameContainer > comphelper::NameContainer_createInstance( Type aType )
|
|
{
|
|
return (XNameContainer*) new NameContainer( aType );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|