Apache Log4cxx Version 1.1.0
Loading...
Searching...
No Matches
dbappender.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_DB_DB_APPENDER_H
19#define LOG4CXX_DB_DB_APPENDER_H
20
21#include <log4cxx/log4cxx.h>
22
26#include <list>
27#include <memory>
28
29namespace log4cxx
30{
31namespace db
32{
33
113class LOG4CXX_EXPORT DBAppender : public AppenderSkeleton
114{
115 public:
121
123 virtual ~DBAppender();
124
128 void setOption(const LogString& option, const LogString& value) override;
129
133 void activateOptions(helpers::Pool& p) override;
134
138 void append(const spi::LoggingEventPtr& event, helpers::Pool&) override;
139
140 void close() override;
141
145 bool requiresLayout() const override
146 {
147 return false;
148 }
149
153 void setSql(const LogString& s);
154
158 const LogString& getSql() const;
159
160 private:
161 DBAppender(const DBAppender&);
162 DBAppender& operator=(const DBAppender&);
163
164 protected:
165 struct DBAppenderPriv;
166}; // class DBAppender
167
169
170} // namespace db
171} // namespace log4cxx
172
173#endif // LOG4CXX_DB_DB_APPENDER_H
Implementation base class for all appenders.
Definition appenderskeleton.h:41
The DBAppender lets you log messages to a database.
Definition dbappender.h:114
const LogString & getSql() const
Returns pre-formated statement eg: insert into LogTable (msg) values (?)
void setSql(const LogString &s)
Set pre-formated statement eg: insert into LogTable (msg) values (?)
LOG4CXX_PTR_DEF(DBAppender)
Definition configuration.h:25
std::basic_string< logchar > LogString
Definition logstring.h:60
#define LOG4CXX_CAST_ENTRY(Interface)
Definition object.h:157
#define END_LOG4CXX_CAST_MAP()
Definition object.h:151
#define DECLARE_LOG4CXX_OBJECT(object)
Definition object.h:42
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition object.h:163
#define BEGIN_LOG4CXX_CAST_MAP()
Definition object.h:145