PHPExcel_Shared_OLE
[ class tree: PHPExcel_Shared_OLE ] [ index: PHPExcel_Shared_OLE ] [ all elements ]

Source for file ChainedBlockStream.php

Documentation is available at ChainedBlockStream.php

  1. <?php
  2. /**
  3.  * PHPExcel
  4.  *
  5.  * Copyright (C) 2006 - 2009 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_OLE
  23.  * @copyright  Copyright (c) 2006 - 2007 Christian Schmidt
  24.  * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
  25.  * @version 1.6.5, 2009-01-05
  26.  */
  27.  
  28. require_once 'PHPExcel/Shared/OLE.php';
  29.  
  30. /**
  31.  * PHPExcel_Shared_OLE_ChainedBlockStream
  32.  *
  33.  * Stream wrapper for reading data stored in an OLE file. Implements methods
  34.  * for PHP's stream_wrapper_register(). For creating streams using this
  35.  * wrapper, use PHPExcel_Shared_OLE_PPS_File::getStream().
  36.  *
  37.  * @category   PHPExcel
  38.  * @package    PHPExcel_Shared_OLE
  39.  */
  40. {
  41.     /**
  42.      * The OLE container of the file that is being read.
  43.      * @var OLE 
  44.      */
  45.     public $ole;
  46.  
  47.     /**
  48.      * Parameters specified by fopen().
  49.      * @var array 
  50.      */
  51.     public $params;
  52.  
  53.     /**
  54.      * The binary data of the file.
  55.      * @var  string 
  56.      */
  57.     public $data;
  58.  
  59.     /**
  60.      * The file pointer.
  61.      * @var  int  byte offset
  62.      */
  63.     public $pos;
  64.  
  65.     /**
  66.      * Implements support for fopen().
  67.      * For creating streams using this wrapper, use OLE_PPS_File::getStream().
  68.      * @param  string  resource name including scheme, e.g.
  69.      *                  ole-chainedblockstream://oleInstanceId=1
  70.      * @param  string  only "r" is supported
  71.      * @param  int     mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH
  72.      * @param  string  absolute path of the opened stream (out parameter)
  73.      * @return bool    true on success
  74.      */
  75.     public function stream_open($path$mode$options&$openedPath)
  76.     {
  77.         if ($mode != 'r'{
  78.             if ($options STREAM_REPORT_ERRORS{
  79.                 trigger_error('Only reading is supported'E_USER_WARNING);
  80.             }
  81.             return false;
  82.         }
  83.  
  84.         // 25 is length of "ole-chainedblockstream://"
  85.         parse_str(substr($path25)$this->params);
  86.         if (!isset($this->params['oleInstanceId'],
  87.                    $this->params['blockId'],
  88.                    $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']])) {
  89.  
  90.             if ($options STREAM_REPORT_ERRORS{
  91.                 trigger_error('OLE stream not found'E_USER_WARNING);
  92.             }
  93.             return false;
  94.         }
  95.         $this->ole = $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']];
  96.  
  97.         $blockId $this->params['blockId'];
  98.         $this->data = '';
  99.         if (isset($this->params['size']&&
  100.             $this->params['size'$this->ole->bigBlockThreshold &&
  101.             $blockId != $this->ole->root->_StartBlock{
  102.  
  103.             // Block id refers to small blocks
  104.             $rootPos $this->ole->_getBlockOffset($this->ole->root->_StartBlock);
  105.             while ($blockId != -2{
  106.                 $pos $rootPos $blockId $this->ole->bigBlockSize;
  107.                 $blockId $this->ole->sbat[$blockId];
  108.                 fseek($this->ole->_file_handle$pos);
  109.                 $this->data .= fread($this->ole->_file_handle$this->ole->bigBlockSize);
  110.             }
  111.         else {
  112.             // Block id refers to big blocks
  113.             while ($blockId != -2{
  114.                 $pos $this->ole->_getBlockOffset($blockId);
  115.                 fseek($this->ole->_file_handle$pos);
  116.                 $this->data .= fread($this->ole->_file_handle$this->ole->bigBlockSize);
  117.                 $blockId $this->ole->bbat[$blockId];
  118.             }
  119.         }
  120.         if (isset($this->params['size'])) {
  121.             $this->data = substr($this->data0$this->params['size']);
  122.         }
  123.  
  124.         if ($options STREAM_USE_PATH{
  125.             $openedPath $path;
  126.         }
  127.  
  128.         return true;
  129.     }
  130.  
  131.     /**
  132.      * Implements support for fclose().
  133.      * @return  string 
  134.      */
  135.     public function stream_close()
  136.     {
  137.         $this->ole = null;
  138.         unset($GLOBALS['_OLE_INSTANCES']);
  139.     }
  140.  
  141.     /**
  142.      * Implements support for fread(), fgets() etc.
  143.      * @param   int  maximum number of bytes to read
  144.      * @return  string 
  145.      */
  146.     public function stream_read($count)
  147.     {
  148.         if ($this->stream_eof()) {
  149.             return false;
  150.         }
  151.         $s substr($this->data$this->pos$count);
  152.         $this->pos += $count;
  153.         return $s;
  154.     }
  155.  
  156.     /**
  157.      * Implements support for feof().
  158.      * @return  bool  TRUE if the file pointer is at EOF; otherwise FALSE
  159.      */
  160.     public function stream_eof()
  161.     {
  162.         $eof $this->pos >= strlen($this->data);
  163.         // Workaround for bug in PHP 5.0.x: http://bugs.php.net/27508
  164.         if (version_compare(PHP_VERSION'5.0''>='&&
  165.             version_compare(PHP_VERSION'5.1''<')) {
  166.  
  167.            $eof !$eof;
  168.         }
  169.         return $eof;
  170.     }
  171.  
  172.     /**
  173.      * Returns the position of the file pointer, i.e. its offset into the file
  174.      * stream. Implements support for ftell().
  175.      * @return  int 
  176.      */
  177.     public function stream_tell()
  178.     {
  179.         return $this->pos;
  180.     }
  181.  
  182.     /**
  183.      * Implements support for fseek().
  184.      * @param   int  byte offset
  185.      * @param   int  SEEK_SET, SEEK_CUR or SEEK_END
  186.      * @return  bool 
  187.      */
  188.     public function stream_seek($offset$whence)
  189.     {
  190.         if ($whence == SEEK_SET && $offset >= 0{
  191.             $this->pos = $offset;
  192.         elseif ($whence == SEEK_CUR && -$offset <= $this->pos{
  193.             $this->pos += $offset;
  194.         elseif ($whence == SEEK_END && -$offset <= sizeof($this->data)) {
  195.             $this->pos = strlen($this->data$offset;
  196.         else {
  197.             return false;
  198.         }
  199.         return true;
  200.     }
  201.  
  202.     /**
  203.      * Implements support for fstat(). Currently the only supported field is
  204.      * "size".
  205.      * @return  array 
  206.      */
  207.     public function stream_stat()
  208.     {
  209.         return array(
  210.             'size' => strlen($this->data),
  211.             );
  212.     }
  213.  
  214.     // Methods used by stream_wrapper_register() that are not implemented:
  215.     // bool stream_flush ( void )
  216.     // int stream_write ( string data )
  217.     // bool rename ( string path_from, string path_to )
  218.     // bool mkdir ( string path, int mode, int options )
  219.     // bool rmdir ( string path, int options )
  220.     // bool dir_opendir ( string path, int options )
  221.     // array url_stat ( string path, int flags )
  222.     // string dir_readdir ( void )
  223.     // bool dir_rewinddir ( void )
  224.     // bool dir_closedir ( void )
  225. }

Documentation generated on Mon, 05 Jan 2009 20:36:39 +0100 by phpDocumentor 1.4.1