/*************************************************************************** copyright : (C) 2002 - 2008 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., 51 Franklin Street, Fifth Floor, Boston, MA * * 02110-1301 USA * * * * Alternatively, this file is available under the Mozilla Public * * License Version 1.1. You may obtain a copy of the License at * * http://www.mozilla.org/MPL/ * ***************************************************************************/ #include "trefcounter.h" namespace TagLib { //////////////////////////////////////////////////////////////////////////////// // public members //////////////////////////////////////////////////////////////////////////////// // BIC change to RefCounter template template class Map::MapPrivate : public RefCounterOld { public: MapPrivate() : RefCounterOld() {} #ifdef WANT_CLASS_INSTANTIATION_OF_MAP MapPrivate(const std::map& m) : RefCounterOld(), map(m) {} std::map map; #else MapPrivate(const std::map& m) : RefCounterOld(), map(m) {} std::map map; #endif }; template Map::Map() : d(new MapPrivate()) { } template Map::Map(const Map &m) : d(m.d) { d->ref(); } template Map::~Map() { if(d->deref()) delete(d); } template typename Map::Iterator Map::begin() { detach(); return d->map.begin(); } template typename Map::ConstIterator Map::begin() const { return d->map.begin(); } template typename Map::Iterator Map::end() { detach(); return d->map.end(); } template typename Map::ConstIterator Map::end() const { return d->map.end(); } template Map &Map::insert(const Key &key, const T &value) { detach(); d->map[key] = value; return *this; } template Map &Map::clear() { detach(); d->map.clear(); return *this; } template bool Map::isEmpty() const { return d->map.empty(); } template typename Map::Iterator Map::find(const Key &key) { detach(); return d->map.find(key); } template typename Map::ConstIterator Map::find(const Key &key) const { return d->map.find(key); } template bool Map::contains(const Key &key) const { return d->map.find(key) != d->map.end(); } template Map &Map::erase(Iterator it) { detach(); d->map.erase(it); return *this; } template Map &Map::erase(const Key &key) { detach(); d->map.erase(key); return *this; } template unsigned int Map::size() const { return static_cast(d->map.size()); } template const T &Map::operator[](const Key &key) const { return d->map[key]; } template T &Map::operator[](const Key &key) { detach(); return d->map[key]; } template Map &Map::operator=(const Map &m) { Map(m).swap(*this); return *this; } template void Map::swap(Map &m) { using std::swap; swap(d, m.d); } //////////////////////////////////////////////////////////////////////////////// // protected members //////////////////////////////////////////////////////////////////////////////// template void Map::detach() { if(d->count() > 1) { d->deref(); d = new MapPrivate(d->map); } } } // namespace TagLib