File: nesting_specializations.hpp

package info (click to toggle)
exhale 0.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,616 kB
  • sloc: python: 9,057; cpp: 1,260; javascript: 915; f90: 29; ansic: 18; makefile: 16
file content (309 lines) | stat: -rw-r--r-- 10,995 bytes parent folder | download
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/***************************************************************************************
 * This file is dedicated to the public domain.  If your jurisdiction requires a       *
 * specific license:                                                                   *
 *                                                                                     *
 * Copyright (c) Stephen McDowell, 2017-2024                                           *
 * License:      CC0 1.0 Universal                                                     *
 * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode           *
 **************************************************************************************/
/**
 * \file
 *
 * \brief This file tests struct nesting with template specializations.
 */
#pragma once

#include <string>
#include <type_traits>
#include <vector>

/** Specialized struct nesting for the joy and fun of all:
 * https://github.com/svenevs/exhale/issues/156 */
namespace special {
    /// Normal struct nesting.
    struct Normal {
        /// The id `"Normal"`.
        std::string id() const { return "Normal"; }

        /// Nested struct.
        struct Nested {
            /// The id `"Nested"`.
            std::string id() const { return "Nested"; }

            /// Deeper nesting like wow.
            struct Like {
                /// The id `"Like"`.
                std::string id() const { return "Like"; }

                /// Even deeper nesting `\o/`.
                struct Usual {
                    /// The id `"Usual"`.
                    std::string id() const { return "Usual"; }
                };
            };
        };
    };

    /** A dummy struct with template parameters to use for testing nesting
     * specialization name parsing with "template template parameters". */
    template <int Twidth, int Theight>
    struct Image {
        static constexpr int width = Twidth;///< Width of the image.
        static constexpr int height = Theight;///< Height of the image.
    };

    /// Unspecialized template class with nesting.
    template <class TImage, typename Tdata_t, int Tchannels>
    class ImageBuffer {
    public:
        using Image_t = TImage;///< Convenience typedef for template `TImage`.
        using data_t = Tdata_t;///< Convenience typedef for template `Tdata_t`.
        static constexpr int width = Image_t::width;///< The width of the image.
        static constexpr int height = Image_t::height;///< The height of the image.
        static constexpr int channels = Tchannels;///< The number of channels per pixel.

        /// Never do this in real life...
        struct Data {
            data_t vals[channels];///< The pixel data.
        };

        /// Checking nested specials too.
        template <int TNested>
        struct SomeThing {
            /// The identifier
            std::string id() const { return std::to_string(TNested); }
        };

        /// How much memory is used.
        constexpr int size() const {
            return width * height * sizeof(Data);
        }
    };

    /// Now lets specialize it partially and arbitrarily change behavior!
    template <class TImage, typename Tdata_t>
    class ImageBuffer<TImage, Tdata_t, 4> {
    public:
        using Image_t = TImage;///< Convenience typedef for template `TImage`.
        using data_t = Tdata_t;///< Convenience typedef for template `Tdata_t`.
        static constexpr int width = Image_t::width;///< The width of the image.
        static constexpr int height = Image_t::height;///< The height of the image.
        static constexpr int channels = 4;///< The number of channels per pixel.

        /// So really, don't change how things work like this in real life...
        struct Data {
            data_t r;///< Red.
            data_t g;///< Green.
            data_t b;///< Blue.
            data_t a;///< Alpha.
        };

        /// This one is not as special, right?
        struct SomeThing {
            /// The special identifier.
            std::string id() const { return "I AM SPECIAL!"; }
        };

        /// How much memory is used.
        constexpr int size() const {
            return width * height * 4 * sizeof(data_t);
        }
    };

    /// A fully specialized buffah.
    template <>
    class ImageBuffer<Image<1920, 1080>, float, 128> {
    public:
        using Image_t = Image<1920, 1080>;///< Convenience typedef for the Image class.
        using data_t = float;///< Convenience typedef for underlying data type `float`.
        static constexpr int width = 1920;///< The width of the image.
        static constexpr int height = 1080;///< The height of the image.
        static constexpr int channels = 128;///< The number of channels per pixel.

        /// Definitely don't do this.
        struct Data {
            std::vector<float> samples;///< so arbitrary
        };

        /// Super special.
        struct SomeThing {
            /// The spectral identifier.
            std::string id() const { return "Spectral"; }
        };

        /// This is a lie.
        constexpr int size() const { return 88; }
    };

    /** The original example expanded a bit. Thanks florian for making it
     * copy-pasteable :) */
    template <size_t N>
    struct Base {
        /// How big the base is.
        constexpr size_t size() const { return N; }
        struct A {};///< eeep
    };

