mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
a server-side copy/move. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@288617 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
155 lines
3.9 KiB
C++
155 lines
3.9 KiB
C++
/***************************************************************************
|
|
copyright : (C) 2002 by Scott Wheeler
|
|
email : wheeler@kde.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* This library is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser General Public License version *
|
|
* 2.1 as published by the Free Software Foundation. *
|
|
* *
|
|
* This library 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 for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; if not, write to the Free Software *
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
* USA *
|
|
***************************************************************************/
|
|
|
|
namespace TagLib {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// public members
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <class Key, class T>
|
|
template <class KeyP, class TP> class Map<Key, T>::MapPrivate : public RefCounter
|
|
{
|
|
public:
|
|
MapPrivate() : RefCounter() {}
|
|
MapPrivate(const std::map<KeyP, TP> &m) : RefCounter(), map(m) {}
|
|
|
|
std::map<KeyP, TP> map;
|
|
};
|
|
|
|
template <class Key, class T>
|
|
Map<Key, T>::Map()
|
|
{
|
|
d = new MapPrivate<Key, T>;
|
|
}
|
|
|
|
template <class Key, class T>
|
|
Map<Key, T>::Map(const Map<Key, T> &m) : d(m.d)
|
|
{
|
|
d->ref();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
Map<Key, T>::~Map()
|
|
{
|
|
if(d->deref())
|
|
delete(d);
|
|
}
|
|
|
|
template <class Key, class T>
|
|
typename Map<Key, T>::Iterator Map<Key, T>::begin()
|
|
{
|
|
detach();
|
|
return d->map.begin();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
typename Map<Key, T>::ConstIterator Map<Key, T>::begin() const
|
|
{
|
|
return d->map.begin();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
typename Map<Key, T>::Iterator Map<Key, T>::end()
|
|
{
|
|
detach();
|
|
return d->map.end();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
typename Map<Key, T>::ConstIterator Map<Key, T>::end() const
|
|
{
|
|
return d->map.end();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
void Map<Key, T>::insert(const Key &key, const T &value)
|
|
{
|
|
detach();
|
|
std::pair<Key, T> item(key, value);
|
|
d->map.insert(item);
|
|
}
|
|
|
|
template <class Key, class T>
|
|
void Map<Key, T>::clear()
|
|
{
|
|
detach();
|
|
d->map.clear();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
bool Map<Key, T>::isEmpty() const
|
|
{
|
|
return d->map.empty();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
bool Map<Key, T>::contains(const Key &key) const
|
|
{
|
|
return d->map.find(key) != d->map.end();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
TagLib::uint Map<Key, T>::size() const
|
|
{
|
|
return d->map.size();
|
|
}
|
|
|
|
template <class Key, class T>
|
|
const T &Map<Key, T>::operator[](const Key &key) const
|
|
{
|
|
return d->map[key];
|
|
}
|
|
|
|
template <class Key, class T>
|
|
T &Map<Key, T>::operator[](const Key &key)
|
|
{
|
|
return d->map[key];
|
|
}
|
|
|
|
template <class Key, class T>
|
|
Map<Key, T> &Map<Key, T>::operator=(const Map<Key, T> &m)
|
|
{
|
|
if(&m == this)
|
|
return *this;
|
|
|
|
if(d->deref())
|
|
delete(d);
|
|
d = m.d;
|
|
d->ref();
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// protected members
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <class Key, class T>
|
|
void Map<Key, T>::detach()
|
|
{
|
|
if(d->count() > 1) {
|
|
d->deref();
|
|
d = new MapPrivate<Key, T>(d->map);
|
|
}
|
|
}
|
|
|
|
} // namespace TagLib
|