Zend framework 在Zend_缓存/Zend_注册表中存储Zend_日志实例(带/不带自定义帮助程序)

Zend framework 在Zend_缓存/Zend_注册表中存储Zend_日志实例(带/不带自定义帮助程序),zend-framework,zend-cache,zend-log,Zend Framework,Zend Cache,Zend Log,我正在尝试将Zend_Log的一个实例(带有Zend_Log_Writer_Stream)存储到Zend_缓存(最好)或Zend_注册表(回退),但将自定义助手作为抽象层而不是直接访问 问题 除非直接使用Zend_注册表,否则每次Zend_Log_Writer_Stream的_Stream属性都会消失 我在下面附上了我的代码以及它生成的输出 我没有这样做,因为我有另一个writer Zend_Log_writer_数据库,它写入到一个独立的数据库而不是应用程序,所以我需要初始化它。现在我已经

我正在尝试将Zend_Log的一个实例(带有Zend_Log_Writer_Stream)存储到Zend_缓存(最好)或Zend_注册表(回退),但将自定义助手作为抽象层而不是直接访问

问题

  • 除非直接使用Zend_注册表,否则每次Zend_Log_Writer_Stream的_Stream属性都会消失
我在下面附上了我的代码以及它生成的输出

我没有这样做,因为我有另一个writer Zend_Log_writer_数据库,它写入到一个独立的数据库而不是应用程序,所以我需要初始化它。现在我已经把它注释掉了

Bootstrap.php-剪裁

    protected function _initLog() {
        // instantiate CacheOrRegistry variable.
        $this->_cor = Helper_SCacheOrRegistry::getInstance();

        // make sure its not already cached and config for this resource exists.
        if ($this->_cor->exists('logger') || !($config = $this->_config->resources->log))
            return;


        $logger = new Zend_Log();
        $config = $config->toArray();

        /*

    if (isset($config['db']) && is_array($config['db'])) {
        $dbParams = $config['db'];
        $writerDb = new Zend_Log_Writer_Db(
                        $this->_cor->get('logDb'),
                        $dbParams['writerParams']['table'],
                        $dbParams['writerParams']['columnMapping']);

        if (isset($dbParams['filterName'])) {

            switch ($dbParams['filterName']) {
                case 'Priority':
                    $writerDb->addFilter(new Zend_Log_Filter_Priority($dbParams['filterParams']['priority']));
                    break;
            }
        }

        $logger->addWriter($writerDb);
    }
    */

        if( 'development' === APPLICATION_ENV) {
        $fileParams = $this->_options['resources']['log']['file'];
        if(!isset($fileParams) || !(is_array($fileParams)))
            return;

        $writerFile = new Zend_Log_Writer_Stream($fileParams['writerParams']['path'],$fileParams['writerParams']['mode']);
        $writerFile->setFormatter(new Zend_Log_Formatter_Simple($fileParams['writerParams']['format']));

        if (isset($fileParams['filterName'])) {
            switch ($fileParams['filterName']) {
                case 'Priority':
                    $writerFile->addFilter(new Zend_Log_Filter_Priority($fileParams['filterParams']['priority']));
                    break;
            }
        }

        $logger->addWriter($writerFile);
        }



        $logger->setEventItem('user_agent', $_SERVER['HTTP_USER_AGENT']);
        $logger->setEventItem('get_vars', serialize($_GET));
        $logger->setEventItem('post_vars', serialize($_POST));
        $logger->setEventItem('ip', $_SERVER['REMOTE_ADDR']);
        $logger->setEventItem('username', $this->_username);



        // This has issue of missing _stream, Using Custom Helper with Registry use force.
        $this->_cor->set('logger', $logger, true);
        $loggerRC = $this->_cor->get('logger', true);

        // This also has issue of missing _stream, Using Custom Helper with apc Cache
        $this->_cor->set('logger', $logger);
        $loggerCC = $this->_cor->get('logger');

        // This works perfectly.
        Zend_Registry::set($this->_cor->createCacheId('loggerR'), $logger);
        $loggerZ = Zend_Registry::get($this->_cor->createCacheId('loggerR'));

        // This also seems to have issue of missing _stream, Using apc Cache directly
        $cache = Zend_Registry::get('apcCache');
        $cache->save($logger, $this->_cor->createCacheId('loggerC'));
        $loggerC = $cache->load($this->_cor->createCacheId('loggerC'));


        echo "<h3>Logger, local variable</h3>";
        var_dump($logger);

        echo "<h3>Logger, from Registry using custom helper</h3>";
        var_dump($loggerRC);

        echo "<h3>Logger, from apc cache using custom helper</h3>";
        var_dump($loggerCC);

        echo "<h3>Logger, from Zend_Registry, direct.</h3>";
        var_dump($loggerZ);

        echo "<h3>Logger, from apc Cache, Direct.</h3>";
        var_dump($loggerC);
        exit;
    }
