2002-03-12 07:10:33 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 06:41:36 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05:00
|
|
|
* $RCSfile: autoreferencemap.hxx,v $
|
|
|
|
* $Revision: 1.6 $
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05: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.
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05: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).
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
2008-04-11 06:41:36 -05: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.
|
2002-03-12 07:10:33 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIGMGR_AUTOREFERENCEMAP_HXX
|
|
|
|
#define CONFIGMGR_AUTOREFERENCEMAP_HXX
|
|
|
|
|
|
|
|
#include <rtl/ref.hxx>
|
|
|
|
#ifndef INCLUDED_MAP
|
|
|
|
#include <map>
|
|
|
|
#define INCLUDED_MAP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace configmgr
|
|
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using ::rtl::OUString;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
template < class Key, class Object, class KeyCompare = std::less<Key> >
|
|
|
|
class AutoReferenceMap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef rtl::Reference<Object> Ref;
|
|
|
|
typedef std::map<Key,Ref,KeyCompare> Map;
|
|
|
|
|
|
|
|
typedef Object object_type;
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef KeyCompare key_compare;
|
|
|
|
|
|
|
|
typedef typename Map::value_type value_type;
|
|
|
|
public:
|
|
|
|
AutoReferenceMap() {}
|
|
|
|
~AutoReferenceMap() {}
|
|
|
|
|
2004-11-15 06:35:58 -06:00
|
|
|
Map copy() const
|
|
|
|
{
|
|
|
|
return m_aMap;
|
|
|
|
}
|
2002-03-12 07:10:33 -06:00
|
|
|
void swap(Map & _rOtherData)
|
|
|
|
{
|
|
|
|
m_aMap.swap( _rOtherData );
|
|
|
|
}
|
|
|
|
void swap(AutoReferenceMap & _rOther)
|
|
|
|
{
|
|
|
|
this->swap( _rOther.m_aMap );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool has(Key const & _aKey) const;
|
2002-03-28 01:41:26 -06:00
|
|
|
Ref get(Key const & _aKey) const;
|
|
|
|
|
|
|
|
Ref insert(Key const & _aKey, Ref const & _anEntry);
|
2002-03-12 07:10:33 -06:00
|
|
|
Ref remove(Key const & _aKey);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ref internalGet(Key const & _aKey) const
|
|
|
|
{
|
|
|
|
typename Map::const_iterator it = m_aMap.find(_aKey);
|
|
|
|
|
|
|
|
return it != m_aMap.end() ? it->second : Ref();
|
|
|
|
}
|
|
|
|
|
2002-03-28 01:41:26 -06:00
|
|
|
Ref internalAdd(Key const & _aKey, Ref const & _aNewRef)
|
2002-03-12 07:10:33 -06:00
|
|
|
{
|
2002-03-28 01:41:26 -06:00
|
|
|
return m_aMap[_aKey] = _aNewRef;
|
2002-03-12 07:10:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void internalDrop(Key const & _aKey)
|
|
|
|
{
|
|
|
|
m_aMap.erase(_aKey);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Map m_aMap;
|
|
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
template < class Key, class Object, class KeyCompare >
|
|
|
|
bool AutoReferenceMap<Key,Object,KeyCompare>::has(Key const & _aKey) const
|
|
|
|
{
|
|
|
|
return internalGet(_aKey).is();
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
template < class Key, class Object, class KeyCompare >
|
2002-03-28 01:41:26 -06:00
|
|
|
rtl::Reference<Object> AutoReferenceMap<Key,Object,KeyCompare>::get(Key const & _aKey) const
|
2002-03-12 07:10:33 -06:00
|
|
|
{
|
|
|
|
return internalGet(_aKey);
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
template < class Key, class Object, class KeyCompare >
|
2002-03-28 01:41:26 -06:00
|
|
|
rtl::Reference<Object> AutoReferenceMap<Key,Object,KeyCompare>::insert(Key const & _aKey, Ref const & _anEntry)
|
2002-03-12 07:10:33 -06:00
|
|
|
{
|
2002-03-28 01:41:26 -06:00
|
|
|
Ref aRef = internalAdd(_aKey,_anEntry);
|
2002-03-12 07:10:33 -06:00
|
|
|
return aRef;
|
|
|
|
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
template < class Key, class Object, class KeyCompare >
|
|
|
|
rtl::Reference<Object> AutoReferenceMap<Key,Object,KeyCompare>::remove(Key const & _aKey)
|
|
|
|
{
|
|
|
|
Ref aRef = internalGet(_aKey);
|
|
|
|
internalDrop(_aKey);
|
|
|
|
return aRef;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
} // namespace configmgr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|