ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Shared_OLERead Class Reference
+ Collaboration diagram for PHPExcel_Shared_OLERead:

Public Member Functions

 read ($sFileName)
 Read the file.
 getWorkBook ()
 Extract binary stream data, workbook stream + sheet streams.

Data Fields

const IDENTIFIER_OLE = IDENTIFIER_OLE
const BIG_BLOCK_SIZE = 0x200
const SMALL_BLOCK_SIZE = 0x40
const PROPERTY_STORAGE_BLOCK_SIZE = 0x80
const SMALL_BLOCK_THRESHOLD = 0x1000
const NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2c
const ROOT_START_BLOCK_POS = 0x30
const SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3c
const EXTENSION_BLOCK_POS = 0x44
const NUM_EXTENSION_BLOCK_POS = 0x48
const BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4c
const SIZE_OF_NAME_POS = 0x40
const TYPE_POS = 0x42
const START_BLOCK_POS = 0x74
const SIZE_POS = 0x78

Private Member Functions

 _readData ($bl)
 Read a standard stream (by joining sectors using information from SAT)
 _readPropertySets ()
 Read entries in the directory stream.
 _GetInt4d ($data, $pos)
 Read 4 bytes of data at specified position.

Private Attributes

 $data = ''

Detailed Description

Definition at line 30 of file OLERead.php.

Member Function Documentation

PHPExcel_Shared_OLERead::_GetInt4d (   $data,
  $pos 
)
private

Read 4 bytes of data at specified position.

Parameters
string$data
int$pos
Returns
int

Definition at line 295 of file OLERead.php.

References $data.

Referenced by _readPropertySets(), and read().

{
// Hacked by Andreas Rehm 2006 to ensure correct result of the <<24 block on 32 and 64bit systems
$_or_24 = ord($data[$pos+3]);
if ($_or_24>=128) $_ord_24 = -abs((256-$_or_24) << 24);
else $_ord_24 = ($_or_24&127) << 24;
return ord($data[$pos]) | (ord($data[$pos+1]) << 8) | (ord($data[$pos+2]) << 16) | $_ord_24;
}

+ Here is the caller graph for this function:

PHPExcel_Shared_OLERead::_readData (   $bl)
private

Read a standard stream (by joining sectors using information from SAT)

Parameters
int$blSector ID where the stream starts
Returns
string Data for standard stream

Definition at line 222 of file OLERead.php.

References $data.

Referenced by getWorkBook(), and read().

{
$block = $bl;
$pos = 0;
$data = '';
while ($block != -2) {
$pos = ($block + 1) * self::BIG_BLOCK_SIZE;
$data = $data . substr($this->data, $pos, self::BIG_BLOCK_SIZE);
$block = $this->bigBlockChain[$block];
}
return $data;
}

+ Here is the caller graph for this function:

PHPExcel_Shared_OLERead::_readPropertySets ( )
private

Read entries in the directory stream.

Definition at line 239 of file OLERead.php.

References $d, $name, $size, $type, _GetInt4d(), and PROPERTY_STORAGE_BLOCK_SIZE.

Referenced by read().

