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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
|
/**************************************************************************
* *
* Regina - A Normal Surface Theory Calculator *
* Computational Engine *
* *
* Copyright (c) 1999-2011, 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. *
* *
* 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, write to the Free *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
**************************************************************************/
/* end stub */
/*! \file packet/npacket.h
* \brief Deals with packets of information that form the working data
* objects.
*/
#ifndef __NPACKET_H
#ifndef __DOXYGEN
#define __NPACKET_H
#endif
#include <iostream>
#include <memory>
#include <set>
#include "regina-core.h"
#include "shareableobject.h"
#include "packet/npacketlistener.h"
#include "utilities/boostutils.h"
namespace regina {
class NFile;
class NPacketListener;
class NXMLPacketReader;
/**
* \addtogroup packet Basic Packet Types
* Packet administration and some basic packet types.
* @{
*/
/**
* Represents a packet of information that may be individually edited or
* operated upon. Packets are stored in a dependency tree,
* where child packets fit within the context of (or otherwise
* cannot live without) parent packets.
*
* <b>When deriving classes from NPacket:</b>
* <ul>
* <li>The file packetregistry.h must be updated to reflect the new
* packet type.</li>
* <li>Virtual functions getPacketType() and getPacketTypeName() must
* be declared but not implemented. The registry utilities
* will take care of their implementations.</li>
* <li><tt>public static const int packetType</tt> must be declared.
* The registry utilities will take care of assigning it a value.</li>
* <li>All abstract functions must be implemented.</li>
* <li>A public function
* <tt>static NXMLPacketReader* getXMLReader(NPacket* parent)</tt>
* must be declared and implemented. See the notes for getXMLReader()
* for further details.</li>
* <li>Whenever the contents of the packet are changed, a local
* ChangeEventSpan must be declared on the stack to notify listeners of
* the change.</li>
* </ul>
*
* Note that external objects can listen for events on packets, such as
* when packets are changed or about to be destroyed. See the
* NPacketListener class notes for details.
*
* \todo \feature Provide automatic name selection/specification upon
* child packet insertion.
*/
class REGINA_API NPacket : public ShareableObject {
public:
/**
* Contains the integer ID for this packet.
* Each distinct packet type must have a unique ID, and this
* should be a positive integer. See packetregistry.h for
* further requirements regarding ID selection.
*
* This member is not actually provided for NPacket itself, but
* must be declared for every packet subclass that will be
* instantiated. A value need not be assigned; packetregistry.h
* will take care of this task when you register the packet.
*/
#ifdef __DOXYGEN
static const int packetType;
#endif
private:
std::string packetLabel;
/**< The unique label for this individual packet of information. */
NPacket* treeParent;
/**< Parent packet in the tree structure (0 if none). */
NPacket* firstTreeChild;
/**< First child packet in the tree structure (0 if none). */
NPacket* lastTreeChild;
/**< Last child packet in the tree structure (0 if none). */
NPacket* prevTreeSibling;
/**< Previous sibling packet in the tree structure (0 if none). */
NPacket* nextTreeSibling;
/**< Next sibling packet in the tree structure (0 if none). */
std::auto_ptr<std::set<std::string> > tags;
/**< The set of all tags associated with this packet. */
std::auto_ptr<std::set<NPacketListener*> > listeners;
/**< All objects listening for events on this packet. */
unsigned changeEventSpans;
/**< The number of change event spans currently registered.
Change events will only be fired when this count is zero. */
bool inDestructor;
/**< Have we entered the packet destructor? */
public:
/**
* \name Constructors and Destructors
*/
/*@{*/
/**
* Constructor that inserts the new packet into the
* overall tree structure. The new packet will be inserted as
* the last child of the given parent, and will be initialised
* with no children of its own.
*
* Note that NPacket is an abstract class and cannot be
* instantiated directly.
*
* \ifacespython Not present.
*
* @param parent the parent beneath which to insert this packet,
* or 0 if this packet is to be the matriarch of a new tree.
*/
NPacket(NPacket* parent = 0);
/**
* Destructor that also orphans this packet and destroys
* all of its descendants.
*/
virtual ~NPacket();
/*@}*/
/**
* (end: Constructors and Destructors)
*/
/**
* \name Packet Identification
*/
/*@{*/
/**
* Returns the integer ID representing this type of packet.
* This is the same for all packets of this class.
*
* @return the packet type ID.
*/
virtual int getPacketType() const = 0;
/**
* Returns an English name for this type of packet.
* An example is \c NTriangulation.
* This is the same for all packets of this class.
*
* @return the packet type name.
*/
virtual std::string getPacketTypeName() const = 0;
/**
* Returns the label associated with this individual packet.
* An example is \c MyTriangulation.
* Each individual packet in the overall tree structure must
* have a unique label.
*
* @return this individual packet's label.
*/
const std::string& getPacketLabel() const;
/**
* Sets the label associated with this individual packet.
*
* \pre No other packet in the overall tree
* structure has the same label.
*
* @param newLabel the new label to give this packet.
*/
void setPacketLabel(const std::string& newLabel);
/**
* Returns a descriptive text string for the packet.
* The string is of the form <i>label (packet-type)</i>.
*
* @return the descriptive text string.
*/
std::string getFullName() const;
/**
* Returns a new label that cannot be found anywhere in the
* entire tree structure. This packet need not be the tree
* matriarch; this routine will search the entire tree to which
* this packet belongs.
*
* The new label will consist of the given base, possibly
* followed by a space and a number.
*
* @param base a string upon which the new label will be based.
* @return a new unique label.
*/
std::string makeUniqueLabel(const std::string& base) const;
/**
* Ensures that all packet labels in both this and the given
* packet tree combined are distinct. If two packets have the
* same label, one will be renamed by adding a space and a number.
*
* Packets in the given packet tree will be given priority over
* the labels; that is, if a packet in this tree has the same
* label as a packet in the given tree, it will be the packet in
* this tree that is renamed.
*
* The given packet tree may be \c null, in which case only this
* tree will be examined.
*
* \pre This and the given packet belong to different packet
* trees, and are each matriarchs in their respective trees.
*
* @param reference the packet tree with which to compare this
* tree.
* @return \c true if and only if any of the packets were
* relabelled.
*/
bool makeUniqueLabels(NPacket* reference);
/*@}*/
/**
* (end: Packet Identification)
*/
/**
* \name Tags
*/
/*@{*/
/**
* Determines whether this packet has the given associated tag.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*
* @param tag the tag to search for.
* @return \c true if the given tag is found, \c false otherwise.
*/
bool hasTag(const std::string& tag) const;
/**
* Determines whether this packet has any associated tags at all.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*
* @return \c true if this packet has any tags, \c false otherwise.
*/
bool hasTags() const;
/**
* Associates the given tag with this packet.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*
* \pre The given tag is not the empty string.
*
* @param tag the tag to add.
* @return \c true if the given tag was successfully added,
* or \c false if the given tag was already present beforehand.
*/
bool addTag(const std::string& tag);
/**
* Removes the association of the given tag with this packet.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*
* @param tag the tag to remove.
* @return \c true if the given tag was removed, or \c false if the
* given tag was not actually associated with this packet.
*/
bool removeTag(const std::string& tag);
/**
* Removes all associated tags from this packet.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*/
void removeAllTags();
/**
* Returns the set of all tags associated with this packet.
*
* Each packet can have an arbitrary set of string tags associated
* with it. The tags are not used by this calculation engine; the
* feature is provided for whatever use a developer or user chooses
* to make of it.
*
* Tags are case-sensitive. Tags associated with a single packet
* must be distinct, i.e., a particular tag cannot be associated
* more than once with the same packet.
*
* \ifacespython This routine returns a python list of strings.
*
* @return the set of all tags associated with this packet.
*/
const std::set<std::string>& getTags() const;
/*@}*/
/**
* (end: Tags)
*/
/**
* \name Event Handling
*/
/*@{*/
/**
* Registers the given packet listener to listen for events on
* this packet. See the NPacketListener class notes for
* details.
*
* \ifacespython Not present.
*
* @param listener the listener to register.
* @return \c true if the given listener was successfully registered,
* or \c false if the given listener was already registered
* beforehand.
*/
bool listen(NPacketListener* listener);
/**
* Determines whether the given packet listener is currently
* listening for events on this packet. See the NPacketListener
* class notes for details.
*
* \ifacespython Not present.
*
* @param listener the listener to search for.
* @return \c true if the given listener is currently registered
* with this packet, or \c false otherwise.
*/
bool isListening(NPacketListener* listener);
/**
* Unregisters the given packet listener so that it no longer
* listens for events on this packet. See the NPacketListener
* class notes for details.
*
* \ifacespython Not present.
*
* @param listener the listener to unregister.
* @return \c true if the given listener was successfully unregistered,
* or \c false if the given listener was not registered in the
* first place.
*/
bool unlisten(NPacketListener* listener);
/*@}*/
/**
* (end: Event Handling)
*/
/**
* \name Tree Queries
*/
/*@{*/
/**
* Determines the parent packet in the tree structure.
*
* This routine takes small constant time.
*
* @return the parent packet, or 0 if there is none.
*/
NPacket* getTreeParent() const;
/**
* Determines the first child of this packet in the tree
* structure.
*
* This routine takes small constant time.
*
* @return the first child packet, or 0 if there is none.
*/
NPacket* getFirstTreeChild() const;
/**
* Determines the last child of this packet in the tree
* structure.
*
* This routine takes small constant time.
*
* @return the last child packet, or 0 if there is none.
*/
NPacket* getLastTreeChild() const;
/**
* Determines the next sibling of this packet in the tree
* structure. This is the child of the parent that follows this
* packet.
*
* This routine takes small constant time.
*
* @return the next sibling of this packet, or 0 if there is
* none.
*/
NPacket* getNextTreeSibling() const;
/**
* Determines the previous sibling of this packet in the tree
* structure. This is the child of the parent that precedes
* this packet.
*
* This routine takes small constant time.
*
* @return the previous sibling of this packet, or 0 if there is
* none.
*/
NPacket* getPrevTreeSibling() const;
/**
* Determines the matriarch (the root) of the tree to which this
* packet belongs.
*
* @return the matriarch of the packet tree.
*/
NPacket* getTreeMatriarch() const;
/**
* Counts the number of levels between this packet and its given
* descendant in the tree structure. If \c descendant is this
* packet, the number of levels is zero.
*
* \pre This packet is equal to \c descendant, or
* can be obtained from \c descendant using only child-to-parent
* steps.
*
* @param descendant the packet whose relationship with this
* packet we are examining.
* @return the number of levels difference.
*/
unsigned levelsDownTo(const NPacket* descendant) const;
/**
* Counts the number of levels between this packet and its given
* ancestor in the tree structure. If \c ancestor is this
* packet, the number of levels is zero.
*
* \pre This packet is equal to \c ancestor, or
* can be obtained from \c ancestor using only parent-to-child
* steps.
*
* @param ancestor the packet whose relationship with this
* packet we are examining.
* @return the number of levels difference.
*/
unsigned levelsUpTo(const NPacket* ancestor) const;
/**
* Determines if this packet is equal to or an ancestor of
* the given packet in the tree structure.
*
* @param descendant the other packet whose relationships we are
* examining.
* @return \c true if and only if this packet is equal to or an
* ancestor of \c descendant.
*/
bool isGrandparentOf(const NPacket* descendant) const;
/**
* Returns the number of immediate children of this packet.
* Grandchildren and so on are not counted.
*
* @return the number of immediate children.
*/
unsigned long getNumberOfChildren() const;
/**
* Returns the total number of descendants of this packet. This
* includes children, grandchildren and so on. This packet is not
* included in the count.
*
* @return the total number of descendants.
*/
unsigned long getNumberOfDescendants() const;
/**
* Determines the total number of packets in the tree or subtree
* for which this packet is matriarch. This packet is included
* in the count.
*
* @return the total tree or subtree size.
*/
unsigned long getTotalTreeSize() const;
/*@}*/
/**
* (end: Tree Queries)
*/
/**
* \name Tree Manipulation
*/
/*@{*/
/**
* Inserts the given packet as the first child of this packet.
*
* This routine takes small constant time.
*
* \pre The given child has no parent packet.
* \pre This packet is not a descendant of the given child.
*
* \ifacespython Since this packet takes ownership of the given
* child packet, the python object containing the given child
* packet becomes a null object and should no longer be used.
* See reparent() for a way of avoiding these problems in some cases.
*
* @param child the child to insert.
*/
void insertChildFirst(NPacket* child);
/**
* Inserts the given packet as the last child of this packet.
*
* This routine takes small constant time.
*
* \pre The given child has no parent packet.
* \pre This packet is not a descendant of the given child.
*
* \ifacespython Since this packet takes ownership of the given
* child packet, the python object containing the given child
* packet becomes a null object and should no longer be used.
* See reparent() for a way of avoiding these problems in some cases.
*
* @param child the child to insert.
*/
void insertChildLast(NPacket* child);
/**
* Inserts the given packet as a child of this packet at the
* given location in this packet's child list.
*
* This routine takes small constant time.
*
* \pre Parameter \a newChild has no parent packet.
* \pre Parameter \a prevChild is already a child of this packet.
* \pre This packet is not a descendant of \a newChild.
*
* \ifacespython Since this packet takes ownership of the given
* child packet, the python object containing the given child
* packet becomes a null object and should no longer be used.
* See reparent() for a way of avoiding these problems in some cases.
*
* @param newChild the child to insert.
* @param prevChild the preexisting child of this packet after
* which \a newChild will be inserted, or 0 if \a newChild
* is to be the first child of this packet.
*/
void insertChildAfter(NPacket* newChild, NPacket* prevChild);
/**
* Cuts this packet away from its parent in the tree structure
* and instead makes it matriarch of its own tree. The tree
* information for both this packet and its parent will be
* updated.
*
* This routine takes small constant time.
*
* \pre This packet has a parent.
* \pre This packet does not depend on its parent; see
* dependsOnParent() for details.
*
* \ifacespython As of Regina 4.6.1, this routine returns the packet
* itself, and the ownership of this packet becomes the responsibility
* of whoever takes this return value. In particular, if you call
* makeOrphan() and ignore the return value then the entire
* packet subtree is automatically destroyed. The reason for
* this behaviour is to avoid memory leaks where subtrees are
* orphaned and then silently forgotten.
*/
void makeOrphan();
/**
* Cuts this packet away from its parent in the tree structure,
* and inserts it as a child of the given packet instead.
*
* This routine is essentially a combination of makeOrphan()
* followed by either insertChildFirst() or insertChildLast().
*
* This routine takes small constant time. It is safe to use
* regardless of whether this packet has a parent or not.
*
* \pre This packet does not depend on its parent; see
* dependsOnParent() for details.
* \pre The given parent is not a descendant of this packet.
*
* \ifacespython This routine is much simpler than combinations of
* makeOrphan() and insertChildFirst() / insertChildLast(), since
* there are no unpleasant ownership issues to deal with.
* However, if this packet currently has no parent then the ownership
* issues are unavoidable; in this case reparent() will do nothing,
* and one of the insertChild...() routines must be used instead.
*
* @param newParent the new parent of this packet, i.e., the
* packet beneath which this packet will be inserted.
* @param first \c true if this packet should be inserted as the
* first child of the given parent, or \c false (the default) if
* it should be inserted as the last child.
*/
void reparent(NPacket* newParent, bool first = false);
/**
* Swaps this packet with its next sibling in the sequence of
* children beneath their common parent packet. Calling this
* routine is equivalent to calling moveDown().
*
* This routine takes small constant time.
*
* If this packet has no next sibling then this routine does
* nothing.
*/
void swapWithNextSibling();
/**
* Moves this packet the given number of steps towards the
* beginning of its sibling list. If the number of steps is
* larger than the greatest possible movement, the packet will
* be moved to the very beginning of its sibling list.
*
* This routine takes time proportional to the number of steps.
*
* \pre The given number of steps is strictly positive.
*/
void moveUp(unsigned steps = 1);
/**
* Moves this packet the given number of steps towards the
* end of its sibling list. If the number of steps is
* larger than the greatest possible movement, the packet will
* be moved to the very end of its sibling list.
*
* This routine takes time proportional to the number of steps.
*
* \pre The given number of steps is strictly positive.
*/
void moveDown(unsigned steps = 1);
/**
* Moves this packet to be the first in its sibling list.
*
* This routine takes small constant time.
*/
void moveToFirst();
/**
* Moves this packet to be the last in its sibling list.
*
* This routine takes small constant time.
*/
void moveToLast();
/**
* Sorts the immediate children of this packet according to
* their packet labels. Note that this routine is not
* recursive (for instance, grandchildren will not be sorted
* within each child packet).
*
* This routine takes quadratic time in the number of
* immediate children (and it's slow quadratic at that).
*/
void sortChildren();
/*@}*/
/**
* (end: Tree Manipulation)
*/
/**
* \name Searching and Iterating
*/
/*@{*/
/**
* Finds the next packet after this in a complete depth-first
* iteration of the entire tree structure to which this packet
* belongs. Note that this packet need not be the tree
* matriarch.
*
* A parent packet is always reached before its children. The
* tree matriarch will be the first packet visited in a complete
* depth-first iteration.
*
* @return the next packet, or 0 if this is the last packet in
* such an iteration.
*/
NPacket* nextTreePacket();
/**
* Finds the next packet after this in a complete depth-first
* iteration of the entire tree structure to which this packet
* belongs. Note that this packet need not be the tree
* matriarch.
*
* A parent packet is always reached before its children. The
* tree matriarch will be the first packet visited in a complete
* depth-first iteration.
*
* @return the next packet, or 0 if this is the last packet in
* such an iteration.
*/
const NPacket* nextTreePacket() const;
/**
* Finds the first packet of the requested type in a complete
* depth-first iteration of the tree structure.
* Note that this packet <b>must</b> be the matriarch of the
* entire tree.
*
* A parent packet is always reached before its children. The
* tree matriarch will be the first packet visited in a complete
* depth-first iteration.
*
* @param type the type of packet to search for, as returned by
* getPacketTypeName(). Note that string comparisons are case
* sensitive.
* @return the first such packet, or 0 if there are no packets of
* the requested type.
*/
NPacket* firstTreePacket(const std::string& type);
/**
* Finds the first packet of the requested type in a complete
* depth-first iteration of the tree structure.
* Note that this packet <b>must</b> be the matriarch of the
* entire tree.
*
* A parent packet is always reached before its children. The
* tree matriarch will be the first packet visited in a complete
* depth-first iteration.
*
* @param type the type of packet to search for, as returned by
* getPacketTypeName(). Note that string comparisons are case
* sensitive.
* @return the first such packet, or 0 if there are no packets of
* the requested type.
*/
const NPacket* firstTreePacket(const std::string& type) const;
/**
* Finds the next packet after this of the requested type in a
* complete depth-first iteration of the entire tree structure.
* Note that this packet need not be the tree matriarch.
* The order of tree searching is described in
* firstTreePacket().
*
* @param type the type of packet to search for, as returned by
* getPacketTypeName(). Note that string comparisons are case
* sensitive.
* @return the next such packet, or 0 if this is the last packet
* of the requested type in such an iteration.
*/
NPacket* nextTreePacket(const std::string& type);
/**
* Finds the next packet after this of the requested type in a
* complete depth-first iteration of the entire tree structure.
* Note that this packet need not be the tree matriarch.
* The order of tree searching is described in
* firstTreePacket().
*
* @param type the type of packet to search for, as returned by
* getPacketTypeName(). Note that string comparisons are case
* sensitive.
* @return the next such packet, or 0 if this is the last packet
* of the requested type in such an iteration.
*/
const NPacket* nextTreePacket(const std::string& type) const;
/**
* Finds the packet with the requested label in the tree or
* subtree for which this packet is matriarch. Note that label
* comparisons are case sensitive.
*
* @param label the label to search for.
* @return the packet with the requested label, or 0 if there is
* no such packet.
*/
NPacket* findPacketLabel(const std::string& label);
/**
* Finds the packet with the requested label in the tree or
* subtree for which this packet is matriarch. Note that label
* comparisons are case sensitive.
*
* @param label the label to search for.
* @return the packet with the requested label, or 0 if there is
* no such packet.
*/
const NPacket* findPacketLabel(const std::string& label) const;
/*@}*/
/**
* (end: Searching and Iterating)
*/
/**
* \name Packet Dependencies
*/
/*@{*/
/**
* Determines if this packet depends upon its parent.
* This is true if the parent cannot be altered without
* invalidating or otherwise upsetting this packet.
*
* @return \c true if and only if this packet depends on
* its parent.
*/
virtual bool dependsOnParent() const = 0;
/**
* Determines whether this packet can be altered without
* invalidating or otherwise upsetting any of its immediate
* children. Descendants further down the packet tree are not
* (and should not need to be) considered.
*
* @return \c true if and only if this packet may be edited.
*/
bool isPacketEditable() const;
/*@}*/
/**
* (end: Packet Dependencies)
*/
/**
* \name Cloning
*/
/*@{*/
/**
* Clones this packet (and possibly its descendants), assigns to it
* a suitable unused label and
* inserts the clone into the tree as a sibling of this packet.
*
* Note that any string tags associated with this packet will
* \e not be cloned.
*
* If this packet has no parent in the tree structure, no clone
* will be created and 0 will be returned.
*
* @param cloneDescendants \c true if the descendants of this
* packet should also be cloned and inserted as descendants of
* the new packet. If this is passed as \c false (the default),
* only this packet will be cloned.
* @param end \c true if the new packet should be inserted at
* the end of the parent's list of children (the default), or
* \c false if the new packet should be inserted as the sibling
* immediately after this packet.
* @return the newly inserted packet, or 0 if this packet has no
* parent.
*/
NPacket* clone(bool cloneDescendants = false, bool end = true) const;
/*@}*/
/**
* (end: Cloning)
*/
/**
* \name File I/O
*/
/*@{*/
/**
* Writes a complete XML file containing the subtree with this
* packet as matriarch. This is the preferred way of writing
* a packet tree to file.
*
* The output from this routine cannot be used as a piece of an
* XML file; it must be the entire XML file. For a piece of an
* XML file, see routine writeXMLPacketTree() instead.
*
* For a handy wrapper to this routine that handles file I/O and
* compression, see regina::writeXMLFile().
*
* \pre This packet does not depend upon its parent.
*
* \ifacespython Not present.
*
* @param out the output stream to which the XML should be written.
*/
void writeXMLFile(std::ostream& out) const;
/**
* Writes the packet details to the given old-style binary file.
*
* You may assume that the packet type and label have already
* been written. Only the actual data stored in the packet need
* be written.
*
* The default implementation for this routine does nothing; new
* packet types should not implement this routine since this file
* format is now obsolete, and older calculation engines will
* simply skip unknown packet types when reading from binary files.
*
* \deprecated For the preferred way to write packets to file, see
* writeXMLFile() and writeXMLPacketData() instead.
*
* \pre The given file is open for writing and satisfies the
* assumptions listed above.
*
* \ifacespython Not present.
*
* @param out the file to be written to.
*/
virtual void writePacket(NFile& out) const;
/*@}*/
/**
* (end: File I/O)
*/
/**
* Returns a newly created XML element reader that will read the
* contents of a single XML packet element. You may assume that
* the packet to be read is of the same type as the class in which
* you are implementing this routine.
*
* The XML element reader should read exactly what
* writeXMLPacketData() writes, and vice versa.
*
* \a parent represents the packet which will become the new
* packet's parent in the tree structure, and may be assumed to
* have already been read from the file. This information is
* for reference only, and does not need to be used. The XML
* element reader can either insert or not insert the new packet
* beneath \a parent in the tree structure as it pleases. Note
* however that \a parent will be 0 if the new packet is to
* become a tree matriarch.
*
* This routine is not actually provided for NPacket itself, but
* must be declared and implemented for every packet subclass that
* will be instantiated.
*
* \ifacespython Not present.
*
* @param parent the packet which will become the new packet's
* parent in the tree structure, or 0 if the new packet is to be
* tree matriarch.
* @return the newly created XML element reader.
*/
#ifdef __DOXYGEN
static NXMLPacketReader* getXMLReader(NPacket* parent);
#endif
/**
* Reads a single packet from the specified
* file and returns a newly created object containing that
* information. You may assume that the packet to be read
* is of the same type as the class in which you are implementing
* this routine. The newly created object must also be of this
* type.
*
* For instance, NTriangulation::readPacket() may assume that
* the packet is of type NTriangulation, and must return a
* pointer to a newly created NTriangulation. Deallocation of the
* newly created packet is the responsibility of whoever calls
* this routine.
*
* The packet type and label may be assumed to have already been
* read from the file, and should <b>not</b> be reread. The
* readPacket() routine should read exactly what writePacket()
* writes, and vice versa.
*
* \a parent represents the packet which will become the new
* packet's parent in the tree structure, and may be assumed to
* have already been read from the file. This information is
* for reference only, and does not need to be used. This
* routine can either insert or not insert the new packet
* beneath \a parent in the tree structure as it pleases. Note
* however that \a parent will be 0 if the new packet is to
* become a tree matriarch.
*
* This routine is not actually provided for NPacket itself, but
* must be declared and implemented for every packet subclass that
* will be instantiated. Within each such subclass the function
* must be declared to return a pointer to an object of that
* subclass. For instance, NTriangulation::readPacket() must
* be declared to return an NTriangulation*, not simply an NPacket*.
*
* New packet types should make this routine simply return 0
* since this file format is now obsolete, and older calculation
* engines will not understand newer packet types anyway.
*
* \deprecated For the preferred way to read packets from file, see
* getXMLReader() and class NXMLPacketReader instead.
*
* \pre The given file is open for reading and
* all above conditions have been satisfied.
*
* \ifacespython Not present.
*
* @param in the file from which to read the packet.
* @param parent the packet which will become the new packet's
* parent in the tree structure, or 0 if the new packet is to be
* tree matriarch.
* @return the packet read from file, or 0 if an error occurred.
*/
#ifdef __DOXYGEN
static NPacket* readPacket(NFile& in, NPacket* parent);
#endif
/**
* An object that facilitates firing packetToBeChanged() and
* packetWasChanged() events.
*
* Objects of this type should be created on the stack before
* data within a packet is changed. On creation, this object
* will fire a NPacketListener::packetToBeChanged() event to all
* registered listeners. On destruction (i.e., when the object
* goes out of scope), it will fire a
* NPacketListener::packetWasChanged() event.
*
* It may be the case that several objects of this type all
* exist at the same time for the same packet. In this case, only
* the outermost object will fire events; that is, only the first
* object to be constructed will fire
* NPacketListener::packetToBeChanged(), and only the last
* object to be destroyed will fire
* NPacketListener::packetWasChanged(). This is because the
* "inner" ChangeEventSpan objects earlier represent smaller events
* that are part of a larger suite of changes.
*
* If you are writing code that makes a large number of changes
* to a packet, it is highly recommended that you declare a
* ChangeEventSpan at the beginning of your code. This will ensure
* that listeners only receive one pair of events for the
* entire change set, instead of many events representing each
* individual modification.
*/
class ChangeEventSpan : public regina::boost::noncopyable {
private:
NPacket* packet_;
/**< The packet for which change events are fired. */
public:
/**
* Creates a new change event object for the given
* packet.
*
* If this is the only ChangeEventSpan currently in existence
* for the given packet, this constructor will call
* NPacketListener::packetToBeChanged() for all
* registered listeners for the given packet.
*
* @param packet the packet whose data is about to change.
*/
ChangeEventSpan(NPacket* packet);
/**
* Destroys this change event object.
*
* If this is the only ChangeEventSpan currently in existence
* for the given packet, this destructor will call
* NPacketListener::packetWasChanged() for all
* registered listeners for the given packet.
*/
~ChangeEventSpan();
};
/**
* A deprecated typedef for ChangeEventSpan.
*
* \deprecated ChangeEventSpan is now the correct way to fire a
* "packet changed" event. The class ChangeEventSpan is similar
* to the old ChangeEventBlock except that it fires both
* NPacketListener::packetToBeChanged() and
* NPacketListener::packetWasChanged() (on construction and
* destruction respectively), and the old boolean argument
* \a fireOnDestruction is gone (events are now fired always).
*/
typedef ChangeEventSpan ChangeEventBlock;
protected:
/**
* Makes a newly allocated copy of this packet.
* This routine should <b>not</b> insert the new packet into the
* tree structure, clone the packet's associated tags or give the
* packet a label. It should also not clone any descendants of
* this packet.
*
* You may assume that the new packet will eventually be
* inserted into the tree beneath either the same parent as this
* packet or a clone of that parent.
*
* @param parent the parent beneath which the new packet will
* eventually be inserted.
* @return the newly allocated packet.
*/
virtual NPacket* internalClonePacket(NPacket* parent) const = 0;
/**
* Writes a chunk of XML containing the subtree with this packet
* as matriarch. This is the preferred way of writing a packet
* tree to file.
*
* The output from this routine is only a piece of XML; it
* should not be used as a complete XML file. For a complete
* XML file, see routine writeXMLFile() instead.
*
* @param out the output stream to which the XML should be written.
*/
void writeXMLPacketTree(std::ostream& out) const;
/**
* Writes a chunk of XML containing the data for this packet
* only.
*
* You may assume that the packet opening tag (including
* the packet type and label) has already been written, and that
* all child packets followed by the corresponding packet closing
* tag will be written immediately after this routine is called.
* This routine need only write the internal data stored in
* this specific packet.
*
* @param out the output stream to which the XML should be written.
*/
virtual void writeXMLPacketData(std::ostream& out) const = 0;
private:
/**
* Clones the descendants of this packet and inserts them as
* descendants of the given parent. The entire descendant tree
* will be cloned recursively, and suitable labels will be
* assigned to the new clones.
*
* \pre The given parent is a clone of this packet.
*
* @param parent the parent beneath which the descendant clones
* will be inserted.
*/
void internalCloneDescendants(NPacket* parent) const;
/**
* Calls the given NPacketListener event for all registered
* packet listeners. The first argument to the event function
* will be this packet.
*
* Calling this routine is better than iterating through listeners
* manually, since it behaves correctly even if listeners unregister
* themselves as they handle the event.
*
* @param event the member function of NPacketListener to be called
* for each listener.
*/
void fireEvent(void (NPacketListener::*event)(NPacket*));
/**
* Calls the given NPacketListener event for all registered
* packet listeners. The first argument to the event function
* will be this packet.
*
* Calling this routine is better than iterating through listeners
* manually, since it behaves correctly even if listeners unregister
* themselves as they handle the event.
*
* @param event the member function of NPacketListener to be called
* for each listener.
* @param arg2 the second argument to pass to the event function.
*/
void fireEvent(void (NPacketListener::*event)(NPacket*, NPacket*),
NPacket* arg2);
/**
* Calls the given NPacketListener event for all registered
* packet listeners. The first argument to the event function
* will be this packet
*
* Calling this routine is better than iterating through listeners
* manually, since it behaves correctly even if listeners unregister
* themselves as they handle the event.
*
* @param event the member function of NPacketListener to be called
* for each listener.
* @param arg2 the second argument to pass to the event function.
* @param arg3 the third argument to pass to the event function.
*/
void fireEvent(void (NPacketListener::*event)(NPacket*, NPacket*, bool),
NPacket* arg2, bool arg3);
/**
* Calls NPacketListener::packetToBeDestroyed() for all registered
* packet listeners.
*
* This routine unregisters each listener just before it calls
* packetToBeDestroyed() for that listener.
*
* Calling this routine is better than iterating through listeners
* manually, since it behaves correctly even if listeners unregister
* themselves or even destroy themselves and/or other listeners as
* they handle the event.
*/
void fireDestructionEvent();
};
/*@}*/
// Inline functions for NPacket
inline NPacket::NPacket(NPacket* parent) : firstTreeChild(0), lastTreeChild(0),
prevTreeSibling(0), nextTreeSibling(0), changeEventSpans(0),
inDestructor(false) {
if (parent)
parent->insertChildLast(this);
else
treeParent = 0;
}
inline const std::string& NPacket::getPacketLabel() const {
return packetLabel;
}
inline std::string NPacket::getFullName() const {
return packetLabel + " (" + getPacketTypeName() + ")";
}
inline bool NPacket::hasTag(const std::string& tag) const {
if (! tags.get())
return false;
return tags->count(tag);
}
inline bool NPacket::hasTags() const {
if (! tags.get())
return false;
return (! tags->empty());
}
inline const std::set<std::string>& NPacket::getTags() const {
if (! tags.get())
const_cast<NPacket*>(this)->tags.reset(new std::set<std::string>());
return *tags;
}
inline bool NPacket::isListening(NPacketListener* listener) {
if (! listeners.get())
return false;
return listeners->count(listener);
}
inline NPacket* NPacket::getTreeParent() const {
return treeParent;
}
inline NPacket* NPacket::getFirstTreeChild() const {
return firstTreeChild;
}
inline NPacket* NPacket::getLastTreeChild() const {
return lastTreeChild;
}
inline NPacket* NPacket::getPrevTreeSibling() const {
return prevTreeSibling;
}
inline NPacket* NPacket::getNextTreeSibling() const {
return nextTreeSibling;
}
inline unsigned NPacket::levelsUpTo(const NPacket* ancestor) const {
return ancestor->levelsDownTo(this);
}
inline unsigned long NPacket::getNumberOfDescendants() const {
return getTotalTreeSize() - 1;
}
inline void NPacket::writePacket(NFile&) const {
}
inline NPacket::ChangeEventSpan::ChangeEventSpan(NPacket* packet) :
packet_(packet) {
if (! packet_->changeEventSpans)
packet_->fireEvent(&NPacketListener::packetToBeChanged);
packet_->changeEventSpans++;
}
inline NPacket::ChangeEventSpan::~ChangeEventSpan() {
packet_->changeEventSpans--;
if (! packet_->changeEventSpans)
packet_->fireEvent(&NPacketListener::packetWasChanged);
}
} // namespace regina
#endif
|