Source for file ChainedBlockStream.php
Documentation is available at ChainedBlockStream.php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
* Stream wrapper for reading data stored in an OLE file.
* LICENSE: This source file is subject to version 3.0 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license/3_0.txt. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to license@php.net so we can mail you a copy immediately.
* @author Christian Schmidt <schmidt@php.net>
* @license http://www.php.net/license/3_0.txt PHP License 3.0
* @version CVS: $Id: ChainedBlockStream.php,v 1.1 2007/02/13 21:00:42 schmidt Exp $
* @link http://pear.php.net/package/OLE
* @since File available since Release 0.6.0
* Stream wrapper for reading data stored in an OLE file. Implements methods
* for PHP's stream_wrapper_register(). For creating streams using this
* wrapper, use OLE_PPS_File::getStream().
* @author Christian Schmidt <schmidt@php.net>
* @license http://www.php.net/license/3_0.txt PHP License 3.0
* @version Release: @package_version@
* @link http://pear.php.net/package/OLE
* @since Class available since Release 0.6.0
* The OLE container of the file that is being read.
* Parameters specified by fopen().
* The binary data of the file.
* Implements support for fopen().
* For creating streams using this wrapper, use OLE_PPS_File::getStream().
* @param string resource name including scheme, e.g.
* ole-chainedblockstream://oleInstanceId=1
* @param string only "r" is supported
* @param int mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH
* @param string absolute path of the opened stream (out parameter)
* @return bool true on success
function stream_open($path, $mode, $options, &$openedPath)
if ($options & STREAM_REPORT_ERRORS) {
// 25 is length of "ole-chainedblockstream://"
if (!isset ($this->params['oleInstanceId'],
$GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']])) {
if ($options & STREAM_REPORT_ERRORS) {
$this->ole = $GLOBALS['_OLE_INSTANCES'][$this->params['oleInstanceId']];
$blockId = $this->params['blockId'];
if (isset ($this->params['size']) &&
$this->params['size'] < $this->ole->bigBlockThreshold &&
$blockId != $this->ole->root->_StartBlock) {
// Block id refers to small blocks
$blockId = $this->ole->sbat[$blockId];
// Block id refers to big blocks
$blockId = $this->ole->bbat[$blockId];
if (isset ($this->params['size'])) {
if ($options & STREAM_USE_PATH) {
* Implements support for fclose().
unset ($GLOBALS['_OLE_INSTANCES']);
* Implements support for fread(), fgets() etc.
* @param int maximum number of bytes to read
* Implements support for feof().
* @return bool TRUE if the file pointer is at EOF; otherwise FALSE
// Workaround for bug in PHP 5.0.x: http://bugs.php.net/27508
* Returns the position of the file pointer, i.e. its offset into the file
* stream. Implements support for ftell().
* Implements support for fseek().
* @param int SEEK_SET, SEEK_CUR or SEEK_END
if ($whence == SEEK_SET && $offset >= 0) {
} elseif ($whence == SEEK_CUR && - $offset <= $this->pos) {
} elseif ($whence == SEEK_END && - $offset <= sizeof($this->data)) {
* Implements support for fstat(). Currently the only supported field is
// Methods used by stream_wrapper_register() that are not implemented:
// bool stream_flush ( void )
// int stream_write ( string data )
// bool rename ( string path_from, string path_to )
// bool mkdir ( string path, int mode, int options )
// bool rmdir ( string path, int options )
// bool dir_opendir ( string path, int options )
// array url_stat ( string path, int flags )
// string dir_readdir ( void )
// bool dir_rewinddir ( void )
// bool dir_closedir ( void )
|