File: packettype.h

package info (click to toggle)
regina-normal 7.4.1-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 154,244 kB
  • sloc: cpp: 295,026; xml: 9,992; sh: 1,344; python: 1,225; perl: 616; ansic: 138; makefile: 26
file content (522 lines) | stat: -rw-r--r-- 18,528 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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522

/**************************************************************************
 *                                                                        *
 *  Regina - A Normal Surface Theory Calculator                           *
 *  Computational Engine                                                  *
 *                                                                        *
 *  Copyright (c) 1999-2025, Ben Burton                                   *
 *  For further details contact Ben Burton (bab@debian.org).              *
 *                                                                        *
 *  This program is free software; you can redistribute it and/or         *
 *  modify it under the terms of the GNU General Public License as        *
 *  published by the Free Software Foundation; either version 2 of the    *
 *  License, or (at your option) any later version.                       *
 *                                                                        *
 *  As an exception, when this program is distributed through (i) the     *
 *  App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or     *
 *  (iii) Google Play by Google Inc., then that store may impose any      *
 *  digital rights management, device limits and/or redistribution        *
 *  restrictions that are required by its terms of service.               *
 *                                                                        *
 *  This program is distributed in the hope that it will be useful, but   *
 *  WITHOUT ANY WARRANTY; without even the implied warranty of            *
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 *  General Public License for more details.                              *
 *                                                                        *
 *  You should have received a copy of the GNU General Public License     *
 *  along with this program. If not, see <https://www.gnu.org/licenses/>. *
 *                                                                        *
 **************************************************************************/

/*! \file packet/packettype.h
 *  \brief Defines constants for the various packet types known to Regina.
 */

#ifndef __REGINA_PACKETTYPE_H
#ifndef __DOXYGEN
#define __REGINA_PACKETTYPE_H
#endif

#include "regina-config.h" // for REGINA_HIGHDIM
#include "regina-core.h"
#include "triangulation/forward.h"