{
$offset = 0;
// loop through entires, each entry is 128 bytes
while ($offset < strlen($this->entry)) {
// entry data (128 bytes)
$d = substr($this->entry, $offset, self::PROPERTY_STORAGE_BLOCK_SIZE);
// size in bytes of name
$nameSize = ord($d[self::SIZE_OF_NAME_POS]) | (ord($d[self::SIZE_OF_NAME_POS+1]) << 8);
// type of entry
$type = ord($d[self::TYPE_POS]);
// sectorID of first sector or short sector, if this entry refers to a stream (the case with workbook)
// sectorID of first sector of the short-stream container stream, if this entry is root entry
$startBlock = $this->_GetInt4d($d, self::START_BLOCK_POS);
$size = $this->_GetInt4d($d, self::SIZE_POS);
$name = '';
for ($i = 0; $i < $nameSize ; ++$i) {
$name .= $d[$i];
}
$name = str_replace("\x00", "", $name);
$this->props[] = array (
'name' => $name,
'type' => $type,
'startBlock' => $startBlock,
'size' => $size);
// Workbook directory entry (BIFF5 uses Book, BIFF8 uses Workbook)
if (($name == 'Workbook') || ($name == 'Book') || ($name == 'WORKBOOK')) {
$this->wrkbook = count($this->props) - 1;
}
// Root entry
if ($name == 'Root Entry' || $name == 'ROOT ENTRY' || $name == 'R') {
$this->rootentry = count($this->props) - 1;
}
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

PHPExcel_Shared_OLERead::getWorkBook ( )

Extract binary stream data, workbook stream + sheet streams.

Returns
string

Definition at line 173 of file OLERead.php.

References _readData(), BIG_BLOCK_SIZE, and SMALL_BLOCK_SIZE.

{
if ($this->props[$this->wrkbook]['size'] < self::SMALL_BLOCK_THRESHOLD){
$rootdata = $this->_readData($this->props[$this->rootentry]['startBlock']);
$streamData = '';
$block = $this->props[$this->wrkbook]['startBlock'];
$pos = 0;
while ($block != -2) {
$pos = $block * self::SMALL_BLOCK_SIZE;
$streamData .= substr($rootdata, $pos, self::SMALL_BLOCK_SIZE);
$block = $this->smallBlockChain[$block];
}
return $streamData;
} else {
$numBlocks = $this->props[$this->wrkbook]['size'] / self::BIG_BLOCK_SIZE;
if ($this->props[$this->wrkbook]['size'] % self::BIG_BLOCK_SIZE != 0) {
++$numBlocks;
}
if ($numBlocks == 0) return '';
$streamData = '';
$block = $this->props[$this->wrkbook]['startBlock'];
$pos = 0;
while ($block != -2) {
$pos = ($block + 1) * self::BIG_BLOCK_SIZE;
$streamData .= substr($this->data, $pos, self::BIG_BLOCK_SIZE);
$block = $this->bigBlockChain[$block];
}
return $streamData;
}
}

+ Here is the call graph for this function:

PHPExcel_Shared_OLERead::read (   $sFileName)

Read the file.

Parameters
$sFileNamestring Filename
Exceptions
Exception

Definition at line 68 of file OLERead.php.

References _GetInt4d(), _readData(), _readPropertySets(), BIG_BLOCK_DEPOT_BLOCKS_POS, and IDENTIFIER_OLE.

{
// Check if file exists and is readable
if(!is_readable($sFileName)) {
throw new Exception("Could not open " . $sFileName . " for reading! File does not exist, or it is not readable.");
}
// Get the file data
$this->data = file_get_contents($sFileName);
// Check OLE identifier
if (substr($this->data, 0, 8) != self::IDENTIFIER_OLE) {
throw new Exception('The filename ' . $sFileName . ' is not recognised as an OLE file');
}
// Total number of sectors used for the SAT
$this->numBigBlockDepotBlocks = $this->_GetInt4d($this->data, self::NUM_BIG_BLOCK_DEPOT_BLOCKS_POS);
// SecID of the first sector of the directory stream
$this->rootStartBlock = $this->_GetInt4d($this->data, self::ROOT_START_BLOCK_POS);
// SecID of the first sector of the SSAT (or -2 if not extant)
$this->sbdStartBlock = $this->_GetInt4d($this->data, self::SMALL_BLOCK_DEPOT_BLOCK_POS);
// SecID of the first sector of the MSAT (or -2 if no additional sectors are used)
$this->extensionBlock = $this->_GetInt4d($this->data, self::EXTENSION_BLOCK_POS);
// Total number of sectors used by MSAT
$this->numExtensionBlocks = $this->_GetInt4d($this->data, self::NUM_EXTENSION_BLOCK_POS);
$bigBlockDepotBlocks = array();
$bbdBlocks = $this->numBigBlockDepotBlocks;
if ($this->numExtensionBlocks != 0) {
$bbdBlocks = (self::BIG_BLOCK_SIZE - self::BIG_BLOCK_DEPOT_BLOCKS_POS)/4;
}
for ($i = 0; $i < $bbdBlocks; ++$i) {
$bigBlockDepotBlocks[$i] = $this->_GetInt4d($this->data, $pos);
$pos += 4;
}
for ($j = 0; $j < $this->numExtensionBlocks; ++$j) {
$pos = ($this->extensionBlock + 1) * self::BIG_BLOCK_SIZE;
$blocksToRead = min($this->numBigBlockDepotBlocks - $bbdBlocks, self::BIG_BLOCK_SIZE / 4 - 1);
for ($i = $bbdBlocks; $i < $bbdBlocks + $blocksToRead; ++$i) {
$bigBlockDepotBlocks[$i] = $this->_GetInt4d($this->data, $pos);
$pos += 4;
}
$bbdBlocks += $blocksToRead;
if ($bbdBlocks < $this->numBigBlockDepotBlocks) {
$this->extensionBlock = $this->_GetInt4d($this->data, $pos);
}
}
$pos = 0;
$index = 0;
$this->bigBlockChain = array();
for ($i = 0; $i < $this->numBigBlockDepotBlocks; ++$i) {
$pos = ($bigBlockDepotBlocks[$i] + 1) * self::BIG_BLOCK_SIZE;
for ($j = 0 ; $j < self::BIG_BLOCK_SIZE / 4; ++$j) {
$this->bigBlockChain[$index] = $this->_GetInt4d($this->data, $pos);
$pos += 4 ;
++$index;
}
}
$pos = 0;
$index = 0;
$sbdBlock = $this->sbdStartBlock;
$this->smallBlockChain = array();
while ($sbdBlock != -2) {
$pos = ($sbdBlock + 1) * self::BIG_BLOCK_SIZE;
for ($j = 0; $j < self::BIG_BLOCK_SIZE / 4; ++$j) {
$this->smallBlockChain[$index] = $this->_GetInt4d($this->data, $pos);
$pos += 4;
++$index;
}
$sbdBlock = $this->bigBlockChain[$sbdBlock];
}
$block = $this->rootStartBlock;
$pos = 0;
// read the directory stream
$this->entry = $this->_readData($block);
}

+ Here is the call graph for this function:

Field Documentation

PHPExcel_Shared_OLERead::$data = ''
private

Definition at line 31 of file OLERead.php.

Referenced by _GetInt4d(), and _readData().

const PHPExcel_Shared_OLERead::BIG_BLOCK_DEPOT_BLOCKS_POS = 0x4c

Definition at line 54 of file OLERead.php.

Referenced by read().

const PHPExcel_Shared_OLERead::BIG_BLOCK_SIZE = 0x200

Definition at line 37 of file OLERead.php.

Referenced by getWorkBook().

const PHPExcel_Shared_OLERead::EXTENSION_BLOCK_POS = 0x44

Definition at line 52 of file OLERead.php.

const PHPExcel_Shared_OLERead::IDENTIFIER_OLE = IDENTIFIER_OLE

Definition at line 34 of file OLERead.php.

const PHPExcel_Shared_OLERead::NUM_BIG_BLOCK_DEPOT_BLOCKS_POS = 0x2c

Definition at line 49 of file OLERead.php.

const PHPExcel_Shared_OLERead::NUM_EXTENSION_BLOCK_POS = 0x48

Definition at line 53 of file OLERead.php.

const PHPExcel_Shared_OLERead::PROPERTY_STORAGE_BLOCK_SIZE = 0x80

Definition at line 43 of file OLERead.php.

Referenced by _readPropertySets().

const PHPExcel_Shared_OLERead::ROOT_START_BLOCK_POS = 0x30

Definition at line 50 of file OLERead.php.

const PHPExcel_Shared_OLERead::SIZE_OF_NAME_POS = 0x40

Definition at line 57 of file OLERead.php.

const PHPExcel_Shared_OLERead::SIZE_POS = 0x78

Definition at line 60 of file OLERead.php.

const PHPExcel_Shared_OLERead::SMALL_BLOCK_DEPOT_BLOCK_POS = 0x3c

Definition at line 51 of file OLERead.php.

const PHPExcel_Shared_OLERead::SMALL_BLOCK_SIZE = 0x40

Definition at line 40 of file OLERead.php.

Referenced by getWorkBook().

const PHPExcel_Shared_OLERead::SMALL_BLOCK_THRESHOLD = 0x1000

Definition at line 46 of file OLERead.php.

const PHPExcel_Shared_OLERead::START_BLOCK_POS = 0x74

Definition at line 59 of file OLERead.php.

const PHPExcel_Shared_OLERead::TYPE_POS = 0x42

Definition at line 58 of file OLERead.php.


The documentation for this class was generated from the following file: