/* Copyright 2012 10gen Inc. * * Licensed 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 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include "mongo/base/disallow_copying.h" namespace mongo { /** * An std::map wrapper that deletes pointers within a vector on destruction. The objects * referenced by the vector's pointers are 'owned' by an object of this class. * NOTE that an OwnedPointerMap wraps an std::map. */ template class OwnedPointerMap { MONGO_DISALLOW_COPYING(OwnedPointerMap); public: OwnedPointerMap(); ~OwnedPointerMap(); /** Access the map. */ const std::map& map() { return _map; } std::map& mutableMap() { return _map; } void clear(); private: std::map _map; }; template OwnedPointerMap::OwnedPointerMap() { } template OwnedPointerMap::~OwnedPointerMap() { clear(); } template void OwnedPointerMap::clear() { for( typename std::map::iterator i = _map.begin(); i != _map.end(); ++i ) { delete i->second; } _map.clear(); } } // namespace mongo