blob: ec2726e272c43bcd3e38d62677c641bc8b561519 [file] [log] [blame]
sergeyu@chromium.org70022fa2014-02-07 19:03:26 +00001/*
2 * libjingle
3 * Copyright 2014 Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28// Stores a collection of pointers that are deleted when the container is
29// destructed.
30
31#ifndef TALK_BASE_SCOPEDPTRCOLLECTION_H_
32#define TALK_BASE_SCOPEDPTRCOLLECTION_H_
33
34#include <algorithm>
35#include <vector>
36
37#include "talk/base/basictypes.h"
38#include "talk/base/constructormagic.h"
39
40namespace talk_base {
41
42template<class T>
43class ScopedPtrCollection {
44 public:
45 typedef std::vector<T*> VectorT;
46
47 ScopedPtrCollection() { }
48 ~ScopedPtrCollection() {
49 for (typename VectorT::iterator it = collection_.begin();
50 it != collection_.end(); ++it) {
51 delete *it;
52 }
53 }
54
55 const VectorT& collection() const { return collection_; }
56 void Reserve(size_t size) {
57 collection_.reserve(size);
58 }
59 void PushBack(T* t) {
60 collection_.push_back(t);
61 }
62
63 // Remove |t| from the collection without deleting it.
64 void Remove(T* t) {
65 collection_.erase(std::remove(collection_.begin(), collection_.end(), t),
66 collection_.end());
67 }
68
69 private:
70 VectorT collection_;
71
72 DISALLOW_COPY_AND_ASSIGN(ScopedPtrCollection);
73};
74
75} // namespace talk_base
76
77#endif // TALK_BASE_SCOPEDPTRCOLLECTION_H_