67f5355725f8b53f7e992360d38adaa604a6ef01.svn-base 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2014 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Calculation
  23. * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /**
  28. * PHPExcel_CalcEngine_CyclicReferenceStack
  29. *
  30. * @category PHPExcel_CalcEngine_CyclicReferenceStack
  31. * @package PHPExcel_Calculation
  32. * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_CalcEngine_CyclicReferenceStack {
  35. /**
  36. * The call stack for calculated cells
  37. *
  38. * @var mixed[]
  39. */
  40. private $_stack = array();
  41. /**
  42. * Return the number of entries on the stack
  43. *
  44. * @return integer
  45. */
  46. public function count() {
  47. return count($this->_stack);
  48. }
  49. /**
  50. * Push a new entry onto the stack
  51. *
  52. * @param mixed $value
  53. */
  54. public function push($value) {
  55. $this->_stack[$value] = $value;
  56. }
  57. /**
  58. * Pop the last entry from the stack
  59. *
  60. * @return mixed
  61. */
  62. public function pop() {
  63. return array_pop($this->_stack);
  64. }
  65. /**
  66. * Test to see if a specified entry exists on the stack
  67. *
  68. * @param mixed $value The value to test
  69. */
  70. public function onStack($value) {
  71. return isset($this->_stack[$value]);
  72. }
  73. /**
  74. * Clear the stack
  75. */
  76. public function clear() {
  77. $this->_stack = array();
  78. }
  79. /**
  80. * Return an array of all entries on the stack
  81. *
  82. * @return mixed[]
  83. */
  84. public function showStack() {
  85. return $this->_stack;
  86. }
  87. }