123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- class PHPExcel_CachedObjectStorage_MemorySerialized extends PHPExcel_CachedObjectStorage_CacheBase implements PHPExcel_CachedObjectStorage_ICache {
-
- protected function _storeData() {
- if ($this->_currentCellIsDirty && !empty($this->_currentObjectID)) {
- $this->_currentObject->detach();
- $this->_cellCache[$this->_currentObjectID] = serialize($this->_currentObject);
- $this->_currentCellIsDirty = false;
- }
- $this->_currentObjectID = $this->_currentObject = null;
- }
-
- public function addCacheData($pCoord, PHPExcel_Cell $cell) {
- if (($pCoord !== $this->_currentObjectID) && ($this->_currentObjectID !== null)) {
- $this->_storeData();
- }
- $this->_currentObjectID = $pCoord;
- $this->_currentObject = $cell;
- $this->_currentCellIsDirty = true;
- return $cell;
- }
-
- public function getCacheData($pCoord) {
- if ($pCoord === $this->_currentObjectID) {
- return $this->_currentObject;
- }
- $this->_storeData();
-
- if (!isset($this->_cellCache[$pCoord])) {
-
- return null;
- }
-
- $this->_currentObjectID = $pCoord;
- $this->_currentObject = unserialize($this->_cellCache[$pCoord]);
-
- $this->_currentObject->attach($this);
-
- return $this->_currentObject;
- }
-
- public function getCellList() {
- if ($this->_currentObjectID !== null) {
- $this->_storeData();
- }
- return parent::getCellList();
- }
-
- public function unsetWorksheetCells() {
- if(!is_null($this->_currentObject)) {
- $this->_currentObject->detach();
- $this->_currentObject = $this->_currentObjectID = null;
- }
- $this->_cellCache = array();
-
- $this->_parent = null;
- }
- }
|