Coverage Report

Created: 2026-07-16 06:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/common/arena.h
Line
Count
Source
1
// Copyright 2024 Google LLC
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
//     https://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
#ifndef THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_
16
#define THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_
17
18
#include <type_traits>
19
#include <utility>
20
21
#include "absl/base/nullability.h"
22
#include "google/protobuf/arena.h"
23
24
namespace cel {
25
26
template <typename T = void>
27
struct ArenaTraits;
28
29
namespace common_internal {
30
31
template <typename T>
32
struct AssertArenaType : std::false_type {
33
  static_assert(!std::is_void_v<T>, "T must not be void");
34
  static_assert(!std::is_reference_v<T>, "T must not be a reference");
35
  static_assert(!std::is_volatile_v<T>, "T must not be volatile qualified");
36
  static_assert(!std::is_const_v<T>, "T must not be const qualified");
37
  static_assert(!std::is_array_v<T>, "T must not be an array");
38
};
39
40
template <typename, typename = void>
41
struct ArenaTraitsConstructible {
42
  using type = std::false_type;
43
};
44
45
template <typename T>
46
struct ArenaTraitsConstructible<
47
    T, std::void_t<decltype(ArenaTraits<T>::constructible)>> {
48
  using type = typename ArenaTraits<T>::constructible;
49
};
50
51
template <typename T>
52
std::enable_if_t<google::protobuf::Arena::is_arena_constructable<T>::value,
53
                 google::protobuf::Arena* absl_nullable>
54
GetArena(const T* absl_nullable ptr) {
55
  return ptr != nullptr ? ptr->GetArena() : nullptr;
56
}
57
58
template <typename T>
59
std::enable_if_t<!google::protobuf::Arena::is_arena_constructable<T>::value,
60
                 google::protobuf::Arena* absl_nullable>
61
GetArena([[maybe_unused]] const T* absl_nullable ptr) {
62
  return nullptr;
63
}
64
65
template <typename, typename = void>
66
struct HasArenaTraitsTriviallyDestructible : std::false_type {};
67
68
template <typename T>
69
struct HasArenaTraitsTriviallyDestructible<
70
    T, std::void_t<decltype(ArenaTraits<T>::trivially_destructible(
71
           std::declval<const T&>()))>> : std::true_type {};
72
73
}  // namespace common_internal
74
75
template <>
76
struct ArenaTraits<void> {
77
  template <typename U>
78
  using constructible = std::disjunction<
79
      typename common_internal::AssertArenaType<U>::type,
80
      typename common_internal::ArenaTraitsConstructible<U>::type>;
81
82
  template <typename U>
83
  using always_trivially_destructible =
84
      std::disjunction<typename common_internal::AssertArenaType<U>::type,
85
                       std::is_trivially_destructible<U>>;
86
87
  template <typename U>
88
7.39M
  static bool trivially_destructible(const U& obj) {
89
7.39M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
7.39M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
7.39M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
7.39M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
7.39M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
7.39M
    if constexpr (always_trivially_destructible<U>()) {
96
3.25M
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
4.14M
                             U>::value) {
101
4.14M
      return ArenaTraits<U>::trivially_destructible(obj);
102
4.14M
    } else {
103
0
      return false;
104
0
    }
105
7.39M
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<std::__1::monostate>(std::__1::monostate const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedMessageValue>(cel::ParsedMessageValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::NullValue>(cel::NullValue const&)
Line
Count
Source
88
213
  static bool trivially_destructible(const U& obj) {
89
213
    static_assert(!std::is_void_v<U>, "T must not be void");
90
213
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
213
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
213
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
213
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
213
    if constexpr (always_trivially_destructible<U>()) {
96
213
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
213
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::BoolValue>(cel::BoolValue const&)
Line
Count
Source
88
227k
  static bool trivially_destructible(const U& obj) {
89
227k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
227k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
227k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
227k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
227k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
227k
    if constexpr (always_trivially_destructible<U>()) {
96
227k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
227k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::IntValue>(cel::IntValue const&)
Line
Count
Source
88
2.77M
  static bool trivially_destructible(const U& obj) {
89
2.77M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
2.77M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
2.77M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
2.77M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
2.77M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
2.77M
    if constexpr (always_trivially_destructible<U>()) {
96
2.77M
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
2.77M
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::UintValue>(cel::UintValue const&)
Line
Count
Source
88
31.1k
  static bool trivially_destructible(const U& obj) {
89
31.1k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
31.1k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
31.1k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
31.1k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
31.1k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
31.1k
    if constexpr (always_trivially_destructible<U>()) {
96
31.1k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
31.1k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::DoubleValue>(cel::DoubleValue const&)
Line
Count
Source
88
193k
  static bool trivially_destructible(const U& obj) {
89
193k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
193k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
193k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
193k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
193k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
193k
    if constexpr (always_trivially_destructible<U>()) {
96
193k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
193k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::DurationValue>(cel::DurationValue const&)
Line
Count
Source
88
278
  static bool trivially_destructible(const U& obj) {
89
278
    static_assert(!std::is_void_v<U>, "T must not be void");
90
278
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
278
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
278
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
278
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
278
    if constexpr (always_trivially_destructible<U>()) {
96
278
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
278
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::TimestampValue>(cel::TimestampValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::TypeValue>(cel::TypeValue const&)
Line
Count
Source
88
12.3k
  static bool trivially_destructible(const U& obj) {
89
12.3k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
12.3k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
12.3k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
12.3k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
12.3k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
12.3k
    if constexpr (always_trivially_destructible<U>()) {
96
12.3k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
12.3k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyListValue>(cel::common_internal::LegacyListValue const&)
Line
Count
Source
88
5.62k
  static bool trivially_destructible(const U& obj) {
89
5.62k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
5.62k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
5.62k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
5.62k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
5.62k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
5.62k
    if constexpr (always_trivially_destructible<U>()) {
96
5.62k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
5.62k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedJsonListValue>(cel::ParsedJsonListValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedRepeatedFieldValue>(cel::ParsedRepeatedFieldValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomListValue>(cel::CustomListValue const&)
Line
Count
Source
88
5.49k
  static bool trivially_destructible(const U& obj) {
89
5.49k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
5.49k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
5.49k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
5.49k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
5.49k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
5.49k
    if constexpr (always_trivially_destructible<U>()) {
96
5.49k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
5.49k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyMapValue>(cel::common_internal::LegacyMapValue const&)
Line
Count
Source
88
296
  static bool trivially_destructible(const U& obj) {
89
296
    static_assert(!std::is_void_v<U>, "T must not be void");
90
296
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
296
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
296
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
296
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
296
    if constexpr (always_trivially_destructible<U>()) {
96
296
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
296
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedJsonMapValue>(cel::ParsedJsonMapValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ParsedMapFieldValue>(cel::ParsedMapFieldValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomMapValue>(cel::CustomMapValue const&)
Line
Count
Source
88
3.75k
  static bool trivially_destructible(const U& obj) {
89
3.75k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
3.75k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
3.75k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
3.75k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
3.75k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
3.75k
    if constexpr (always_trivially_destructible<U>()) {
96
3.75k
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
3.75k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::LegacyStructValue>(cel::common_internal::LegacyStructValue const&)
Line
Count
Source
88
266
  static bool trivially_destructible(const U& obj) {
89
266
    static_assert(!std::is_void_v<U>, "T must not be void");
90
266
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
266
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
266
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
266
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
266
    if constexpr (always_trivially_destructible<U>()) {
96
266
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
                             U>::value) {
101
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
266
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::CustomStructValue>(cel::CustomStructValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::OpaqueValue>(cel::OpaqueValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::BytesValue>(cel::BytesValue const&)
Line
Count
Source
88
144k
  static bool trivially_destructible(const U& obj) {
89
144k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
144k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
144k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
144k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
144k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
144k
                             U>::value) {
101
144k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
144k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::StringValue>(cel::StringValue const&)
Line
Count
Source
88
23.9k
  static bool trivially_destructible(const U& obj) {
89
23.9k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
23.9k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
23.9k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
23.9k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
23.9k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
23.9k
                             U>::value) {
101
23.9k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
23.9k
  }
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::ErrorValue>(cel::ErrorValue const&)
Unexecuted instantiation: bool cel::ArenaTraits<void>::trivially_destructible<cel::UnknownValue>(cel::UnknownValue const&)
bool cel::ArenaTraits<void>::trivially_destructible<cel::common_internal::ByteString>(cel::common_internal::ByteString const&)
Line
Count
Source
88
549k
  static bool trivially_destructible(const U& obj) {
89
549k
    static_assert(!std::is_void_v<U>, "T must not be void");
90
549k
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
549k
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
549k
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
549k
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
549k
                             U>::value) {
101
549k
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
549k
  }
bool cel::ArenaTraits<void>::trivially_destructible<cel::Value>(cel::Value const&)
Line
Count
Source
88
3.42M
  static bool trivially_destructible(const U& obj) {
89
3.42M
    static_assert(!std::is_void_v<U>, "T must not be void");
90
3.42M
    static_assert(!std::is_reference_v<U>, "T must not be a reference");
91
3.42M
    static_assert(!std::is_volatile_v<U>, "T must not be volatile qualified");
92
3.42M
    static_assert(!std::is_const_v<U>, "T must not be const qualified");
93
3.42M
    static_assert(!std::is_array_v<U>, "T must not be an array");
94
95
    if constexpr (always_trivially_destructible<U>()) {
96
      return true;
97
    } else if constexpr (google::protobuf::Arena::is_destructor_skippable<U>::value) {
98
      return obj.GetArena() != nullptr;
99
    } else if constexpr (common_internal::HasArenaTraitsTriviallyDestructible<
100
3.42M
                             U>::value) {
101
3.42M
      return ArenaTraits<U>::trivially_destructible(obj);
102
    } else {
103
      return false;
104
    }
105
3.42M
  }
106
};
107
108
}  // namespace cel
109
110
#endif  // THIRD_PARTY_CEL_CPP_COMMON_ARENA_H_