loggerlevelrangefilter.php
来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· PHP 代码 · 共 171 行
PHP
171 行
<?php
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* @package log4php
* @subpackage varia
*/
/**
* @ignore
*/
if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..');
/**
*/
require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php');
require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php');
/**
* This is a very simple filter based on level matching, which can be
* used to reject messages with priorities outside a certain range.
*
* <p>The filter admits three options <b><var>LevelMin</var></b>, <b><var>LevelMax</var></b>
* and <b><var>AcceptOnMatch</var></b>.</p>
*
* <p>If the level of the {@link LoggerLoggingEvent} is not between Min and Max
* (inclusive), then {@link LOG4PHP_LOGGER_FILTER_DENY} is returned.</p>
*
* <p>If the Logging event level is within the specified range, then if
* <b><var>AcceptOnMatch</var></b> is <i>true</i>,
* {@link LOG4PHP_LOGGER_FILTER_ACCEPT} is returned, and if
* <b><var>AcceptOnMatch</var></b> is <i>false</i>,
* {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} is returned.</p>
*
* <p>If <b><var>LevelMin</var></b> is not defined, then there is no
* minimum acceptable level (i.e. a level is never rejected for
* being too "low"/unimportant). If <b><var>LevelMax</var></b> is not
* defined, then there is no maximum acceptable level (ie a
* level is never rejected for being too "high"/important).</p>
*
* <p>Refer to the {@link LoggerAppenderSkeleton::setThreshold()} method
* available to <b>all</b> appenders extending {@link LoggerAppenderSkeleton}
* for a more convenient way to filter out events by level.</p>
*
* @log4j-class org.apache.log4j.varia.LevelRangeFilter
* @log4j-author Simon Kitching
* @log4j-author based on code by Ceki Gülcü
*
* @author Marco Vassura
* @version $Revision: 635069 $
* @package log4php
* @subpackage varia
* @since 0.6
*/
class LoggerLevelRangeFilter extends LoggerFilter {
/**
* @var boolean
*/
var $acceptOnMatch = true;
/**
* @var LoggerLevel
*/
var $levelMin;
/**
* @var LoggerLevel
*/
var $levelMax;
/**
* @return boolean
*/
function getAcceptOnMatch()
{
return $this->acceptOnMatch;
}
/**
* @param boolean $acceptOnMatch
*/
function setAcceptOnMatch($acceptOnMatch)
{
$this->acceptOnMatch = LoggerOptionConverter::toBoolean($acceptOnMatch, true);
}
/**
* @return LoggerLevel
*/
function getLevelMin()
{
return $this->levelMin;
}
/**
* @param string $l the level min to match
*/
function setLevelMin($l)
{
$this->levelMin = LoggerOptionConverter::toLevel($l, null);
}
/**
* @return LoggerLevel
*/
function getLevelMax()
{
return $this->levelMax;
}
/**
* @param string $l the level max to match
*/
function setLevelMax($l)
{
$this->levelMax = LoggerOptionConverter::toLevel($l, null);
}
/**
* Return the decision of this filter.
*
* @param LoggerLoggingEvent $event
* @return integer
*/
function decide($event)
{
$level = $event->getLevel();
if($this->levelMin !== null) {
if ($level->isGreaterOrEqual($this->levelMin) == false) {
// level of event is less than minimum
return LOG4PHP_LOGGER_FILTER_DENY;
}
}
if($this->levelMax !== null) {
if ($level->toInt() > $this->levelMax->toInt()) {
// level of event is greater than maximum
// Alas, there is no Level.isGreater method. and using
// a combo of isGreaterOrEqual && !Equal seems worse than
// checking the int values of the level objects..
return LOG4PHP_LOGGER_FILTER_DENY;
}
}
if ($this->getAcceptOnMatch()) {
// this filter set up to bypass later filters and always return
// accept if level in range
return LOG4PHP_LOGGER_FILTER_ACCEPT;
} else {
// event is ok for this filter; allow later filters to have a look..
return LOG4PHP_LOGGER_FILTER_NEUTRAL;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?