Apache log4cxx  Version 0.13.0
patternconverter.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _LOG4CXX_PATTERN_PATTERN_CONVERTER_H
19 #define _LOG4CXX_PATTERN_PATTERN_CONVERTER_H
20 
21 
22 #include <log4cxx/helpers/object.h>
23 #include <log4cxx/logstring.h>
24 #include <vector>
25 
26 #ifdef _MSC_VER
27  // disable identifier too wide for debugging warning
28  #pragma warning ( disable: 4231 4251 4275 4786 )
29 #endif
30 
31 #define DECLARE_LOG4CXX_PATTERN(cls) DECLARE_ABSTRACT_LOG4CXX_OBJECT(cls)
32 
33 namespace log4cxx
34 {
35 namespace pattern
36 {
37 
38 typedef std::vector<LogString> OptionsList;
39 
50 class LOG4CXX_EXPORT PatternConverter : public virtual log4cxx::helpers::Object
51 {
52 
56  const LogString name;
57 
61  const LogString style;
62 
63 
64  protected:
70  PatternConverter(const LogString& name,
71  const LogString& style);
72 
73  virtual ~PatternConverter();
74 
75  public:
80 
87  virtual void format(const log4cxx::helpers::ObjectPtr& obj,
88  LogString& toAppendTo,
89  log4cxx::helpers::Pool& p) const = 0;
90 
98  LogString getName() const;
99 
109  virtual LogString getStyleClass(const log4cxx::helpers::ObjectPtr& e) const;
110 
111  protected:
117  static void append(LogString& toAppendTo, const std::string& src);
118 };
119 
120 
122 
123 }
124 }
125 
126 
127 #endif
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:153
LOG4CXX_PTR_DEF(DatePatternConverter)
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:147
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:141
Definition: patternconverter.h:50
base class for java-like objects.
Definition: object.h:101
std::shared_ptr< Object > ObjectPtr
Definition: propertysetter.h:28
Definition: pool.h:32
#define DECLARE_LOG4CXX_PATTERN(cls)
Definition: patternconverter.h:31
std::vector< LogString > OptionsList
Definition: patternconverter.h:38
Definition: appender.h:32
std::basic_string< logchar > LogString
Definition: logstring.h:66