1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef BASE_SCOPED_GENERIC_H_
6 #define BASE_SCOPED_GENERIC_H_
7 
8 #include <stdlib.h>
9 
10 #include <algorithm>
11 
12 #include "base/compiler_specific.h"
13 #include "base/macros.h"
14 #include "base/move.h"
15 
16 namespace base {
17 
18 // This class acts like ScopedPtr with a custom deleter (although is slightly
19 // less fancy in some of the more escoteric respects) except that it keeps a
20 // copy of the object rather than a pointer, and we require that the contained
21 // object has some kind of "invalid" value.
22 //
23 // Defining a scoper based on this class allows you to get a scoper for
24 // non-pointer types without having to write custom code for set, reset, and
25 // move, etc. and get almost identical semantics that people are used to from
26 // scoped_ptr.
27 //
28 // It is intended that you will typedef this class with an appropriate deleter
29 // to implement clean up tasks for objects that act like pointers from a
30 // resource management standpoint but aren't, such as file descriptors and
31 // various types of operating system handles. Using scoped_ptr for these
32 // things requires that you keep a pointer to the handle valid for the lifetime
33 // of the scoper (which is easy to mess up).
34 //
35 // For an object to be able to be put into a ScopedGeneric, it must support
36 // standard copyable semantics and have a specific "invalid" value. The traits
37 // must define a free function and also the invalid value to assign for
38 // default-constructed and released objects.
39 //
40 //   struct FooScopedTraits {
41 //     // It's assumed that this is a fast inline function with little-to-no
42 //     // penalty for duplicate calls. This must be a static function even
43 //     // for stateful traits.
44 //     static int InvalidValue() {
45 //       return 0;
46 //     }
47 //
48 //     // This free function will not be called if f == InvalidValue()!
49 //     static void Free(int f) {
50 //       ::FreeFoo(f);
51 //     }
52 //   };
53 //
54 //   typedef ScopedGeneric<int, FooScopedTraits> ScopedFoo;
55 template<typename T, typename Traits>
56 class ScopedGeneric {
57   DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(ScopedGeneric)
58 
59  private:
60   // This must be first since it's used inline below.
61   //
62   // Use the empty base class optimization to allow us to have a D
63   // member, while avoiding any space overhead for it when D is an
64   // empty class.  See e.g. http://www.cantrip.org/emptyopt.html for a good
65   // discussion of this technique.
66   struct Data : public Traits {
DataData67     explicit Data(const T& in) : generic(in) {}
DataData68     Data(const T& in, const Traits& other) : Traits(other), generic(in) {}
69     T generic;
70   };
71 
72  public:
73   typedef T element_type;
74   typedef Traits traits_type;
75 
ScopedGeneric()76   ScopedGeneric() : data_(traits_type::InvalidValue()) {}
77 
78   // Constructor. Takes responsibility for freeing the resource associated with
79   // the object T.
ScopedGeneric(const element_type & value)80   explicit ScopedGeneric(const element_type& value) : data_(value) {}
81 
82   // Constructor. Allows initialization of a stateful traits object.
ScopedGeneric(const element_type & value,const traits_type & traits)83   ScopedGeneric(const element_type& value, const traits_type& traits)
84       : data_(value, traits) {
85   }
86 
87   // Move constructor. Allows initialization from a ScopedGeneric rvalue.
ScopedGeneric(ScopedGeneric<T,Traits> && rvalue)88   ScopedGeneric(ScopedGeneric<T, Traits>&& rvalue)
89       : data_(rvalue.release(), rvalue.get_traits()) {
90   }
91 
~ScopedGeneric()92   ~ScopedGeneric() {
93     FreeIfNecessary();
94   }
95 
96   // operator=. Allows assignment from a ScopedGeneric rvalue.
97   ScopedGeneric& operator=(ScopedGeneric<T, Traits>&& rvalue) {
98     reset(rvalue.release());
99     return *this;
100   }
101 
102   // Frees the currently owned object, if any. Then takes ownership of a new
103   // object, if given. Self-resets are not allowd as on scoped_ptr. See
104   // http://crbug.com/162971
105   void reset(const element_type& value = traits_type::InvalidValue()) {
106     if (data_.generic != traits_type::InvalidValue() && data_.generic == value)
107       abort();
108     FreeIfNecessary();
109     data_.generic = value;
110   }
111 
swap(ScopedGeneric & other)112   void swap(ScopedGeneric& other) {
113     // Standard swap idiom: 'using std::swap' ensures that std::swap is
114     // present in the overload set, but we call swap unqualified so that
115     // any more-specific overloads can be used, if available.
116     using std::swap;
117     swap(static_cast<Traits&>(data_), static_cast<Traits&>(other.data_));
118     swap(data_.generic, other.data_.generic);
119   }
120 
121   // Release the object. The return value is the current object held by this
122   // object. After this operation, this object will hold a null value, and
123   // will not own the object any more.
release()124   element_type release() WARN_UNUSED_RESULT {
125     element_type old_generic = data_.generic;
126     data_.generic = traits_type::InvalidValue();
127     return old_generic;
128   }
129 
get()130   const element_type& get() const { return data_.generic; }
131 
132   // Returns true if this object doesn't hold the special null value for the
133   // associated data type.
is_valid()134   bool is_valid() const { return data_.generic != traits_type::InvalidValue(); }
135 
136   bool operator==(const element_type& value) const {
137     return data_.generic == value;
138   }
139   bool operator!=(const element_type& value) const {
140     return data_.generic != value;
141   }
142 
get_traits()143   Traits& get_traits() { return data_; }
get_traits()144   const Traits& get_traits() const { return data_; }
145 
146  private:
FreeIfNecessary()147   void FreeIfNecessary() {
148     if (data_.generic != traits_type::InvalidValue()) {
149       data_.Free(data_.generic);
150       data_.generic = traits_type::InvalidValue();
151     }
152   }
153 
154   // Forbid comparison. If U != T, it totally doesn't make sense, and if U ==
155   // T, it still doesn't make sense because you should never have the same
156   // object owned by two different ScopedGenerics.
157   template <typename T2, typename Traits2> bool operator==(
158       const ScopedGeneric<T2, Traits2>& p2) const;
159   template <typename T2, typename Traits2> bool operator!=(
160       const ScopedGeneric<T2, Traits2>& p2) const;
161 
162   Data data_;
163 };
164 
165 template<class T, class Traits>
swap(const ScopedGeneric<T,Traits> & a,const ScopedGeneric<T,Traits> & b)166 void swap(const ScopedGeneric<T, Traits>& a,
167           const ScopedGeneric<T, Traits>& b) {
168   a.swap(b);
169 }
170 
171 template<class T, class Traits>
172 bool operator==(const T& value, const ScopedGeneric<T, Traits>& scoped) {
173   return value == scoped.get();
174 }
175 
176 template<class T, class Traits>
177 bool operator!=(const T& value, const ScopedGeneric<T, Traits>& scoped) {
178   return value != scoped.get();
179 }
180 
181 }  // namespace base
182 
183 #endif  // BASE_SCOPED_GENERIC_H_
184