namespace regina {

/**
 * Represents the different types of packet that are available in Regina.
 *
 * \ingroup packet
 */
enum class PacketType {
    /**
     * Does not represent any of Regina's packet types.
     *
     * This can be used (for example) for initialising a PacketType variable.
     */
    None = 0,
    /**
     * Represents a container packet, of class Container.
     */
    Container = 1,
    /**
     * Represents a text packet, of class Text.
     */
    Text = 2,
    /**
     * Represents a normal surface list, of class NormalSurfaces.
     */
    NormalSurfaces = 6,
    /**
     * Represents a script packet, of class Script.
     */
    Script = 7,
    /**
     * Represents a normal surface filter, of class SurfaceFilter or
     * one of its descendant classes.
     */
    SurfaceFilter = 8,
    /**
     * Represents an angle structure list, of class AngleStructures.
     */
    AngleStructures = 9,
    /**
     * Represents an arbitrary file attachment, of class Attachment.
     */
    Attachment = 10,
    /**
     * Represents a normal hypersurface list, of class NormalHypersurfaces.
     */
    NormalHypersurfaces = 13,
    /**
     * Represents a triangulation in the embedded SnapPea kernel, of
     * class SnapPeaTriangulation.
     */
    SnapPea = 16,
    /**
     * Represents a combinatorial diagram of a knot or link in the 3-sphere,
     * of class Link.
     */
    Link = 17,
    /**
     * Represents a specific embedding of a knot or link in 3-dimensional space,
     * of class SpatialLink.
     */
    SpatialLink = 18,
    /**
     * Represents a 2-dimensional triangulation, of class Triangulation<2>.
     */
    Triangulation2 = 15,
    /**
     * Represents a 3-dimensional triangulation, of class Triangulation<3>.
     */
    Triangulation3 = 3,
    /**
     * Represents a 4-dimensional triangulation, of class Triangulation<4>.
     */
    Triangulation4 = 11,
    /**
     * Represents a 5-dimensional triangulation, of class Triangulation<5>.
     */
    Triangulation5 = 105,
    /**
     * Represents a 6-dimensional triangulation, of class Triangulation<6>.
     */
    Triangulation6 = 106,
    /**
     * Represents a 7-dimensional triangulation, of class Triangulation<7>.
     */
    Triangulation7 = 107,
    /**
     * Represents a 8-dimensional triangulation, of class Triangulation<8>.
     */
    Triangulation8 = 108,
#ifdef REGINA_HIGHDIM
    /**
     * Represents a 9-dimensional triangulation, of class Triangulation<9>.
     */
    Triangulation9 = 109,
    /**
     * Represents a 10-dimensional triangulation, of class Triangulation<10>.
     */
    Triangulation10 = 110,
    /**
     * Represents a 11-dimensional triangulation, of class Triangulation<11>.
     */
    Triangulation11 = 111,
    /**
     * Represents a 12-dimensional triangulation, of class Triangulation<12>.
     */
    Triangulation12 = 112,
    /**
     * Represents a 13-dimensional triangulation, of class Triangulation<13>.
     */
    Triangulation13 = 113,
    /**
     * Represents a 14-dimensional triangulation, of class Triangulation<14>.
     */
    Triangulation14 = 114,
    /**
     * Represents a 15-dimensional triangulation, of class Triangulation<15>.
     */
    Triangulation15 = 115
#endif /* REGINA_HIGHDIM */
};

/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::None.
 */
[[deprecated]] inline constexpr PacketType PACKET_NONE = PacketType::None;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Container.
 */
[[deprecated]] inline constexpr PacketType PACKET_CONTAINER =
    PacketType::Container;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Text.
 */
[[deprecated]] inline constexpr PacketType PACKET_TEXT = PacketType::Text;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::NormalSurfaces.
 */
[[deprecated]] inline constexpr PacketType PACKET_NORMALSURFACES =
    PacketType::NormalSurfaces;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Script.
 */
[[deprecated]] inline constexpr PacketType PACKET_SCRIPT = PacketType::Script;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::SurfaceFilter.
 */
[[deprecated]] inline constexpr PacketType PACKET_SURFACEFILTER =
    PacketType::SurfaceFilter;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::AngleStructures.
 */
[[deprecated]] inline constexpr PacketType PACKET_ANGLESTRUCTURES =
    PacketType::AngleStructures;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Attachment.
 */
[[deprecated]] inline constexpr PacketType PACKET_ATTACHMENT = PacketType::Attachment;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::NormalHypersurfaces.
 */
[[deprecated]] inline constexpr PacketType PACKET_NORMALHYPERSURFACES =
    PacketType::NormalHypersurfaces;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::SnapPea.
 */
[[deprecated]] inline constexpr PacketType PACKET_SNAPPEATRIANGULATION =
    PacketType::SnapPea;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Link.
 */
[[deprecated]] inline constexpr PacketType PACKET_LINK = PacketType::Link;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation2.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION2 =
    PacketType::Triangulation2;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation3.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION3 =
    PacketType::Triangulation3;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation4.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION4 =
    PacketType::Triangulation4;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation5.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION5 =
    PacketType::Triangulation5;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation6.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION6 =
    PacketType::Triangulation6;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation7.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION7 =
    PacketType::Triangulation7;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation8.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION8 =
    PacketType::Triangulation8;
#ifdef REGINA_HIGHDIM
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation9.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION9 =
    PacketType::Triangulation9;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation10.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION10 =
    PacketType::Triangulation10;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation11.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION11 =
    PacketType::Triangulation11;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation12.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION12 =
    PacketType::Triangulation12;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation13.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION13 =
    PacketType::Triangulation13;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation14.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION14 =
    PacketType::Triangulation14;
/**
 * A deprecated constant representing one of the different types of packet.
 *
 * \deprecated This has been renamed to the scoped enumeration constant
 * PacketType::Triangulation15.
 */
[[deprecated]] inline constexpr PacketType PACKET_TRIANGULATION15 =
    PacketType::Triangulation15;
#endif /* REGINA_HIGHDIM */

/**
 * A class used to query general information about different packet types.
 *
 * This class has become much simpler since Regina 7.0.  It is no longer
 * templated, and instead just offers a name() function that is accessible at
 * both compile time and runtime.
 *
 * \ingroup packet
 */
class PacketInfo {
    public:
        /**
         * Returns a human-readable name for the given packet type.
         *
         * The first letter of the returned string will be upper-case,
         * and all subsequent letters will be lower-case (except for
         * special words such as "PDF" and "SnapPea", which will retain
         * their internal upper-case letters where required).
         *
         * This routine is guaranteed to return a non-null string, even
         * if \a packetType is not one of the PacketType enum values.
         *
         * \param packetType the packet type being queried.
         * \return the name of the given packet type.
         */
        constexpr static const char* name(PacketType packetType) {
            switch (packetType) {
                case PacketType::Container:
                    return "Container";
                case PacketType::Text:
                    return "Text";
                case PacketType::NormalSurfaces:
                    return "Normal surface list";
                case PacketType::Script:
                    return "Script";
                case PacketType::SurfaceFilter:
                    return "Surface filter";
                case PacketType::AngleStructures:
                    return "Angle structure list";
                case PacketType::Attachment:
                    return "Attachment";
                case PacketType::NormalHypersurfaces:
                    return "Normal hypersurface list";
                case PacketType::SnapPea:
                    return "SnapPea triangulation";
                case PacketType::Link:
                    return "Link";
                case PacketType::SpatialLink:
                    return "Spatial Link";
                case PacketType::Triangulation2:
                    return "2-D triangulation";
                case PacketType::Triangulation3:
                    return "3-D triangulation";
                case PacketType::Triangulation4:
                    return "4-D triangulation";
                case PacketType::Triangulation5:
                    return "5-D triangulation";
                case PacketType::Triangulation6:
                    return "6-D triangulation";
                case PacketType::Triangulation7:
                    return "7-D triangulation";
                case PacketType::Triangulation8:
                    return "8-D triangulation";
            #ifdef REGINA_HIGHDIM
                case PacketType::Triangulation9:
                    return "9-D triangulation";
                case PacketType::Triangulation10:
                    return "10-D triangulation";
                case PacketType::Triangulation11:
                    return "11-D triangulation";
                case PacketType::Triangulation12:
                    return "12-D triangulation";
                case PacketType::Triangulation13:
                    return "13-D triangulation";
                case PacketType::Triangulation14:
                    return "14-D triangulation";
                case PacketType::Triangulation15:
                    return "15-D triangulation";
            #endif /* REGINA_HIGHDIM */
                default:
                    return "Unknown";
            }
        }
};

/**
 * The packet type constant for a packet wrapping an object of type \a Held.
 *
 * This variable is only meaningful when \a Held is not itself a packet type,
 * but instead is a standalone type that can (if desired) be wrapped in a
 * packet of type PacketOf<Held>.  Examples of such types include Link and
 * Triangulation<dim>.
 *
 * In all other cases, this variable will be PacketType::None.
 *
 * In particular, if \a Held is a full packet type itself (such as Container,
 * Script, or PacketOf<...>), then this variable will be PacketType::None.
 *
 * \nopython
 */
template <typename Held>
static constexpr PacketType packetTypeHolds = PacketType::None;

#ifndef __DOXYGEN
// Don't confuse doxygen with specialisations.

class AngleStructures;
class Link;
class SpatialLink;
class NormalHypersurfaces;
class NormalSurfaces;
class SnapPeaTriangulation;
template <int> class Triangulation;

template <>
inline constexpr PacketType packetTypeHolds<Link> = PacketType::Link;

template <>
inline constexpr PacketType packetTypeHolds<SpatialLink> =
    PacketType::SpatialLink;

template <>
inline constexpr PacketType packetTypeHolds<SnapPeaTriangulation> =
    PacketType::SnapPea;

template <>
inline constexpr PacketType packetTypeHolds<Triangulation<2>> =
    PacketType::Triangulation2;

template <>
inline constexpr PacketType packetTypeHolds<Triangulation<3>> =
    PacketType::Triangulation3;

template <>
inline constexpr PacketType packetTypeHolds<Triangulation<4>> =
    PacketType::Triangulation4;

template <int dim>
inline constexpr PacketType packetTypeHolds<Triangulation<dim>> =
    PacketType(100 + dim); // dimensions 5-15 use constants 105-115

template <>
inline constexpr PacketType packetTypeHolds<AngleStructures> =
    PacketType::AngleStructures;

template <>
inline constexpr PacketType packetTypeHolds<NormalSurfaces> =
    PacketType::NormalSurfaces;

template <>
inline constexpr PacketType packetTypeHolds<NormalHypersurfaces> =
    PacketType::NormalHypersurfaces;

#endif // __DOXYGEN

} // namespace regina

#endif