WURFL内存分配致命错误

时间:2013-04-02 21:44:47

标签: php memory-leaks wurfl

我使用WURFL很好,然后突然间它抛出了这个错误:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65484 bytes) in /var/wwwlibs/vnd/WURFL/lib/CustomDevice.php on line 118

我在网上发现了一些关于Tera-WURFL的内容,但是(afaik)我没有使用它,只是从sourceforge下载的版本。有人建议更新SimpleXML,但我只是为什么WURFL超越顶级而感到困惑。

我的包装类如下:

<?php
namespace vnd\WURFL;

use \WURFL_Configuration_InMemoryConfig;
use \WURFL_WURFLManagerFactory;
/**
 * File: WURFL_bootstrap.php
 * Sets up and readies the WURFL library for platform and browser detection.
 */
require_once 'WURFL/lib/Application.php';

// ----- WURFL constants ------ //
define('WURFL_ROOT', dirname(__FILE__).'/');

# Directories
define('WURFL_RESOURCES_DIR',     WURFL_ROOT.'resources/');
define('WURFL_PERSISTENCE_DIR', WURFL_RESOURCES_DIR.'storage/persistence');
define('WURFL_CACHE_DIR',         WURFL_RESOURCES_DIR.'storage/cache');

class WURFLBootstrap extends WURFL_Configuration_InMemoryConfig {    
    const WURFL_WATCH_MODE = "performance";
    const WURFL_VERSION = '2.3.3';
    const WURFL_CACHE_EXP = 36000;

    # Our WURFL Manager
    private $_manager;

    # Our device where the capabilities lie
    private $_device;

    public function __construct(){
        $zipPath = $this->getPath();

        if(!is_file($zipPath))
            die($zipPath.' is not a valid file.');
        if(!is_dir(WURFL_PERSISTENCE_DIR) || !is_dir(WURFL_CACHE_DIR))
            die(WURFL_PERSISTENCE_DIR.' or '.WURFL_CACHE_DIR.' are not valid directories.');

        $this->wurflFile($zipPath);
        $this->matchMode(self::WURFL_WATCH_MODE);

        $this->persistence('file', array('dir' => WURFL_PERSISTENCE_DIR));
        $this->cache('file',        array('dir' => WURFL_CACHE_DIR, 'expiration' => self::WURFL_CACHE_EXP));

        // Automatically reload the WURFL data if it changes
        $this->allowReload(true);

        // Create a WURFL Manager Factory from the WURFL Configuration
        $wurflManagerFactory = new WURFL_WURFLManagerFactory($this);

        // Create our factory and start the process.
        $this->_device = $wurflManagerFactory->create()->getDeviceForHttpRequest($_SERVER);
    }
    /**
     * Returns the path to our ZIP file 
     */
    private function getPath(){
        return WURFL_RESOURCES_DIR.'/wurfl-'.self::WURFL_VERSION.'.zip';
    }
    /**
     * Seeing as this is a wrapper class, any calls to our $wflManager (or whatever
     * we happened to be assigned to) should be passed on to the actual
     * manager object where all the goodies lie.
     * 
     */
    public function __call($name, $arguments){
        //return $this->device->$name($arguments);
    }
    public function getDevice(){
        return $this->_device;
    }
}

这台运行的计算机是一台旧笔记本电脑,所以它没有存放在内存中,但是它给出了什么?我删除了可能导致内存过度分配的所有内容,但到目前为止看起来WURFL似乎不想运行。

我还尝试清除缓存和持久性目录并再次运行它,但没有骰子。

我正在考虑的一件事是使用XML配置类而不是WURFL_Configuration_InMemoryConfig(基于名称,我假设它将所有内容存储在内存中,至少暂时存在,因此崩溃),但是我我好奇为什么突然抛出这个错误。

1 个答案:

答案 0 :(得分:1)

我对这个库并不熟悉,但总的来说,你可以找到registering a shutdown function确切出错的地方并在那里打印出最后一个错误。

在脚本开头的某处(即错误发生之前)添加以下代码:

function my_shutdown_function() {
  echo "SHUTDOWN!\n";
  $err = error_get_last();
  if($err) {
    print_r($err);

    // optionally, if you want a stack trace:
    $ex = new Exception;
    print_r($ex->getTraceAsString());
  }
}

register_shutdown_function('my_shutdown_function');

如果您愿意,您可以与set_error_handlerset_exception_handler享受类似的乐趣,尽管这两种情况都不会发生致命错误(包括其他失败)。