Source for file OLE.php
Documentation is available at OLE.php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2002 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: Xavier Noguer <xnoguer@php.net> |
// | Based on OLE::Storage_Lite by Kawai, Takanori |
// +----------------------------------------------------------------------+
// $Id: OLE.php,v 1.13 2007/03/07 14:38:25 schmidt Exp $
* Array for storing OLE instances that are accessed from
* OLE_ChainedBlockStream::stream_open().
$GLOBALS['_OLE_INSTANCES'] = array();
* OLE package base class.
* @author Xavier Noguer <xnoguer@php.net>
* @author Christian Schmidt <schmidt@php.net>
* @package PHPExcel_Shared_OLE
const OLE_PPS_TYPE_ROOT = 5;
const OLE_PPS_TYPE_DIR = 1;
const OLE_PPS_TYPE_FILE = 2;
const OLE_DATA_SIZE_SMALL = 0x1000;
const OLE_LONG_INT_SIZE = 4;
const OLE_PPS_SIZE = 0x80;
* The file handle for reading an OLE container
* Array of PPS's found on the OLE container
* Root directory of OLE container
* Big Block Allocation Table
* @var array (blockId => nextBlockId)
* Short Block Allocation Table
* @var array (blockId => nextBlockId)
* Size of big blocks. This is usually 512.
* @var int number of octets per block.
* Size of small blocks. This is usually 64.
* @var int number of octets per block
* Reads an OLE container from the contents of the file given.
* @return mixed true on success, PEAR_Error on failure
public function read($file)
throw new Exception("Can't open file $file");
$signature = fread($fh, 8);
if ("\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" != $signature) {
throw new Exception("File doesn't seem to be an OLE container.");
if (fread($fh, 2) != "\xFE\xFF") {
// This shouldn't be a problem in practice
throw new Exception("Only Little-Endian encoding is supported.");
// Size of blocks and short blocks in bytes
// Skip UID, revision number and version number
// Number of blocks in Big Block Allocation Table
$bbatBlockCount = self::_readInt4($fh);
$directoryFirstBlockId = self::_readInt4($fh);
// Streams shorter than this are stored using small blocks
$this->bigBlockThreshold = self::_readInt4($fh);
// Block id of first sector in Short Block Allocation Table
$sbatFirstBlockId = self::_readInt4($fh);
// Number of blocks in Short Block Allocation Table
$sbbatBlockCount = self::_readInt4($fh);
// Block id of first sector in Master Block Allocation Table
$mbatFirstBlockId = self::_readInt4($fh);
// Number of blocks in Master Block Allocation Table
$mbbatBlockCount = self::_readInt4($fh);
// Remaining 4 * 109 bytes of current block is beginning of Master
// Block Allocation Table
for ($i = 0; $i < 109; ++ $i) {
$mbatBlocks[] = self::_readInt4($fh);
// Read rest of Master Block Allocation Table (if any is left)
for ($i = 0; $i < $mbbatBlockCount; ++ $i) {
$mbatBlocks[] = self::_readInt4($fh);
// Last block id in each block points to next block
// Read Big Block Allocation Table according to chain specified by
for ($i = 0; $i < $bbatBlockCount; ++ $i) {
$this->bbat[] = self::_readInt4($fh);
// Read short block allocation table (SBAT)
$shortBlockCount = $sbbatBlockCount * $this->bigBlockSize / 4;
$sbatFh = $this->getStream($sbatFirstBlockId);
for ($blockId = 0; $blockId < $shortBlockCount; ++ $blockId) {
$this->sbat[$blockId] = self::_readInt4($sbatFh);
* @param int byte offset from beginning of file
* Returns a stream for use with fread() etc. External callers should
* use PHPExcel_Shared_OLE_PPS_File::getStream().
* @param int|PPS block id or PPS
* @return resource read-only stream
static $isRegistered = false;
stream_wrapper_register('ole-chainedblockstream',
'PHPExcel_Shared_OLE_ChainedBlockStream');
// Store current instance in global array, so that it can be accessed
// in OLE_ChainedBlockStream::stream_open().
// Object is removed from self::$instances in OLE_Stream::close().
$GLOBALS['_OLE_INSTANCES'][] = $this;
$instanceId = end(array_keys($GLOBALS['_OLE_INSTANCES']));
$path = 'ole-chainedblockstream://oleInstanceId=' . $instanceId;
if ($blockIdOrPps instanceof PHPExcel_Shared_OLE_PPS) {
$path .= '&blockId=' . $blockIdOrPps->_StartBlock;
$path .= '&size=' . $blockIdOrPps->Size;
$path .= '&blockId=' . $blockIdOrPps;
return fopen($path, 'r');
* @param resource file handle
private static function _readInt1($fh)
* Reads an unsigned short (2 octets).
* @param resource file handle
private static function _readInt2($fh)
* Reads an unsigned long (4 octets).
* @param resource file handle
private static function _readInt4($fh)
* Gets information about all PPS's on the OLE container from the PPS WK's
* creates an OLE_PPS object for each one.
* @param integer the block id of the first block
* @return mixed true on success, PEAR_Error on failure
for ($pos = 0; ; $pos += 128) {
fseek($fh, $pos, SEEK_SET);
$nameUtf16 = fread($fh, 64);
$nameLength = self::_readInt2($fh);
$nameUtf16 = substr($nameUtf16, 0, $nameLength - 2);
// Simple conversion from UTF-16LE to ISO-8859-1
$type = self::_readInt1($fh);
case self::OLE_PPS_TYPE_ROOT:
case self::OLE_PPS_TYPE_DIR:
null, null, null, null, array());
case self::OLE_PPS_TYPE_FILE:
$pps->PrevPps = self::_readInt4($fh);
$pps->NextPps = self::_readInt4($fh);
$pps->DirPps = self::_readInt4($fh);
fseek($fh, 20, SEEK_CUR);
$pps->Time1st = self::OLE2LocalDate(fread($fh, 8));
$pps->Time2nd = self::OLE2LocalDate(fread($fh, 8));
$pps->_StartBlock = self::_readInt4($fh);
$pps->Size = self::_readInt4($fh);
// check if the PPS tree (starting from root) is complete
if (isset ($this->root) &&
// Initialize $pps->children on directories
foreach ($this->_list as $pps) {
if ($pps->Type == self::OLE_PPS_TYPE_DIR || $pps->Type == self::OLE_PPS_TYPE_ROOT) {
$nos = array($pps->DirPps);
$pps->children = array();
$childPps = $this->_list[$no];
$nos[] = $childPps->PrevPps;
$nos[] = $childPps->NextPps;
$pps->children[] = $childPps;
* It checks whether the PPS tree is complete (all PPS's read)
* starting with the given PPS (not necessarily root)
* @param integer $index The index of the PPS from which we are checking
* @return boolean Whether the PPS tree for the given PPS is complete
return isset ($this->_list[$index]) &&
($pps = $this->_list[$index]) &&
* Checks whether a PPS is a File PPS or not.
* If there is no PPS for the index given, it will return false.
* @param integer $index The index for the PPS
* @return bool true if it's a File PPS, false otherwise
public function isFile($index)
if (isset ($this->_list[$index])) {
return ($this->_list[$index]->Type == self::OLE_PPS_TYPE_FILE);
* Checks whether a PPS is a Root PPS or not.
* If there is no PPS for the index given, it will return false.
* @param integer $index The index for the PPS.
* @return bool true if it's a Root PPS, false otherwise
public function isRoot($index)
if (isset ($this->_list[$index])) {
return ($this->_list[$index]->Type == self::OLE_PPS_TYPE_ROOT);
* Gives the total number of PPS's found in the OLE container.
* @return integer The total number of PPS's found in the OLE container
* If there is no PPS for the index given, it will return an empty string.
* @param integer $index The index for the PPS
* @param integer $position The position from which to start reading
* @param integer $length The amount of bytes to read (at most)
* @return string The binary string containing the data requested
* @see OLE_PPS_File::getStream()
public function getData($index, $position, $length)
// if position is not valid return empty string
if (!isset ($this->_list[$index]) || ($position >= $this->_list[$index]->Size) || ($position < 0)) {
* Gets the data length from a PPS
* If there is no PPS for the index given, it will return 0.
* @param integer $index The index for the PPS
* @return integer The amount of bytes in data the PPS has
if (isset ($this->_list[$index])) {
return $this->_list[$index]->Size;
* Utility function to transform ASCII text to Unicode
* @param string $ascii The ASCII string to transform
* @return string The string in Unicode
public static function Asc2Ucs($ascii)
for ($i = 0; $i < strlen($ascii); ++ $i) {
$rawname .= $ascii{$i} . "\x00";
* Returns a string for the OLE container with the date given
* @param integer $date A timestamp
* @return string The string for the OLE container
return "\x00\x00\x00\x00\x00\x00\x00\x00";
// factor used for separating numbers into 4 bytes parts
// days from 1-1-1601 until the beggining of UNIX era
// multiply just to make MS happy
$high_part = floor($big_date / $factor);
$low_part = floor((($big_date / $factor) - $high_part) * $factor);
for ($i = 0; $i < 4; ++ $i) {
$hex = $low_part % 0x100;
for ($i = 0; $i < 4; ++ $i) {
$hex = $high_part % 0x100;
* Returns a timestamp from an OLE container's date
* @param integer $string A binary string with the encoded date
* @return string The timestamp corresponding to the string
return new PEAR_Error("Expecting 8 byte string");
// factor used for separating numbers into 4 bytes parts
$big_date = ($high_part * $factor) + $low_part;
// days from 1-1-1601 until the beggining of UNIX era
// translate to seconds from beggining of UNIX era
$big_date -= $days * 24 * 3600;
|