    /// Specialized base.
    template <>
    struct Base<2> {
        /// It is bigger for no real reason.
        constexpr size_t size() const { return 42; }

        /// Inner struct 1.
        struct InnerStruct {
            /// returns 3
            int a() const { return 3; };
        };

        /// Inner struct 2.
        struct AnotherNestedStruct {
            /// returns 4
            double b() const { return 4; }
        };


        char base_member{'!'};///< not used

        /// Unspecialized inner struct.
        template <size_t M, typename no_use_this = void>
        struct InnerTemplatedStruct {
            /// returns `{`
            char s() const { return '{'; }
        };

        /// Specialized inner struct.
        template <typename dont_use_this>
        struct InnerTemplatedStruct<4, dont_use_this>{
            /// returns `}`
            char s() const { return '}'; }
        };
    };

    /// unique snowflakes are unique
    namespace unique {
        /// very unique
        namespace snowflake {
            /// A wrapper struct in a namespace so I can have a final template parameter
            /// with some `::` in it.
            template <auto Epoch>
            struct Ontology {
                /// The current version of the simulation.
                static constexpr auto epoch() { return Epoch; }
                /// The dual of the epoch of the simulation.  Same as epoch.
                auto dual() const { return epoch(); }
            };

            /// A very special epoch with a dual meaning.
            template <>
            struct Ontology<11> {
                /// The current version of the simulation.
                static constexpr auto epoch() { return 11; }
                /// The dual of the epoch of the simulation, which is special. ?
                auto dual() const { return 22; }
            };
        }

        /// A nonsense class to specialize.
        template <int X, class T>
        struct Nonsense {
            /// Initializes the thing.
            Nonsense(const T &t) : thing{t} { }
            /// A T reference thing.
            const T &thing;

            /// Returns template parameter X.
            int x() const { return X; }
            /// Returns the tea.
            const T &t() const { return thing; }
        };

        /// Partially specialized nonsense.
        template <int X>
        struct Nonsense<X, snowflake::Ontology<X>> {
            /// Makes some nonsense.
            Nonsense(const snowflake::Ontology<X> &so) : thing{so} { }
            /// A snowflake thing.
            const snowflake::Ontology<X> &thing;

            /// Returns snowflake epoch plus dual plus X.
            int x() const {
                return snowflake::Ontology<X>::epoch() + thing.dual() + X;
            }
            /// Gives you a snowflake.
            const snowflake::Ontology<X> &t() const { return thing; }
        };

        /// Alias to partial nonsense.
        template <int X>
        using PartialNonsense = Nonsense<X, snowflake::Ontology<X>>;

        /// A fully specialized nonsense.
        template <>
        struct Nonsense<11, snowflake::Ontology<11>> {
            /// Fully special nonsense.
            Nonsense(const snowflake::Ontology<11> &so) : thing{so} { }
            /// A special snowflake thing.
            const snowflake::Ontology<11> &thing;

            /// Returns snowflake epoch plus dual.
            int x() const {
                return snowflake::Ontology<11>::epoch() + thing.dual();
            }
            /// Gives you a special snowflake.
            const snowflake::Ontology<11> &t() const { return thing; }
        };

        /// Alias to full nonsense.
        using FullNonsense = Nonsense<11, snowflake::Ontology<11>>;
    }

    /** More complicated templates with special characters, doing it on classes
     * intentionally (no functions allowed :p).  These are mostly here for help
     * testing limits on tokenize_template edge cases.  The tokenize_template
     * function may not even be called with these, but the python test cases
     * have these in there and this code is checked for compilation. */
    namespace complex {
        /// variadic folding stuff
        template <typename... Ts>
        struct Fold {
            /// make sure your types actually operator+...
            static auto sum(Ts... ts) { return (ts + ...); }
        };

        /// https://en.cppreference.com/w/cpp/types/void_t
        template <class...>
        using void_t = void;

        /// primary template handles types that have no nested `type` member:
        /// https://en.cppreference.com/w/cpp/types/void_t
        /// the equals sign yo
        template <class, class=void>
        struct has_type_member : std::false_type {
            /// returns `false`.
            bool meh() const { return false; }
        };

        /// specialization recognizes types that do have a nested `type` member:
        /// https://en.cppreference.com/w/cpp/types/void_t
        template <class T>
        struct has_type_member<T, void_t<typename T::type>> : std::true_type {
            /// returns `true`
            bool meh() const { return true; }
        };

        /// pure nonsense
        template <const int* I>
        struct IntPtr {
            /// gives back the I
            int i() { return *I; }
        };

        /// more nonsense
        template <const int& I>
        struct IntRef {
            /// gives back the I
            int i() { return I; }
        };
    }
}