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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/*
* Copyright (c) 2017 Balabit
* Copyright (c) 2017 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 "logproto-file-reader.h"
#include "logproto/logproto-record-server.h"
#include "logproto/logproto-multiline-server.h"
#include "messages.h"
LogProtoServer *
log_proto_file_reader_new(LogTransport *transport, const LogProtoFileReaderOptions *options)
{
if (options->pad_size > 0)
return log_proto_padded_record_server_new(transport, &options->super, options->pad_size);
else
return log_proto_multiline_server_new(transport, &options->super,
multi_line_factory_construct(&options->multi_line_options));
}
/* these functions only initialize the fields added on top of
* LogProtoServerOptions, the rest is the responsibility of the LogReader.
* This whole Options structure has become very messy. There are a lot of them.
*
* FileReaderOptions ->
* LogReaderOptions ->
* LogProtoServerOptions
* This is actually a LogProtoServerOptionsStorage structure
* which holds a LogProtoFileReaderOptions instance and the
* LogReader only stores it.
*
* FileOpenerOptions is fortunately independent of this mess.
*
* LogProtoFileReaderOptions only needs to take care about its "extra"
* fields on top of LogProtoServerOptions, that's why we don't call anything
* from the "inherited" class. This is because that class is
* defaulted/initialized/destroyed by LogReader. This layer just manages
* what we happen to store in addition to LogProtoServerOptions.
*
* You have been warned!
*
* PS: I attempted to refactor this, but at first try it became more messy, so I
* abandoned it, but it should be done eventually.
**/
void
_destroy_callback(LogProtoServerOptions *o)
{
LogProtoFileReaderOptions *options = (LogProtoFileReaderOptions *) o;
multi_line_options_destroy(&options->multi_line_options);
}
void
log_proto_file_reader_options_defaults(LogProtoFileReaderOptions *options)
{
options->super.destroy = _destroy_callback;
multi_line_options_defaults(&options->multi_line_options);
options->pad_size = 0;
}
static gboolean
log_proto_file_reader_options_validate(LogProtoFileReaderOptions *options)
{
if (options->pad_size > 0 && options->multi_line_options.mode != MLM_NONE)
{
msg_error("pad-size() and multi-line-mode() can not be used together");
return FALSE;
}
return multi_line_options_validate(&options->multi_line_options);
}
gboolean
log_proto_file_reader_options_init(LogProtoFileReaderOptions *options, GlobalConfig *cfg)
{
if (!log_proto_file_reader_options_validate(options))
return FALSE;
if (!multi_line_options_init(&options->multi_line_options))
return FALSE;
return TRUE;
}
|