FastDeploy  latest
Fast & Easy to Deploy!
unique_ptr.h
1 /* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7  http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License. */
14 
15 #pragma once
16 
17 #include <memory>
18 
19 namespace fastdeploy {
20 namespace utils {
21 // Trait to select overloads and return types for MakeUnique.
22 template <typename T>
23 struct MakeUniqueResult {
24  using scalar = std::unique_ptr<T>;
25 };
26 template <typename T>
27 struct MakeUniqueResult<T[]> {
28  using array = std::unique_ptr<T[]>;
29 };
30 template <typename T, size_t N>
31 struct MakeUniqueResult<T[N]> {
32  using invalid = void;
33 };
34 
35 // MakeUnique<T>(...) is an early implementation of C++14 std::make_unique.
36 // It is designed to be 100% compatible with std::make_unique so that the
37 // eventual switchover will be a simple renaming operation.
38 template <typename T, typename... Args>
39 typename MakeUniqueResult<T>::scalar make_unique(Args &&... args) { // NOLINT
40  return std::unique_ptr<T>(
41  new T(std::forward<Args>(args)...)); // NOLINT(build/c++11)
42 }
43 
44 // Overload for array of unknown bound.
45 // The allocation of arrays needs to use the array form of new,
46 // and cannot take element constructor arguments.
47 template <typename T>
48 typename MakeUniqueResult<T>::array make_unique(size_t n) {
49  return std::unique_ptr<T>(new typename std::remove_extent<T>::type[n]());
50 }
51 
52 // Reject arrays of known bound.
53 template <typename T, typename... Args>
54 typename MakeUniqueResult<T>::invalid make_unique(Args &&... /* args */) =
55  delete; // NOLINT
56 
57 } // namespace utils
58 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16