|
ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Inheritance diagram for PHPExcel_CachedObjectStorage_Memcache:
Collaboration diagram for PHPExcel_CachedObjectStorage_Memcache:Public Member Functions | |
| addCacheData ($pCoord, PHPExcel_Cell $cell) | |
| Add or Update a cell in cache identified by coordinate address. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| getCacheData ($pCoord) | |
| Get cell at a specific coordinate. More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
| unsetWorksheetCells () | |
| Clear the cell collection and disconnect from our parent. More... | |
| __construct (PHPExcel_Worksheet $parent, $arguments) | |
| Initialise this new cell collection. More... | |
| failureCallback ($host, $port) | |
| __destruct () | |
| Destroy this cell collection. More... | |
Public Member Functions inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| __construct (PHPExcel_Worksheet $parent) | |
| Initialise this new cell collection. More... | |
| getParent () | |
| Return the parent worksheet for this cell collection. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| moveCell ($fromAddress, $toAddress) | |
| Move a cell object from one address to another. More... | |
| updateCacheData (PHPExcel_Cell $cell) | |
| Add or Update a cell in cache. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| getSortedCellList () | |
| Sort the list of all cell addresses currently held in cache by row and column. More... | |
| getHighestRowAndColumn () | |
| Get highest worksheet column and highest row that have cell records. More... | |
| getCurrentAddress () | |
| Return the cell address of the currently active cell object. More... | |
| getCurrentColumn () | |
| Return the column address of the currently active cell object. More... | |
| getCurrentRow () | |
| Return the row address of the currently active cell object. More... | |
| getHighestColumn ($row=null) | |
| getHighestRow ($column=null) | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
| removeRow ($row) | |
| Remove a row, deleting all cells in that row. More... | |
| removeColumn ($column) | |
| Remove a column, deleting all cells in that column. More... | |
Public Member Functions inherited from PHPExcel_CachedObjectStorage_ICache | |
| addCacheData ($pCoord, PHPExcel_Cell $cell) | |
| Add or Update a cell in cache identified by coordinate address. More... | |
| updateCacheData (PHPExcel_Cell $cell) | |
| Add or Update a cell in cache. More... | |
| getCacheData ($pCoord) | |
| Fetch a cell from cache identified by coordinate address. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| getSortedCellList () | |
| Get the list of all cell addresses currently held in cache sorted by column and row. More... | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
Static Public Member Functions | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
Protected Member Functions | |
| _storeData () | |
| Store cell data in cache for the current cell object if it's "dirty", and the 'nullify' the current cell object. More... | |
Protected Member Functions inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| _getUniqueID () | |
| Generate a unique ID for cache referencing. More... | |
Private Attributes | |
| $_cachePrefix = null | |
| $_cacheTime = 600 | |
| $_memcache = null | |
Additional Inherited Members | |
Protected Attributes inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| $_parent | |
| $_currentObject = null | |
| $_currentObjectID = null | |
| $_currentCellIsDirty = true | |
| $_cellCache = array() | |
Definition at line 36 of file Memcache.php.
| PHPExcel_CachedObjectStorage_Memcache::__construct | ( | PHPExcel_Worksheet | $parent, |
| $arguments | |||
| ) |
Initialise this new cell collection.
| PHPExcel_Worksheet | $parent | The worksheet for this cell collection |
| array | of mixed $arguments Additional initialisation arguments |
Definition at line 255 of file Memcache.php.
References PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Memcache::__destruct | ( | ) |
Destroy this cell collection.
Definition at line 291 of file Memcache.php.
References getCellList().
Referenced by _storeData(), copyCellCollection(), and unsetWorksheetCells().
Here is the call graph for this function:
Here is the caller graph for this function:
|
protected |
Store cell data in cache for the current cell object if it's "dirty", and the 'nullify' the current cell object.
| PHPExcel_Exception |
Definition at line 67 of file Memcache.php.
References __destruct().
Referenced by addCacheData(), getCacheData(), and getCellList().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_CachedObjectStorage_Memcache::addCacheData | ( | $pCoord, | |
| PHPExcel_Cell | $cell | ||
| ) |
Add or Update a cell in cache identified by coordinate address.
| string | $pCoord | Coordinate address of the cell to update |
| PHPExcel_Cell | $cell | Cell to update |
| PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 92 of file Memcache.php.
References _storeData().
Here is the call graph for this function:
|
static |
Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build.
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 304 of file Memcache.php.
| PHPExcel_CachedObjectStorage_Memcache::copyCellCollection | ( | PHPExcel_Worksheet | $parent | ) |
Clone the cell collection.
| PHPExcel_Worksheet | $parent | The new worksheet |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 204 of file Memcache.php.
References __destruct(), PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID(), and getCellList().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Memcache::deleteCacheData | ( | $pCoord | ) |
Delete a cell in cache identified by coordinate address.
| string | $pCoord | Coordinate address of the cell to delete |
| PHPExcel_Exception |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 189 of file Memcache.php.
| PHPExcel_CachedObjectStorage_Memcache::failureCallback | ( | $host, | |
| $port | |||
| ) |
Memcache error handler @param string $host Memcache server @param integer $port Memcache port
| PHPExcel_Exception |
Definition at line 283 of file Memcache.php.
| PHPExcel_CachedObjectStorage_Memcache::getCacheData | ( | $pCoord | ) |
Get cell at a specific coordinate.
| string | $pCoord | Coordinate of the cell |
| PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 139 of file Memcache.php.
References PHPExcel_CachedObjectStorage_CacheBase\$_currentObject, and _storeData().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Memcache::getCellList | ( | ) |
Get a list of all cell addresses currently held in cache.
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 174 of file Memcache.php.
References _storeData().
Referenced by __destruct(), and copyCellCollection().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_CachedObjectStorage_Memcache::isDataSet | ( | $pCoord | ) |
Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell?
| string | $pCoord | Coordinate address of the cell to check |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 113 of file Memcache.php.
References $success.
| PHPExcel_CachedObjectStorage_Memcache::unsetWorksheetCells | ( | ) |
Clear the cell collection and disconnect from our parent.
Definition at line 233 of file Memcache.php.
References __destruct().
Here is the call graph for this function:
|
private |
Definition at line 43 of file Memcache.php.
|
private |
Definition at line 50 of file Memcache.php.
|
private |
Definition at line 57 of file Memcache.php.