blob: 62b4b9d3545ac572c1177c08a915e099300ffc8d [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2014 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Alex Deymo23949d42014-02-05 15:20:59 -080016
Gilad Arnold48415f12014-06-27 07:10:58 -070017#ifndef UPDATE_ENGINE_UPDATE_MANAGER_BOXED_VALUE_H_
18#define UPDATE_ENGINE_UPDATE_MANAGER_BOXED_VALUE_H_
Alex Deymo23949d42014-02-05 15:20:59 -080019
Ben Chan02f7c1d2014-10-18 15:18:02 -070020#include <memory>
David Zeuthenfe225c12014-04-29 10:37:35 -070021#include <string>
22
Ben Chan05735a12014-09-03 07:48:22 -070023#include <base/macros.h>
Alex Deymo23949d42014-02-05 15:20:59 -080024
Alex Deymo63784a52014-05-28 10:46:14 -070025namespace chromeos_update_manager {
Alex Deymo23949d42014-02-05 15:20:59 -080026
27// BoxedValue is a class to hold pointers of a given type that deletes them when
Ben Chan02f7c1d2014-10-18 15:18:02 -070028// the instance goes out of scope, as std::unique_ptr<T> does. The main
29// difference with it is that the type T is not part of the class, i.e., this
30// isn't a parametric class. The class has a parametric constructor that accepts
31// a const T* which will define the type of the object passed on delete.
Alex Deymo23949d42014-02-05 15:20:59 -080032//
33// It is safe to use this class in linked containers such as std::list and
34// std::map but the object can't be copied. This means that you need to
Alex Vakulenko072359c2014-07-18 11:41:07 -070035// construct the BoxedValue in place using a container method like emplace()
Alex Deymo23949d42014-02-05 15:20:59 -080036// or move it with std::move().
37//
38// list<BoxedValue> lst;
39// lst.emplace_back(new const int(42));
40// lst.emplace_back(new const string("Hello world!"));
41//
42// map<int, BoxedValue> m;
43// m.emplace(123, std::move(BoxedValue(new const string("Hola mundo!"))));
44//
45// auto it = m.find(42);
46// if (it != m.end())
47// cout << "m[42] points to " << it->second.value() << endl;
48// cout << "m[33] points to " << m[33].value() << endl;
49//
50// Since copy and assign are not allowed, you can't create a copy of the
51// BoxedValue which means that you can only use a reference to it.
52//
53
54class BoxedValue {
55 public:
56 // Creates an empty BoxedValue. Since the pointer can't be assigned from other
57 // BoxedValues or pointers, this is only useful in places where a default
58 // constructor is required, such as std::map::operator[].
Alex Vakulenko88b591f2014-08-28 16:48:57 -070059 BoxedValue() : value_(nullptr), deleter_(nullptr), printer_(nullptr) {}
Alex Deymo23949d42014-02-05 15:20:59 -080060
61 // Creates a BoxedValue for the passed pointer |value|. The BoxedValue keeps
62 // the ownership of this pointer and can't be released.
Amin Hassani4b717432019-01-14 16:24:20 -080063 template <typename T>
Alex Deymo23949d42014-02-05 15:20:59 -080064 explicit BoxedValue(const T* value)
Amin Hassani4b717432019-01-14 16:24:20 -080065 : value_(static_cast<const void*>(value)),
66 deleter_(ValueDeleter<T>),
67 printer_(ValuePrinter<T>) {}
Alex Deymo23949d42014-02-05 15:20:59 -080068
69 // The move constructor takes ownership of the pointer since the semantics of
70 // it allows to render the passed BoxedValue undefined. You need to use the
Alex Vakulenko072359c2014-07-18 11:41:07 -070071 // move constructor explicitly preventing it from accidental references,
Alex Deymo23949d42014-02-05 15:20:59 -080072 // like in:
73 // BoxedValue new_box(std::move(other_box));
Chih-Hung Hsieh270524f2018-10-01 17:55:21 -070074 BoxedValue(BoxedValue&& other) noexcept
Chih-Hung Hsieh1fae1c12018-09-25 14:33:32 -070075 : value_(other.value_),
76 deleter_(other.deleter_),
David Zeuthenfe225c12014-04-29 10:37:35 -070077 printer_(other.printer_) {
Alex Vakulenko88b591f2014-08-28 16:48:57 -070078 other.value_ = nullptr;
79 other.deleter_ = nullptr;
80 other.printer_ = nullptr;
Alex Deymo23949d42014-02-05 15:20:59 -080081 }
82
83 // Deletes the |value| passed on construction using the delete for the passed
84 // type.
85 ~BoxedValue() {
86 if (deleter_)
87 deleter_(value_);
88 }
89
90 const void* value() const { return value_; }
91
David Zeuthenfe225c12014-04-29 10:37:35 -070092 std::string ToString() const {
93 if (!printer_)
94 return "(no printer)";
95 if (!value_)
96 return "(no value)";
97 return printer_(value_);
98 }
99
Alex Deymo23949d42014-02-05 15:20:59 -0800100 // Static method to call the destructor of the right type.
Amin Hassani4b717432019-01-14 16:24:20 -0800101 template <typename T>
Alex Deymo23949d42014-02-05 15:20:59 -0800102 static void ValueDeleter(const void* value) {
103 delete reinterpret_cast<const T*>(value);
104 }
105
David Zeuthenfe225c12014-04-29 10:37:35 -0700106 // Static method to print a type. See boxed_value.cc for common
107 // instantiations.
Amin Hassani4b717432019-01-14 16:24:20 -0800108 template <typename T>
David Zeuthenfe225c12014-04-29 10:37:35 -0700109 static std::string ValuePrinter(const void* value);
110
Alex Deymo23949d42014-02-05 15:20:59 -0800111 private:
112 // A pointer to the cached value.
113 const void* value_;
114
115 // A function that calls delete for the right type of value_.
116 void (*deleter_)(const void*);
117
David Zeuthenfe225c12014-04-29 10:37:35 -0700118 // A function that converts value_ to a string.
119 std::string (*printer_)(const void*);
120
Alex Deymo23949d42014-02-05 15:20:59 -0800121 DISALLOW_COPY_AND_ASSIGN(BoxedValue);
122};
123
Alex Deymo63784a52014-05-28 10:46:14 -0700124} // namespace chromeos_update_manager
Alex Deymo23949d42014-02-05 15:20:59 -0800125
Gilad Arnold48415f12014-06-27 07:10:58 -0700126#endif // UPDATE_ENGINE_UPDATE_MANAGER_BOXED_VALUE_H_