受保护函数_initLog(){
//实例化CacheOrRegistry变量。
$this->\u cor=Helper\u SCacheOrRegistry::getInstance();
//确保其尚未缓存,并且此资源的配置存在。
如果($this->\u cor->exists('logger')| |!($config=$this->\u config->resources->log))
返回;
$logger=new Zend_Log();
$config=$config->toArray();
/*
if(isset($config['db'])和&is_数组($config['db'])){
$dbParams=$config['db'];
$writerb=新的Zend\u日志\u Writer\u数据库(
$this->\u cor->get('logDb'),
$dbParams['writerParams']['table'],
$dbParams['writerParams']['columnMapping']);
if(isset($dbParams['filterName'])){
开关($dbParams['filterName'])){
案件“优先权”:
$writerb->addFilter(新的Zend_Log_Filter_优先级($dbParams['filterParams']['Priority']);
打破
}
}
$logger->addWriter($writerb);
}
*/
如果('development'==应用程序环境){
$fileParams=$this->_选项['resources']['log']['file'];
if(!isset($fileParams)| |!(is_数组($fileParams)))
返回;
$writerFile=新的Zend_日志_Writer_流($fileParams['writerParams']['path'],$fileParams['writerParams']['mode']);
$writerFile->setFormatter(新的Zend_Log_Formatter_Simple($fileParams['writerParams']['format']);
if(isset($fileParams['filterName'])){
开关($fileParams['filterName'])){
案件“优先权”:
$writerFile->addFilter(新的Zend_Log_Filter_优先级($fileParams['filterParams']['Priority']);
打破
}
}
$logger->addWriter($writerFile);
}
$logger->setEventItem('user\u agent',$\u SERVER['HTTP\u user\u agent');
$logger->setEventItem('get_vars',序列化($_get));
$logger->setEventItem('post_vars',序列化($_post));
$logger->setEventItem('ip',$服务器['REMOTE\u ADDR']);
$logger->setEventItem('username',$this->\u username);
//使用带有注册表use force的自定义帮助程序时,存在缺少_流的问题。
$this->\u cor->set('logger',$logger,true);
$loggerRC=$this->\u cor->get('logger',true);
//这还存在使用带有apc缓存的自定义帮助程序时缺少_流的问题
$this->\u cor->set('logger',$logger);
$loggerCC=$this->_cor->get('logger');
//这很好用。
Zend_Registry::set($this->\u cor->createCacheId('loggerR'),$logger);
$loggerZ=Zend_Registry::get($this->\u cor->createCacheId('loggerR');
//这似乎还存在直接使用apc缓存时丢失_流的问题
$cache=Zend_注册表::get('apcCache');
$cache->save($logger,$this->_cor->createCacheId('loggerC'));
$loggerC=$cache->load($this->\u cor->createCacheId('loggerC');
echo“记录器,局部变量”;
var_dump($logger);
echo“记录器,来自注册表,使用自定义帮助器”;
var_dump($loggerRC);
echo“记录器,来自apc缓存,使用自定义帮助器”;
var_dump($loggerCC);
echo“记录器,来自Zend_注册表,直接。”;
var_dump($loggerZ);
echo“记录器,来自apc缓存,直接。”;
var_dump($loggerC);
出口
}
Helper\u SCacheOrRegistry.php

class Helper_SCacheOrRegistry {

    private $_source;
    private static $_instance;
    private $_functionsArray = array('Cache' => array(
            'get' => '_getFromCache',
            'set' => '_saveInCache',
            'del' => '_deleteFromCache',
            'exists' => '_existsInCache'),
        'Registry' => array(
            'get' => '_getFromRegistry',
            'set' => '_saveInRegistry',
            'del' => '_deleteFromRegistry',
            'exists' => '_existsInRegistry',
        )
    );

    public static function getInstance() {
        if (!isset(self::$_instance)) {
            $c = __CLASS__;
            self::$_instance = new $c();
        }

        return self::$_instance;
    }


    private  function _getSource($forceRegistry = null) {
        if(true === $forceRegistry)
            return Zend_Registry::getInstance();

        if (Zend_Registry::getInstance()->offsetExists('apcCache'))
            return Zend_Registry::get('apcCache');
        else
            return Zend_Registry::getInstance();

    }

    private  function _isSourceCache() {
        return (!$this->_source instanceof Zend_Registry);
    }

    public function createCacheId($id) {
        return md5(',e@Q!u$#~\|3Pa^e1%oh&s0*<h(7)o-+h/t.' . $id);
    }

    public function set($key, $value, $forceRegistry = null) {
        $this->_fire('set', $this->createCacheId($key), $value, $forceRegistry);
    }

    public function get($key, $forceRegistry = null) {
        return $this->_fire('get', $this->createCacheId($key), null, $forceRegistry);
    }

    public function del($key, $forceRegistry = null) {
        return $this->_fire('del', $this->createCacheId($key), null, $forceRegistry);
    }

    public function exists($key, $forceRegistry = null) {
        return $this->_fire('exists', $this->createCacheId($key), null, $forceRegistry);
    }

    private  function _fire($method, $key, $value = null, $forceRegistry = null) {


        $this->_source = $this->_getSource($forceRegistry);
        $call = ($this->_isSourceCache()) ?
                $this->_functionsArray['Cache'][$method] : $this->_functionsArray['Registry'][$method];

        return (isset($value)) ? $this->$call($key, $value) : $this->$call($key);
    }

    private  function _getFromCache($key) {
        return $this->_existsInCache($key);
    }

    private  function _saveInCache($key, $value) {
        if ($this->_existsInCache($key))
            return false;

        $this->_source->save($value, $key);
        return true;
    }

    private  function _deleteFromCache($key) {
        if (!$this->_existsInCache($key))
            return false;

        $this->_source->remove($key);
        return true;
    }

    private  function _existsInCache($key) {
        return $this->_source->load($key);
    }

    private  function _getFromRegistry($key) {
        if ($this->_existsInRegistry($key))
            return unserialize($this->_source->get($key));

        return false;
    }

    private  function _saveInRegistry($key, $value) {
        if ($this->_existsInRegistry($key))
            return false;

        $this->_source->set($key, serialize($value));
        return true;
    }

    private  function _deleteFromRegistry($key) {
        if (!$this->_existsInCache($key))
            return false;

        $this->_source->offsetUnset($key);
        return true;
    }

    private  function _existsInRegistry($key) {
        return $this->_source->isRegistered($key);
    }

}
类助手\u SCacheOrRegistry{
私人来源;;
私有静态$\u实例;
私有$\u函数数组=数组('Cache'=>数组(
“获取”=>“\u getFromCache”,
“设置”=>“\u saveInCache”,
“del'=>”\u deleteFromCache',
“存在”=>“\u existsInCache”),
'注册表'=>数组(
'get'=>'\u getFromRegistry',
“设置”=>“\u保存注册表”,
'del'=>'u deleteFromRegistry',
“存在”=>“\u存在注册表”,
)
);
公共静态函数getInstance(){
if(!isset(self:$\实例)){
$c=\uuuuu类\uuuuuuu;
self::$\u instance=new$c();
}
返回self::$\u实例;
}
私有函数_getSource($forceRegistry=null){
如果(true==$forceRegistry)
返回Zend_注册表::getInstance();
if(Zend_Registry::getInstance()->offsetExists('apcCache'))
返回Zend_注册表::get('apcCache');
其他的
返回Zend_注册表::getInstance();
}
私有函数_isSourceCache(){
返回(!$this->\Zend\u注册表的源实例);
}
公共函数createCacheId($id){
返回md5(',e@Q!u$#~\| 3Pa^e1%oh&s0*
  • Zend_日志在存储时不应序列化
  • Zend_缓存不是一个选项,因为它需要序列化对象,因为它只存储字符串
  • Zend_注册表无法通过helper类工作,因为由于代码的原因,正在进行一些序列化。删除该项修复了该问题
简言之:

  • 使用Zend_注册表存储对象
  • 在Zend_注册表中存储时不要序列化
object(Zend_Log)[84]
  protected '_priorities' => 
    array
      0 => string 'EMERG' (length=5)
      1 => string 'ALERT' (length=5)
      2 => string 'CRIT' (length=4)
      3 => string 'ERR' (length=3)
      4 => string 'WARN' (length=4)
      5 => string 'NOTICE' (length=6)
      6 => string 'INFO' (length=4)
      7 => string 'DEBUG' (length=5)
  protected '_writers' => 
    array
      0 => 
        object(Zend_Log_Writer_Stream)[93]
          protected '_stream' => resource(77, stream)
          protected '_filters' => 
            array
              0 => 
                object(Zend_Log_Filter_Priority)[94]
                  protected '_priority' => int 7
                  protected '_operator' => string '<=' (length=2)
          protected '_formatter' => 
            object(Zend_Log_Formatter_Simple)[95]
              protected '_format' => string ' [ %ip% ] - [ %timestamp% ] [ %user_agent% ] - [ %username% ]
        [ %priorityName% : %message% ]
        [ POST: %post_vars% ] 
        [ GET: %get_vars% ] 
' (length=161)
  protected '_filters' => 
    array
      empty
  protected '_extras' => 
    array
      'user_agent' => string 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.18 Safari/535.1' (length=99)
      'get_vars' => string 'a:0:{}' (length=6)
      'post_vars' => string 'a:0:{}' (length=6)
      'ip' => string '127.0.0.1' (length=9)
      'username' => string 'guest' (length=5)
  protected '_defaultWriterNamespace' => string 'Zend_Log_Writer' (length=15)
  protected '_defaultFilterNamespace' => string 'Zend_Log_Filter' (length=15)
  protected '_defaultFormatterNamespace' => string 'Zend_Log_Formatter' (length=18)
  protected '_origErrorHandler' => null
  protected '_registeredErrorHandler' => boolean false
  protected '_errorHandlerMap' => boolean false
  protected '_timestampFormat' => string 'c' (length=1)
object(Zend_Log)[96]
  protected '_priorities' => 
    array
      0 => string 'EMERG' (length=5)
      1 => string 'ALERT' (length=5)
      2 => string 'CRIT' (length=4)
      3 => string 'ERR' (length=3)
      4 => string 'WARN' (length=4)
      5 => string 'NOTICE' (length=6)
      6 => string 'INFO' (length=4)
      7 => string 'DEBUG' (length=5)
  protected '_writers' => 
    array
      0 => 
        object(Zend_Log_Writer_Stream)[97]
          protected '_stream' => int 0
          protected '_filters' => 
            array
              0 => 
                object(Zend_Log_Filter_Priority)[98]
                  protected '_priority' => int 7
                  protected '_operator' => string '<=' (length=2)
          protected '_formatter' => 
            object(Zend_Log_Formatter_Simple)[99]
              protected '_format' => string ' [ %ip% ] - [ %timestamp% ] [ %user_agent% ] - [ %username% ]
        [ %priorityName% : %message% ]
        [ POST: %post_vars% ] 
        [ GET: %get_vars% ] 
' (length=161)
  protected '_filters' => 
    array
      empty
  protected '_extras' => 
    array
      'user_agent' => string 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.18 Safari/535.1' (length=99)
      'get_vars' => string 'a:0:{}' (length=6)
      'post_vars' => string 'a:0:{}' (length=6)
      'ip' => string '127.0.0.1' (length=9)
      'username' => string 'guest' (length=5)
  protected '_defaultWriterNamespace' => string 'Zend_Log_Writer' (length=15)
  protected '_defaultFilterNamespace' => string 'Zend_Log_Filter' (length=15)
  protected '_defaultFormatterNamespace' => string 'Zend_Log_Formatter' (length=18)
  protected '_origErrorHandler' => null
  protected '_registeredErrorHandler' => boolean false
  protected '_errorHandlerMap' => boolean false
  protected '_timestampFormat' => string 'c' (length=1)
object(Zend_Log)[100]
  protected '_priorities' => 
    array
      0 => string 'EMERG' (length=5)
      1 => string 'ALERT' (length=5)
      2 => string 'CRIT' (length=4)
      3 => string 'ERR' (length=3)
      4 => string 'WARN' (length=4)
      5 => string 'NOTICE' (length=6)
      6 => string 'INFO' (length=4)
      7 => string 'DEBUG' (length=5)
  protected '_writers' => 
    array
      0 => 
        object(Zend_Log_Writer_Stream)[101]
          protected '_stream' => int 0
          protected '_filters' => 
            array
              0 => 
                object(Zend_Log_Filter_Priority)[102]
                  protected '_priority' => int 7
                  protected '_operator' => string '<=' (length=2)
          protected '_formatter' => 
            object(Zend_Log_Formatter_Simple)[103]
              protected '_format' => string ' [ %ip% ] - [ %timestamp% ] [ %user_agent% ] - [ %username% ]
        [ %priorityName% : %message% ]
        [ POST: %post_vars% ] 
        [ GET: %get_vars% ] 
' (length=161)
  protected '_filters' => 
    array
      empty
  protected '_extras' => 
    array
      'user_agent' => string 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.18 Safari/535.1' (length=99)
      'get_vars' => string 'a:0:{}' (length=6)
      'post_vars' => string 'a:0:{}' (length=6)
      'ip' => string '127.0.0.1' (length=9)
      'username' => string 'guest' (length=5)
  protected '_defaultWriterNamespace' => string 'Zend_Log_Writer' (length=15)
  protected '_defaultFilterNamespace' => string 'Zend_Log_Filter' (length=15)
  protected '_defaultFormatterNamespace' => string 'Zend_Log_Formatter' (length=18)
  protected '_origErrorHandler' => null
  protected '_registeredErrorHandler' => boolean false
  protected '_errorHandlerMap' => boolean false
  protected '_timestampFormat' => string 'c' (length=1)
object(Zend_Log)[84]
  protected '_priorities' => 
    array
      0 => string 'EMERG' (length=5)
      1 => string 'ALERT' (length=5)
      2 => string 'CRIT' (length=4)
      3 => string 'ERR' (length=3)
      4 => string 'WARN' (length=4)
      5 => string 'NOTICE' (length=6)
      6 => string 'INFO' (length=4)
      7 => string 'DEBUG' (length=5)
  protected '_writers' => 
    array
      0 => 
        object(Zend_Log_Writer_Stream)[93]
          protected '_stream' => resource(77, stream)
          protected '_filters' => 
            array
              0 => 
                object(Zend_Log_Filter_Priority)[94]
                  protected '_priority' => int 7
                  protected '_operator' => string '<=' (length=2)
          protected '_formatter' => 
            object(Zend_Log_Formatter_Simple)[95]
              protected '_format' => string ' [ %ip% ] - [ %timestamp% ] [ %user_agent% ] - [ %username% ]
        [ %priorityName% : %message% ]
        [ POST: %post_vars% ] 
        [ GET: %get_vars% ] 
' (length=161)
  protected '_filters' => 
    array
      empty
  protected '_extras' => 
    array
      'user_agent' => string 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.18 Safari/535.1' (length=99)
      'get_vars' => string 'a:0:{}' (length=6)
      'post_vars' => string 'a:0:{}' (length=6)
      'ip' => string '127.0.0.1' (length=9)
      'username' => string 'guest' (length=5)
  protected '_defaultWriterNamespace' => string 'Zend_Log_Writer' (length=15)
  protected '_defaultFilterNamespace' => string 'Zend_Log_Filter' (length=15)
  protected '_defaultFormatterNamespace' => string 'Zend_Log_Formatter' (length=18)
  protected '_origErrorHandler' => null
  protected '_registeredErrorHandler' => boolean false
  protected '_errorHandlerMap' => boolean false
  protected '_timestampFormat' => string 'c' (length=1)
object(Zend_Log)[104]
  protected '_priorities' => 
    array
      0 => string 'EMERG' (length=5)
      1 => string 'ALERT' (length=5)
      2 => string 'CRIT' (length=4)
      3 => string 'ERR' (length=3)
      4 => string 'WARN' (length=4)
      5 => string 'NOTICE' (length=6)
      6 => string 'INFO' (length=4)
      7 => string 'DEBUG' (length=5)
  protected '_writers' => 
    array
      0 => 
        object(Zend_Log_Writer_Stream)[105]
          protected '_stream' => int 0
          protected '_filters' => 
            array
              0 => 
                object(Zend_Log_Filter_Priority)[106]
                  protected '_priority' => int 7
                  protected '_operator' => string '<=' (length=2)
          protected '_formatter' => 
            object(Zend_Log_Formatter_Simple)[107]
              protected '_format' => string ' [ %ip% ] - [ %timestamp% ] [ %user_agent% ] - [ %username% ]
        [ %priorityName% : %message% ]
        [ POST: %post_vars% ] 
        [ GET: %get_vars% ] 
' (length=161)
  protected '_filters' => 
    array
      empty
  protected '_extras' => 
    array
      'user_agent' => string 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.18 Safari/535.1' (length=99)
      'get_vars' => string 'a:0:{}' (length=6)
      'post_vars' => string 'a:0:{}' (length=6)
      'ip' => string '127.0.0.1' (length=9)
      'username' => string 'guest' (length=5)
  protected '_defaultWriterNamespace' => string 'Zend_Log_Writer' (length=15)
  protected '_defaultFilterNamespace' => string 'Zend_Log_Filter' (length=15)
  protected '_defaultFormatterNamespace' => string 'Zend_Log_Formatter' (length=18)
  protected '_origErrorHandler' => null
  protected '_registeredErrorHandler' => boolean false
  protected '_errorHandlerMap' => boolean false
  protected '_timestampFormat' => string 'c' (length=1)