splstack.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /** @file splstack.inc
  3. * @ingroup SPL
  4. * @brief class SplStack
  5. * @author Etienne Kneuss
  6. * @date 2008 - 2009
  7. *
  8. * SPL - Standard PHP Library
  9. */
  10. /** @ingroup SPL
  11. * @brief Implementation of a stack through a DoublyLinkedList. As SplStack
  12. * extends SplDoublyLinkedList, shift() and unshift() are still available even
  13. * though they don't make much sense for a stack.
  14. * @since PHP 5.3
  15. *
  16. * The SplStack class provides the main functionalities of a
  17. * stack implemented using a doubly linked list (DLL).
  18. */
  19. class SplStack extends SplDoublyLinkedList
  20. {
  21. protected $_it_mode = parent::IT_MODE_LIFO;
  22. /** Changes the iteration mode. There are two orthogonal sets of modes that
  23. * can be set:
  24. *
  25. * - The behavior of the iterator (either one or the other)
  26. * - SplDoublyLnkedList::IT_MODE_DELETE (Elements are deleted by the iterator)
  27. * - SplDoublyLnkedList::IT_MODE_KEEP (Elements are traversed by the iterator)
  28. *
  29. * The default mode is 0 : SplDoublyLnkedList::IT_MODE_LIFO | SplDoublyLnkedList::IT_MODE_KEEP
  30. *
  31. * @note The iteration's direction is not modifiable for stack instances
  32. * @param $mode New mode of iteration
  33. * @throw RuntimeException If the new mode affects the iteration's direction.
  34. */
  35. public function setIteratorMode($mode)
  36. {
  37. if ($mode & parent::IT_MODE_LIFO !== parent::IT_MODE_LIFO) {
  38. throw new RuntimeException("Iterators' LIFO/FIFO modes for SplStack/SplQueue objects are frozen");
  39. }
  40. $this->_it_mode = $mode;
  41. }
  42. }
  43. ?>