P4C
The P4 Compiler
Loading...
Searching...
No Matches
stringify.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17/* -*-c++-*- */
18
19#ifndef LIB_STRINGIFY_H_
20#define LIB_STRINGIFY_H_
21
22#include <cstdarg>
23#include <string>
24#include <string_view>
25#include <type_traits>
26
27// FIXME: Replace with big_int_fwd.h with Boost 1.84+
28#include "big_int.h"
29#include "cstring.h"
30
32 public:
33 virtual void dbprint(std::ostream &out) const = 0;
34 void print() const; // useful in the debugger
35 virtual ~IHasDbPrint() = default;
36};
37
40template <class, class = void>
41struct has_dbprint : std::false_type {};
42
43template <class T>
44struct has_dbprint<T,
45 std::void_t<decltype(std::declval<T>().dbprint(std::declval<std::ostream &>()))>>
46 : std::true_type {};
47
48template <class T>
49inline constexpr bool has_dbprint_v = has_dbprint<T>::value;
50
51// convert values to cstrings
52namespace Util {
53
55template <class, class = void>
56struct has_toString : std::false_type {};
57
58template <class T>
59struct has_toString<T, std::void_t<decltype(std::declval<T>().toString())>> : std::true_type {};
60
61template <class T>
62inline constexpr bool has_toString_v = has_toString<T>::value;
63
64template <typename T, typename = decltype(std::to_string(std::declval<T>()))>
65cstring toString(T value) {
66 return std::to_string(value);
67}
68
69template <typename T>
70auto toString(const T &value) -> typename std::enable_if_t<has_toString_v<T>, cstring> {
71 return value.toString();
72}
73
74template <typename T>
75auto toString(T &value) -> typename std::enable_if_t<has_toString_v<T>, cstring> {
76 return value.toString();
77}
78
79template <typename T>
80auto toString(const T *value) -> typename std::enable_if_t<has_toString_v<T>, cstring> {
81 return value->toString();
82}
83
84template <typename T>
85auto toString(T *value) -> typename std::enable_if_t<has_toString_v<T>, cstring> {
86 return value->toString();
87}
88
89cstring toString(bool value);
90cstring toString(const std::string &value);
91cstring toString(const char *value);
92cstring toString(cstring value);
93cstring toString(std::string_view value);
95cstring toString(const big_int &value, unsigned width, bool sign, unsigned int base = 10);
96cstring toString(const void *value);
97
98char DigitToChar(int digit);
99} // namespace Util
100
101template <typename T>
102auto operator<<(std::ostream &out, const T &value)
103 -> std::enable_if_t<Util::has_toString_v<T> && !has_dbprint_v<T>, std::ostream &> {
104 return out << value.toString();
105}
106
107template <typename T>
108auto operator<<(std::ostream &out, const T *value)
109 -> std::enable_if_t<Util::has_toString_v<T> && !has_dbprint_v<T>, std::ostream &> {
110 if (value == nullptr)
111 out << "<null>";
112 else
113 out << value->toString();
114
115 return out;
116}
117
118// Prefer dbprint() method when both toString() and dbprint() methods are present
119template <class T>
120inline auto operator<<(std::ostream &out,
121 const T &obj) -> std::enable_if_t<has_dbprint_v<T>, std::ostream &> {
122 obj.dbprint(out);
123 return out;
124}
125
126template <class T>
127inline auto operator<<(std::ostream &out,
128 const T *obj) -> std::enable_if_t<has_dbprint_v<T>, std::ostream &> {
129 if (obj)
130 obj->dbprint(out);
131 else
132 out << "<null>";
133 return out;
134}
135
136#endif /* LIB_STRINGIFY_H_ */
Definition stringify.h:31
Definition cstring.h:80
STL namespace.
SFINAE helper to check if given class has a toString method.
Definition stringify.h:56
Definition stringify.h:41