1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*
* Copyright (c) 2002-2012 Balabit
* Copyright (c) 1998-2012 Balázs Scheidler
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "driver.h"
#include "cfg-parser.h"
#include "affile-grammar.h"
extern int affile_debug;
int affile_parse(CfgLexer *lexer, LogDriver **instance, gpointer arg);
static CfgLexerKeyword affile_keywords[] =
{
{ "file", KW_FILE },
{ "fifo", KW_PIPE },
{ "pipe", KW_PIPE },
{ "stdin", KW_STDIN },
{ "stdout", KW_STDOUT },
{ "wildcard_file", KW_WILDCARD_FILE },
{ "base_dir", KW_BASE_DIR },
{ "filename_pattern", KW_FILENAME_PATTERN },
{ "recursive", KW_RECURSIVE },
{ "max_files", KW_MAX_FILES },
{ "monitor_method", KW_MONITOR_METHOD },
{ "force_directory_polling", KW_FORCE_DIRECTORY_POLLING, KWS_OBSOLETE, "Use wildcard-file(monitor-method())" },
{ "fsync", KW_FSYNC },
{ "remove_if_older", KW_OVERWRITE_IF_OLDER, KWS_OBSOLETE, "overwrite_if_older" },
{ "overwrite_if_older", KW_OVERWRITE_IF_OLDER },
{ "symlink_as", KW_SYMLINK_AS },
{ "follow_freq", KW_FOLLOW_FREQ },
{ "monitor_freq", KW_MONITOR_FREQ },
{ "multi_line_timeout", KW_MULTI_LINE_TIMEOUT },
{ "time_reap", KW_TIME_REAP },
{ NULL }
};
CfgParser affile_parser =
{
#if SYSLOG_NG_ENABLE_DEBUG
.debug_flag = &affile_debug,
#endif
.name = "affile",
.keywords = affile_keywords,
.parse = (gint (*)(CfgLexer *, gpointer *, gpointer)) affile_parse,
.cleanup = (void (*)(gpointer)) log_pipe_unref,
};
CFG_PARSER_IMPLEMENT_LEXER_BINDING(affile_, AFFILE_, LogDriver **)
|