File: types.h

package info (click to toggle)
chromium 141.0.7390.107-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,246,132 kB
  • sloc: cpp: 35,264,965; ansic: 7,169,920; javascript: 4,250,185; python: 1,460,635; asm: 950,788; xml: 751,751; pascal: 187,972; sh: 89,459; perl: 88,691; objc: 79,953; sql: 53,924; cs: 44,622; fortran: 24,137; makefile: 22,313; tcl: 15,277; php: 14,018; yacc: 8,995; ruby: 7,553; awk: 3,720; lisp: 3,096; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (70 lines) | stat: -rw-r--r-- 2,247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_DBUS_UTILS_TYPES_H_
#define COMPONENTS_DBUS_UTILS_TYPES_H_

#include <map>
#include <tuple>
#include <type_traits>
#include <vector>

#include "base/files/scoped_file.h"
#include "dbus/object_path.h"

namespace dbus_utils {

class Variant;

namespace internal {

// This helper is required for nested types (eg. std::vector<std::vector<T>>)
// because concepts cannot be forward declared.
template <typename T>
struct IsSupportedDBusTypeHelper : std::false_type {};

template <typename T>
concept IsSupportedPrimitive =
    std::is_same_v<T, int16_t> || std::is_same_v<T, uint16_t> ||
    std::is_same_v<T, int32_t> || std::is_same_v<T, uint32_t> ||
    std::is_same_v<T, int64_t> || std::is_same_v<T, uint64_t> ||
    std::is_same_v<T, bool> || std::is_same_v<T, double> ||
    std::is_same_v<T, uint8_t> || std::is_same_v<T, std::string> ||
    std::is_same_v<T, dbus::ObjectPath> || std::is_same_v<T, base::ScopedFD>;

template <typename T>
struct IsSupportedArray : std::false_type {};

template <typename E, typename A>
  requires IsSupportedDBusTypeHelper<E>::value
struct IsSupportedArray<std::vector<E, A>> : std::true_type {};

template <typename T>
struct IsSupportedMap : std::false_type {};

template <typename K, typename V, typename C, typename A>
  requires IsSupportedDBusTypeHelper<K>::value &&
           IsSupportedDBusTypeHelper<V>::value
struct IsSupportedMap<std::map<K, V, C, A>> : std::true_type {};

template <typename T>
struct IsSupportedStruct : std::false_type {};

template <typename... Ts>
  requires(IsSupportedDBusTypeHelper<Ts>::value && ...)
struct IsSupportedStruct<std::tuple<Ts...>> : std::true_type {};

template <typename T>
  requires IsSupportedPrimitive<T> || IsSupportedArray<T>::value ||
           IsSupportedMap<T>::value || IsSupportedStruct<T>::value ||
           std::is_same_v<T, Variant>
struct IsSupportedDBusTypeHelper<T> : std::true_type {};

template <typename T>
concept IsSupportedDBusType = IsSupportedDBusTypeHelper<T>::value;

}  // namespace internal
}  // namespace dbus_utils

#endif  // COMPONENTS_DBUS_UTILS_TYPES_H_