Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
comparable.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter 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 FLUTTER_IMPELLER_BASE_COMPARABLE_H_
6#define FLUTTER_IMPELLER_BASE_COMPARABLE_H_
7
8#include <cstddef>
9#include <functional>
10#include <map>
11#include <memory>
12#include <type_traits>
13
14namespace impeller {
15
16struct UniqueID {
17 size_t id;
18
19 UniqueID();
20
21 constexpr bool operator==(const UniqueID& other) const {
22 return id == other.id;
23 }
24};
25
27
28template <class Type>
30 public:
31 virtual std::size_t GetHash() const = 0;
32
33 virtual bool IsEqual(const Type& other) const = 0;
34};
35
36template <
37 class ComparableType,
38 class = std::enable_if_t<std::is_base_of_v<ComparableBase, ComparableType>>>
40 std::size_t operator()(const ComparableType& object) const {
41 return object.GetHash();
42 }
43};
44
45template <
46 class ComparableType,
47 class = std::enable_if_t<std::is_base_of_v<ComparableBase, ComparableType>>>
49 bool operator()(const ComparableType& lhs, const ComparableType& rhs) const {
50 return lhs.IsEqual(rhs);
51 }
52};
53
54template <
55 class ComparableType,
56 class = std::enable_if_t<std::is_base_of_v<ComparableBase, ComparableType>>>
57bool DeepComparePointer(const std::shared_ptr<ComparableType>& lhs,
58 const std::shared_ptr<ComparableType>& rhs) {
59 if (lhs == rhs) {
60 return true;
61 }
62
63 if (lhs && rhs) {
64 return lhs->IsEqual(*rhs);
65 }
66
67 return false;
68}
69
70template <
71 class Key,
72 class ComparableType,
73 class = std::enable_if_t<std::is_base_of_v<ComparableBase, ComparableType>>>
74bool DeepCompareMap(const std::map<Key, std::shared_ptr<ComparableType>>& lhs,
75 const std::map<Key, std::shared_ptr<ComparableType>>& rhs) {
76 if (lhs.size() != rhs.size()) {
77 return false;
78 }
79
80 for (auto i = lhs.begin(), j = rhs.begin(); i != lhs.end(); i++, j++) {
81 if (i->first != j->first) {
82 return false;
83 }
84
85 if (!DeepComparePointer(i->second, j->second)) {
86 return false;
87 }
88 }
89
90 return true;
91}
92
93} // namespace impeller
94
95namespace std {
96
97template <>
98struct hash<impeller::UniqueID> {
99 constexpr std::size_t operator()(const impeller::UniqueID& id) {
100 return id.id;
101 }
102};
103
104template <>
105struct less<impeller::UniqueID> {
106 constexpr bool operator()(const impeller::UniqueID& lhs,
107 const impeller::UniqueID& rhs) const {
108 return lhs.id < rhs.id;
109 }
110};
111
112} // namespace std
113
114#endif // FLUTTER_IMPELLER_BASE_COMPARABLE_H_
TArray< uint32_t > Key
static uint32_t hash(const SkShaderBase::GradientInfo &v)
virtual bool IsEqual(const Type &other) const =0
virtual std::size_t GetHash() const =0
bool DeepComparePointer(const std::shared_ptr< ComparableType > &lhs, const std::shared_ptr< ComparableType > &rhs)
Definition comparable.h:57
bool DeepCompareMap(const std::map< Key, std::shared_ptr< ComparableType > > &lhs, const std::map< Key, std::shared_ptr< ComparableType > > &rhs)
Definition comparable.h:74
Definition ref_ptr.h:256
bool operator()(const ComparableType &lhs, const ComparableType &rhs) const
Definition comparable.h:49
std::size_t operator()(const ComparableType &object) const
Definition comparable.h:40
constexpr bool operator==(const UniqueID &other) const
Definition comparable.h:21
constexpr std::size_t operator()(const impeller::UniqueID &id)
Definition comparable.h:99
constexpr bool operator()(const impeller::UniqueID &lhs, const impeller::UniqueID &rhs) const
Definition comparable.h:106