/branches/v1.7.5/Classes/PHPExcel/Shared/ZipStreamWrapper.php

# · PHP · 163 lines · 69 code · 19 blank · 75 comment · 10 complexity · 56d206c926f0b5188119b77ab8dd5d99 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2010 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_Shared
  23. * @copyright Copyright (c) 2006 - 2010 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_Shared_ZipStreamWrapper
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Shared
  32. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Shared_ZipStreamWrapper {
  35. /**
  36. * Internal ZipAcrhive
  37. *
  38. * @var ZipAcrhive
  39. */
  40. private $_archive;
  41. /**
  42. * Filename in ZipAcrhive
  43. *
  44. * @var string
  45. */
  46. private $_fileNameInArchive = '';
  47. /**
  48. * Position in file
  49. *
  50. * @var int
  51. */
  52. private $_position = 0;
  53. /**
  54. * Data
  55. *
  56. * @var mixed
  57. */
  58. private $_data = '';
  59. /**
  60. * Register wrapper
  61. */
  62. public static function register() {
  63. @stream_wrapper_unregister("zip");
  64. @stream_wrapper_register("zip", __CLASS__);
  65. }
  66. /**
  67. * Open stream
  68. */
  69. public function stream_open($path, $mode, $options, &$opened_path) {
  70. // Check for mode
  71. if ($mode{0} != 'r') {
  72. throw new Exception('Mode ' . $mode . ' is not supported. Only read mode is supported.');
  73. }
  74. $pos = strrpos($path, '#');
  75. $url['host'] = substr($path, 6, $pos - 6); // 6: strlen('zip://')
  76. $url['fragment'] = substr($path, $pos + 1);
  77. // Open archive
  78. $this->_archive = new ZipArchive();
  79. $this->_archive->open($url['host']);
  80. $this->_fileNameInArchive = $url['fragment'];
  81. $this->_position = 0;
  82. $this->_data = $this->_archive->getFromName( $this->_fileNameInArchive );
  83. return true;
  84. }
  85. /**
  86. * Stat stream
  87. */
  88. public function stream_stat() {
  89. return $this->_archive->statName( $this->_fileNameInArchive );
  90. }
  91. /**
  92. * Read stream
  93. */
  94. function stream_read($count) {
  95. $ret = substr($this->_data, $this->_position, $count);
  96. $this->_position += strlen($ret);
  97. return $ret;
  98. }
  99. /**
  100. * Tell stream
  101. */
  102. public function stream_tell() {
  103. return $this->_position;
  104. }
  105. /**
  106. * EOF stream
  107. */
  108. public function stream_eof() {
  109. return $this->_position >= strlen($this->_data);
  110. }
  111. /**
  112. * Seek stream
  113. */
  114. public function stream_seek($offset, $whence) {
  115. switch ($whence) {
  116. case SEEK_SET:
  117. if ($offset < strlen($this->_data) && $offset >= 0) {
  118. $this->_position = $offset;
  119. return true;
  120. } else {
  121. return false;
  122. }
  123. break;
  124. case SEEK_CUR:
  125. if ($offset >= 0) {
  126. $this->_position += $offset;
  127. return true;
  128. } else {
  129. return false;
  130. }
  131. break;
  132. case SEEK_END:
  133. if (strlen($this->_data) + $offset >= 0) {
  134. $this->_position = strlen($this->_data) + $offset;
  135. return true;
  136. } else {
  137. return false;
  138. }
  139. break;
  140. default:
  141. return false;
  142. }
  143. }
  144. }