123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <?php
-
-
-
-
-
- class Swift_KeyCache_DiskKeyCache implements Swift_KeyCache
- {
-
-
- const POSITION_START = 0;
-
-
- const POSITION_END = 1;
-
-
- const POSITION_CURRENT = 2;
-
-
-
- private $_stream;
-
-
-
- private $_path;
-
-
-
- private $_keys = array();
-
-
-
- private $_quotes = false;
-
-
-
- public function __construct(Swift_KeyCache_KeyCacheInputStream $stream, $path)
- {
- $this->_stream = $stream;
- $this->_path = $path;
-
- if (function_exists('get_magic_quotes_runtime') && @get_magic_quotes_runtime() == 1)
- {
- $this->_quotes = true;
- }
- }
-
-
-
- public function setString($nsKey, $itemKey, $string, $mode)
- {
- $this->_prepareCache($nsKey);
- switch ($mode)
- {
- case self::MODE_WRITE:
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_START);
- break;
- case self::MODE_APPEND:
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_END);
- break;
- default:
- throw new Swift_SwiftException(
- 'Invalid mode [' . $mode . '] used to set nsKey='.
- $nsKey . ', itemKey=' . $itemKey
- );
- break;
- }
- fwrite($fp, $string);
- $this->_freeHandle($nsKey, $itemKey);
- }
-
-
-
- public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os,
- $mode)
- {
- $this->_prepareCache($nsKey);
- switch ($mode)
- {
- case self::MODE_WRITE:
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_START);
- break;
- case self::MODE_APPEND:
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_END);
- break;
- default:
- throw new Swift_SwiftException(
- 'Invalid mode [' . $mode . '] used to set nsKey='.
- $nsKey . ', itemKey=' . $itemKey
- );
- break;
- }
- while (false !== $bytes = $os->read(8192))
- {
- fwrite($fp, $bytes);
- }
- $this->_freeHandle($nsKey, $itemKey);
- }
-
-
-
- public function getInputByteStream($nsKey, $itemKey,
- Swift_InputByteStream $writeThrough = null)
- {
- $is = clone $this->_stream;
- $is->setKeyCache($this);
- $is->setNsKey($nsKey);
- $is->setItemKey($itemKey);
- if (isset($writeThrough))
- {
- $is->setWriteThroughStream($writeThrough);
- }
- return $is;
- }
-
-
-
- public function getString($nsKey, $itemKey)
- {
- $this->_prepareCache($nsKey);
- if ($this->hasKey($nsKey, $itemKey))
- {
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_START);
- if ($this->_quotes)
- {
- ini_set('magic_quotes_runtime', 0);
- }
- $str = '';
- while (!feof($fp) && false !== $bytes = fread($fp, 8192))
- {
- $str .= $bytes;
- }
- if ($this->_quotes)
- {
- ini_set('magic_quotes_runtime', 1);
- }
- $this->_freeHandle($nsKey, $itemKey);
- return $str;
- }
- }
-
-
-
- public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is)
- {
- if ($this->hasKey($nsKey, $itemKey))
- {
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_START);
- if ($this->_quotes)
- {
- ini_set('magic_quotes_runtime', 0);
- }
- while (!feof($fp) && false !== $bytes = fread($fp, 8192))
- {
- $is->write($bytes);
- }
- if ($this->_quotes)
- {
- ini_set('magic_quotes_runtime', 1);
- }
- $this->_freeHandle($nsKey, $itemKey);
- }
- }
-
-
-
- public function hasKey($nsKey, $itemKey)
- {
- return is_file($this->_path . '/' . $nsKey . '/' . $itemKey);
- }
-
-
-
- public function clearKey($nsKey, $itemKey)
- {
- if ($this->hasKey($nsKey, $itemKey))
- {
- $this->_freeHandle($nsKey, $itemKey);
- unlink($this->_path . '/' . $nsKey . '/' . $itemKey);
- }
- }
-
-
-
- public function clearAll($nsKey)
- {
- if (array_key_exists($nsKey, $this->_keys))
- {
- foreach ($this->_keys[$nsKey] as $itemKey=>$null)
- {
- $this->clearKey($nsKey, $itemKey);
- }
- if (is_dir($this->_path . '/' . $nsKey))
- {
- rmdir($this->_path . '/' . $nsKey);
- }
- unset($this->_keys[$nsKey]);
- }
- }
-
-
-
-
-
- private function _prepareCache($nsKey)
- {
- $cacheDir = $this->_path . '/' . $nsKey;
- if (!is_dir($cacheDir))
- {
- if (!mkdir($cacheDir))
- {
- throw new Swift_IoException('Failed to create cache directory ' . $cacheDir);
- }
- $this->_keys[$nsKey] = array();
- }
- }
-
-
-
- private function _getHandle($nsKey, $itemKey, $position)
- {
- if (!isset($this->_keys[$nsKey][$itemKey]))
- {
- $openMode = $this->hasKey($nsKey, $itemKey)
- ? 'r+b'
- : 'w+b'
- ;
- $fp = fopen($this->_path . '/' . $nsKey . '/' . $itemKey, $openMode);
- $this->_keys[$nsKey][$itemKey] = $fp;
- }
- if (self::POSITION_START == $position)
- {
- fseek($this->_keys[$nsKey][$itemKey], 0, SEEK_SET);
- }
- elseif (self::POSITION_END == $position)
- {
- fseek($this->_keys[$nsKey][$itemKey], 0, SEEK_END);
- }
- return $this->_keys[$nsKey][$itemKey];
- }
-
- private function _freeHandle($nsKey, $itemKey)
- {
- $fp = $this->_getHandle($nsKey, $itemKey, self::POSITION_CURRENT);
- fclose($fp);
- $this->_keys[$nsKey][$itemKey] = null;
- }
-
-
-
- public function __destruct()
- {
- foreach ($this->_keys as $nsKey=>$null)
- {
- $this->clearAll($nsKey);
- }
- }
-
- }
|