File: container.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 (168 lines) | stat: -rw-r--r-- 6,697 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

/**************************************************************************
 *                                                                        *
 *  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/container.h
 *  \brief Contains a packet whose entire life purpose is to contain
 *  other packets.
 */

#ifndef __REGINA_CONTAINER_H
#ifndef __DOXYGEN
#define __REGINA_CONTAINER_H
#endif

#include "regina-core.h"
#include "packet/packet.h"

namespace regina {

class Container;

/**
 * A packet that simply contains other packets.  Such
 * a packet contains no real data.
 *
 * Like all packet types, this class does not support C++ move semantics
 * since this would interfere with the structure of the packet tree.
 * It does support copy construction, copy assignment and swaps, but only
 * for consistency with the other packet types.  Such copy/swap operations
 * are pointless for container packets since they do not copy/swap the packet
 * infrastructure (e.g., they do not touch packet labels, or the packet tree,
 * or event listeners), and containers have no "real" content of their own.
 *
 * \ingroup packet
 */
class Container : public Packet {
    REGINA_PACKET(PacketType::Container, "Container")

    public:
        /**
         * Default constructor.
         */
        Container() = default;

        /**
         * Constructs a new container with the given packet label.
         *
         * This constructor is (for example) helpful when you are
         * building a complex packet tree to save to a Regina data file,
         * and you are using containers to organise the data in this tree.
         *
         * \param label the packet label for this new container.
         */
        Container(const std::string& label);

        /**
         * Copy constructor that does nothing.
         *
         * This is only here for consistency with the other packet types.
         * Like all packet types, this copy constructor does not copy any of
         * the packet infrastructure (e.g., it will not copy the packet label,
         * it will not clone the given packet's children, and it will not
         * insert the new packet into any packet tree).
         */
        Container(const Container&) = default;

        /**
         * Copy assignment operator that does nothing.
         *
         * This is only here for consistency with the other packet types.
         * Like all packet types, this assignment operator does not copy any of
         * the packet infrastructure (e.g., it will not copy the packet label,
         * or change this packet's location in any packet tree).
         *
         * \return a reference to this packet.
         */
        Container& operator = (const Container&) = default;

        /**
         * Swap function that does nothing.
         *
         * This is only here for consistency with the other packet types.
         * Like all packet types, this operation does not swap any of
         * the packet infrastructure (e.g., it will not swap packet labels,
         * or change either packet's location in any packet tree).
         */
        void swap(Container&) {}

        void writeTextShort(std::ostream& out) const override;

    protected:
        std::shared_ptr<Packet> internalClonePacket() const override;
        void writeXMLPacketData(std::ostream& out, FileFormat format,
            bool anon, PacketRefs& refs) const override;
};

/**
 * Swap function for container packets that does nothing.
 *
 * This is only here for consistency with the other packet types.
 * For container packets, the swap operation does nothing since containers
 * have no "real" content of their own.  See the member function
 * Container::swap() for further explanation.
 *
 * \ingroup packet
 */
inline void swap(Container&, Container&) {}

// Inline functions for Container

inline Container::Container(const std::string& label) {
    setLabel(label);
}

inline void Container::writeTextShort(std::ostream& o) const {
    if (! firstChild())
        o << "Empty container";
    else {
        size_t c = countChildren();
        size_t d = countDescendants();
        o << "Container with "
            << c << (c == 1 ? " child" : " children") << ", "
            << d << (d == 1 ? " descendant" : " descendants");
    }
}

inline std::shared_ptr<Packet> Container::internalClonePacket() const {
    return std::make_shared<Container>();
}

inline void Container::writeXMLPacketData(std::ostream& out, FileFormat format,
        bool anon, PacketRefs& refs) const {
    writeXMLHeader(out, "container", format, anon, refs, true);
    if (! anon)
        writeXMLTreeData(out, format, refs);
    writeXMLFooter(out, "container", format);
}

} // namespace regina

#endif