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
|
/**
* @file: list.h
* List-related functionality implementation
* @defgroup List Two-way linked list
*
* Implementation of two-way linked list
* @ingroup Utils
*/
/*
* Utils library in Showgraph tool
* Copyright (c) 2009, Boris Shurygin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef LIST_H
#define LIST_H
/**
* @brief Types of direction in lists.
* @ingroup List
*
* Lists are built from left to right by default.
* That means if you take next in default direction - it will be element to the right.
*/
enum ListDir
{
/** Right direction */
LIST_DIR_RIGHT = 0,
/** Default direction */
LIST_DIR_DEFAULT = LIST_DIR_RIGHT,
/** Left Direction */
LIST_DIR_LEFT = 1,
/** Direction reverse to default */
LIST_DIR_RDEFAULT = LIST_DIR_LEFT,
/** Number of directions */
LIST_DIR_NUM = 2
};
/**
* Return direction that is reverse to given one
* @ingroup List
*/
inline ListDir
ListRDir( ListDir dir)
{
assertd( LIST_DIR_NUM == 2);
return ( dir == LIST_DIR_DEFAULT)? LIST_DIR_RDEFAULT: LIST_DIR_DEFAULT;
}
/**
* @brief Item of two-way connected list of pointers
* @ingroup List
*
* @par
* ListItem is used for storing pointers to objects in list. Items in list are two-way connected
* with each other. This allows insertion and deletion of items in constant time.
*/
template <class Data> class ListItem
{
ListItem<Data> * peer[ LIST_DIR_NUM];
Data *data_p;
public:
/**Get data */
inline Data *data() const
{
return data_p;
}
/** Set data */
inline void setData( Data* d)
{
data_p = d;
}
/** Get neighbour */
inline ListItem<Data> * GetPeerInDir( ListDir dir) const
{
return peer[ dir];
}
/** Set neighbour */
inline void SetPeerInDir( ListItem<Data> *p, ListDir dir)
{
peer[ dir] = p;
}
/* Default peers gets */
/** Return next peer in default direction */
inline ListItem<Data> *next() const
{
return GetPeerInDir( LIST_DIR_DEFAULT);
}
/** Return prev peer in default direction */
inline ListItem<Data>* prev() const
{
return GetPeerInDir( LIST_DIR_RDEFAULT);
}
/** Set next peer */
inline void SetNext( ListItem<Data> *n)
{
SetPeerInDir( n, LIST_DIR_DEFAULT);
}
/** Set previous peer */
inline void SetPrev( ListItem<Data> *p)
{
SetPeerInDir( p, LIST_DIR_RDEFAULT);
}
/** Attach this item to peeer in give direction */
inline void AttachInDir( ListItem<Data>* p, ListDir dir)
{
ListDir rdir = ListRDir( dir);
SetPeerInDir( p, dir);
SetPeerInDir( NULL, rdir);
if ( isNotNullP( p))
{
ListItem<Data>* rdir_peer = p->GetPeerInDir( rdir);
if ( isNotNullP( rdir_peer))
{
rdir_peer->SetPeerInDir( this, dir);
}
p->SetPeerInDir( this, rdir);
SetPeerInDir( rdir_peer, rdir);
}
}
/** Attach in default direction */
inline void Attach( ListItem<Data>* peer)
{
AttachInDir( peer, LIST_DIR_DEFAULT);
}
/** Detach from neighbours */
inline void Detach()
{
/* Correct links in peers */
if ( isNotNullP( peer[ LIST_DIR_DEFAULT]))
{
peer[ LIST_DIR_DEFAULT]->SetPeerInDir( peer[ LIST_DIR_RDEFAULT], LIST_DIR_RDEFAULT);
}
if ( isNotNullP( peer[ LIST_DIR_RDEFAULT]))
{
peer[ LIST_DIR_RDEFAULT]->SetPeerInDir( peer[ LIST_DIR_DEFAULT], LIST_DIR_DEFAULT);
}
SetPeerInDir( NULL, LIST_DIR_DEFAULT);
SetPeerInDir( NULL, LIST_DIR_RDEFAULT);
}
/** Default constructor */
ListItem()
{
setData( NULL);
SetPeerInDir( NULL, LIST_DIR_DEFAULT);
SetPeerInDir( NULL, LIST_DIR_RDEFAULT);
};
/** Constructor from data pointer */
ListItem( Data* d)
{
setData( d);
SetPeerInDir( NULL, LIST_DIR_DEFAULT);
SetPeerInDir( NULL, LIST_DIR_RDEFAULT);
};
/** Insert element before the given one */
ListItem( ListItem<Data> *peer, Data* d)
{
setData( d);
SetPeerInDir( NULL, LIST_DIR_DEFAULT);
SetPeerInDir( NULL, LIST_DIR_RDEFAULT);
AttachInDir( peer, LIST_DIR_DEFAULT);
}
/** Insert element in given direction */
ListItem( ListItem<Data> *peer, ListDir dir, Data *d)
{
setData( d);
SetPeerInDir( NULL, LIST_DIR_DEFAULT);
SetPeerInDir( NULL, LIST_DIR_RDEFAULT);
AttachInDir( peer, dir);
}
/** Destructor */
~ListItem()
{
Detach();
}
};
/** List number */
typedef quint16 ListId;
/**
* @brief List item that can be part of multiple lists.
* @param dim Number of lists
* @ingroup List
*
* The MListItem class provides means for making an object an item of multiple lists. The
* implementation is intrusive: you have to inherit MListItem in your object to make it
* a multiple list item. It is more convenient to inherit MListIface though, which in
* turn inherits MListItem and provides list-related routines in terms of client type. E.g.
* if you implement some MyObj class this way your MyObj::next() routine will return MyObj * instead of
* MListItem<num_of_lists> *.
*/
template <unsigned int dim> class MListItem
{
MListItem< dim> * peer[ dim][ LIST_DIR_NUM];
public:
/** Get neighbour */
inline MListItem< dim> * peerInDir( ListId list, ListDir dir) const
{
ASSERTD( list < dim);
return peer[ list][ dir];
}
/** Set neighbour */
inline void setPeerInDir( ListId list, MListItem< dim> *p, ListDir dir)
{
ASSERTD( list < dim);
peer[list][ dir] = p;
}
/** Set all pointeers to peeers to zero */
inline void zeroLinks()
{
for ( ListId list = 0; list < dim; list++)
{
setPeerInDir( list, NULL, LIST_DIR_DEFAULT);
setPeerInDir( list, NULL, LIST_DIR_RDEFAULT);
}
}
/* Default peers gets */
/** Return next peer in default direction */
inline MListItem< dim> *next( ListId list) const
{
return peerInDir( list, LIST_DIR_DEFAULT);
}
/** Return prev peer in default direction */
inline MListItem< dim>* prev( ListId list) const
{
return peerInDir( list, LIST_DIR_RDEFAULT);
}
/** Set next peer */
inline void setNext( ListId list, MListItem< dim> *n)
{
setPeerInDir( list, n, LIST_DIR_DEFAULT);
}
/** Set previous peer */
inline void setPrev( ListId list, MListItem< dim> *p)
{
setPeerInDir( list, p, LIST_DIR_RDEFAULT);
}
/** Attach this item to peeer in give direction */
inline void attachInDir( ListId list, MListItem< dim>* p, ListDir dir)
{
ListDir rdir = ListRDir( dir);
setPeerInDir( list, p, dir);
setPeerInDir( list, NULL, rdir);
if ( isNotNullP( p))
{
MListItem< dim>* rdir_peer = p->peerInDir( list, rdir);
if ( isNotNullP( rdir_peer))
{
rdir_peer->setPeerInDir( list, this, dir);
}
p->setPeerInDir( list, this, rdir);
setPeerInDir( list, rdir_peer, rdir);
}
}
/** Attach in default direction */
inline void attach( ListId list, MListItem< dim>* peer)
{
attachInDir( list, peer, LIST_DIR_DEFAULT);
}
/** Detach from neighbours */
inline void detach( ListId list)
{
ASSERTD( list < dim);
/* Correct links in peers */
if ( isNotNullP( peer[ list][ LIST_DIR_DEFAULT]))
{
peer[ list][ LIST_DIR_DEFAULT]->setPeerInDir( list, peer[ list][ LIST_DIR_RDEFAULT], LIST_DIR_RDEFAULT);
}
if ( isNotNullP( peer[ list][ LIST_DIR_RDEFAULT]))
{
peer[ list][ LIST_DIR_RDEFAULT]->setPeerInDir( list, peer[ list][ LIST_DIR_DEFAULT], LIST_DIR_DEFAULT);
}
setPeerInDir( list, NULL, LIST_DIR_DEFAULT);
setPeerInDir( list, NULL, LIST_DIR_RDEFAULT);
}
/** Detach from all lists */
inline void detachAll()
{
for ( ListId list = 0; list < dim; list++)
{
detach( list);
}
}
/** Default constructor */
MListItem()
{
zeroLinks();
};
/** Insert element before the given one */
MListItem( ListId list, MListItem< dim> *peer)
{
zeroLinks();
attachInDir( list, peer, LIST_DIR_DEFAULT);
}
/** Insert element in given direction */
MListItem( ListId list, MListItem< dim> *peer, ListDir dir)
{
zeroLinks();
attachInDir( list, peer, dir);
}
/** Destructor */
virtual ~MListItem()
{
detachAll();
}
};
/**
* @brief Interface for Multi-list
* @ingroup List
* @param Item The type of list item
* @param ListBase MListItem parameterized by list number or some derived class
* @param dim Number of lists
*
* Allows for incorporating a list item functionality into object via inheritance.
* Example:
* @code
// Define the lists we use
enum ListTypes { LIST_ONE, LIST_TWO, LISTS_NUM };
// Derive class of linked objects
class MyObj: public MListIface< MyObj, MListItem<LISTS_NUM>, LISTS_NUM>
{ ... };
// Usage
void foo()
{
MyObj obj1();
MyObj obj2();
MyObj obj3();
obj1.attach( LIST_ONE, &obj2); // "LIST_ONE" is now obj1--obj2
obj2.attach( LIST_ONE, &obj3); // "LIST_ONE" is now obj1--obj2--obj3
obj1.attach( LIST_TWO, &obj3); // "LIST_TWO" is now obj1--obj3
}
@endcode
*/
template < class Item, class ListBase, unsigned int dim> class MListIface: public ListBase
{
public:
/** Return next item in default direction */
inline Item *next( ListId list) const
{
return static_cast< Item *>( MListItem< dim>::next( list));
}
/** Return prev item in default direction */
inline Item* prev( ListId list) const
{
return static_cast< Item *>( MListItem< dim>::prev( list));
}
/** Default constructor */
inline MListIface():
ListBase(){};
/** Insert element before the given one */
inline MListIface( ListId list, Item *peer):
ListBase( list, peer){};
/** Insert element in given direction */
inline MListIface( ListId list, Item *peer, ListDir dir):
ListBase( list, peer, dir){};
};
/**
* @brief Specialization of the MListItem template for important case when the object
* is intended to be item in only one list.
* @ingroup List
*/
template<> class MListItem<1>
{
MListItem< 1> * peer[ LIST_DIR_NUM];
/** Get neighbour */
inline MListItem< 1> * peerInDir( ListDir dir) const
{
return peer[ dir];
}
/** Set neighbour */
inline void setPeerInDir( MListItem< 1> *p, ListDir dir)
{
peer[ dir] = p;
}
public:
/** Set all pointeers to peeers to zero */
inline void zeroLinks()
{
setPeerInDir( NULL, LIST_DIR_DEFAULT);
setPeerInDir( NULL, LIST_DIR_RDEFAULT);
}
/* Default peers gets */
/** Return next peer in default direction */
inline MListItem< 1> *next() const
{
return peerInDir( LIST_DIR_DEFAULT);
}
/** Return prev peer in default direction */
inline MListItem< 1>* prev() const
{
return peerInDir( LIST_DIR_RDEFAULT);
}
/** Set next peer */
inline void setNext( MListItem< 1> *n)
{
setPeerInDir( n, LIST_DIR_DEFAULT);
}
/** Set previous peer */
inline void setPrev( MListItem< 1> *p)
{
setPeerInDir( p, LIST_DIR_RDEFAULT);
}
/** Attach this item to peeer in give direction */
inline void attachInDir( MListItem< 1>* p, ListDir dir)
{
ListDir rdir = ListRDir( dir);
setPeerInDir( p, dir);
setPeerInDir( NULL, rdir);
if ( isNotNullP( p))
{
MListItem< 1>* rdir_peer = p->peerInDir( rdir);
if ( isNotNullP( rdir_peer))
{
rdir_peer->setPeerInDir( this, dir);
}
p->setPeerInDir( this, rdir);
setPeerInDir( rdir_peer, rdir);
}
}
/** Attach in default direction */
inline void attach( MListItem< 1>* peer)
{
attachInDir( peer, LIST_DIR_DEFAULT);
}
/** Detach from neighbours */
inline void detach()
{
/* Correct links in peers */
if ( isNotNullP( peer[ LIST_DIR_DEFAULT]))
{
peer[ LIST_DIR_DEFAULT]->setPeerInDir( peer[ LIST_DIR_RDEFAULT], LIST_DIR_RDEFAULT);
}
if ( isNotNullP( peer[ LIST_DIR_RDEFAULT]))
{
peer[ LIST_DIR_RDEFAULT]->setPeerInDir( peer[ LIST_DIR_DEFAULT], LIST_DIR_DEFAULT);
}
setPeerInDir( NULL, LIST_DIR_DEFAULT);
setPeerInDir( NULL, LIST_DIR_RDEFAULT);
}
/** Default constructor */
MListItem()
{
zeroLinks();
};
/** Insert element before the given one */
MListItem( MListItem< 1> *peer)
{
zeroLinks();
attachInDir( peer, LIST_DIR_DEFAULT);
}
/** Insert element in given direction */
MListItem( MListItem< 1> *peer, ListDir dir)
{
zeroLinks();
attachInDir( peer, dir);
}
/** Destructor */
virtual ~MListItem()
{
detach();
}
};
/** Short name for simple list item */
typedef MListItem< 1> SListItem;
/**
* @brief Specialization of MListIface for case of one list
* @ingroup List
* @param Item The type of list item
* @param ListBase MListItem or some derived class
*
* Allows for incorporating a single-list item functionality into object via inheritance.
*/
template< class Item, class ListBase> class MListIface< Item, ListBase, 1>: public ListBase
{
public:
/** Return next item in default direction */
inline Item *next() const
{
return static_cast< Item *>( SListItem::next());
}
/** Return prev item in default direction */
inline Item* prev() const
{
return static_cast< Item *>( SListItem::prev());
}
/** Insert element before the given one */
inline MListIface(): ListBase(){};
/** Insert element before the given one */
inline MListIface( Item *peer):
ListBase( peer){};
/** Insert element in given direction */
inline MListIface( Item *peer, ListDir dir):
ListBase( peer, dir){};
};
/**
* @brief Interface for simple list item
* @ingroup List
* @param Item The type of list item
* @param ListBase SListItem (default) or some derived class.
*
* Allows for incorporating a list item functionality into object via inheritance.
* Example:
* @code
// Derive class of linked objects
class MyObj: public SListIface< MyObj>
{ ... };
// Usage
void foo()
{
MyObj obj1();
MyObj obj2();
MyObj obj3();
obj1.attach( &obj2); // list is now obj1--obj2
obj2.attach( &obj3); // list is now obj1--obj2--obj3
}
@endcode
*/
template< class Item, class ListBase=SListItem> class SListIface: public ListBase
{
public:
/** Return next item in default direction */
inline Item *next() const
{
return static_cast< Item *>( SListItem::next());
}
/** Return prev item in default direction */
inline Item* prev() const
{
return static_cast< Item *>( SListItem::prev());
}
/** Insert element before the given one */
inline SListIface():
ListBase(){};
/** Insert element before the given one */
inline SListIface( Item *peer):
ListBase( peer){};
/** Insert element in given direction */
inline SListIface( Item *peer, ListDir dir):
SListItem( peer, dir){};
};
#endif
|