📄 stringmatchfilter.h
字号:
/* * Copyright 2003,2004 The Apache Software Foundation. * * Licensed 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. */ #ifndef _LOG4CXX_VARIA_STRING_MATCH_FILTER_H#define _LOG4CXX_VARIA_STRING_MATCH_FILTER_H#include <log4cxx/spi/filter.h>namespace log4cxx{ namespace varia { /** This is a very simple filter based on string matching. <p>The filter admits two options <b>StringToMatch</b> and <b>AcceptOnMatch</b>. If there is a match between the value of the StringToMatch option and the message of the {@link spi::LoggingEvent LoggingEvent}, then the #decide method returns {@link spi::Filter#ACCEPT ACCEPT} if the <b>AcceptOnMatch</b> option value is true, if it is false then {@link spi::Filter#DENY DENY} is returned. If there is no match, {@link spi::Filter#NEUTRAL NEUTRAL} is returned. <p>See configuration files <a href="../xml/doc-files/test6.xml">test6.xml</a>, <a href="../xml/doc-files/test7.xml">test7.xml</a>, <a href="../xml/doc-files/test8.xml">test8.xml</a>, <a href="../xml/doc-files/test9.xml">test9.xml</a>, and <a href="../xml/doc-files/test10.xml">test10.xml</a> for examples of seeting up a <code>StringMatchFilter</code>. */ class StringMatchFilter; typedef helpers::ObjectPtrT<StringMatchFilter> StringMatchFilterPtr; class LOG4CXX_EXPORT StringMatchFilter : public spi::Filter { private: static String STRING_TO_MATCH_OPTION; static String ACCEPT_ON_MATCH_OPTION; bool acceptOnMatch; String stringToMatch; public: typedef spi::Filter BASE_CLASS; DECLARE_LOG4CXX_OBJECT(StringMatchFilter) BEGIN_LOG4CXX_CAST_MAP() LOG4CXX_CAST_ENTRY(StringMatchFilter) LOG4CXX_CAST_ENTRY_CHAIN(BASE_CLASS) END_LOG4CXX_CAST_MAP() StringMatchFilter(); /** Set options */ virtual void setOption(const String& option, const String& value); inline void setStringToMatch(const String& stringToMatch) { this->stringToMatch = stringToMatch; } inline const String& getStringToMatch() const { return stringToMatch; } inline void setAcceptOnMatch(bool acceptOnMatch) { this->acceptOnMatch = acceptOnMatch; } inline bool getAcceptOnMatch() const { return acceptOnMatch; } /** Returns {@link spi::Filter#NEUTRAL NEUTRAL} is there is no string match. */ FilterDecision decide(const spi::LoggingEventPtr& event) const;}; // class StringMatchFilter } // namespace varia}; // namespace log4cxx#endif // _LOG4CXX_VARIA_STRING_MATCH_FILTER_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -