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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/*
* Copyright (c) 2021 Balazs Scheidler <bazsi77@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; 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 "rewrite-set-matches.h"
#include "scanner/list-scanner/list-scanner.h"
#include "scratch-buffers.h"
/* LogRewriteSetMatches
*
* This class implements the "set" expression in a rewrite rule.
*/
typedef struct _LogRewriteSetMatches LogRewriteSetMatches;
struct _LogRewriteSetMatches
{
LogRewrite super;
LogTemplate *value_template;
LogTemplateOptions template_options;
};
LogTemplateOptions *
log_rewrite_set_matches_get_template_options(LogRewrite *s)
{
LogRewriteSetMatches *self = (LogRewriteSetMatches *) s;
return &self->template_options;
}
static void
log_rewrite_set_matches_process(LogRewrite *s, LogMessage **pmsg, const LogPathOptions *path_options)
{
LogRewriteSetMatches *self = (LogRewriteSetMatches *) s;
GString *result;
LogMessageValueType type;
result = scratch_buffers_alloc();
LogTemplateEvalOptions options = {&self->template_options, LTZ_SEND, 0, NULL, LM_VT_STRING};
log_template_format_value_and_type(self->value_template, *pmsg, &options, result, &type);
log_msg_make_writable(pmsg, path_options);
ListScanner scanner;
list_scanner_init(&scanner);
list_scanner_input_string(&scanner, result->str, result->len);
log_msg_clear_matches(*pmsg);
for (gint i = 1; list_scanner_scan_next(&scanner) && i < LOGMSG_MAX_MATCHES; i++)
{
log_msg_set_match(*pmsg, i,
list_scanner_get_current_value(&scanner), list_scanner_get_current_value_len(&scanner));
}
list_scanner_deinit(&scanner);
}
static LogPipe *
log_rewrite_set_matches_clone(LogPipe *s)
{
LogRewriteSetMatches *self = (LogRewriteSetMatches *) s;
LogRewriteSetMatches *cloned;
cloned = (LogRewriteSetMatches *) log_rewrite_set_matches_new(self->value_template, s->cfg);
log_rewrite_clone_method(&cloned->super, &self->super);
return &cloned->super.super;
}
static void
log_rewrite_set_matches_free(LogPipe *s)
{
LogRewriteSetMatches *self = (LogRewriteSetMatches *) s;
log_template_options_destroy(&self->template_options);
log_template_unref(self->value_template);
log_rewrite_free_method(s);
}
gboolean
log_rewrite_set_matches_init_method(LogPipe *s)
{
LogRewriteSetMatches *self = (LogRewriteSetMatches *) s;
GlobalConfig *cfg = log_pipe_get_config(s);
if (log_rewrite_init_method(s))
{
log_template_options_init(&self->template_options, cfg);
return TRUE;
}
else
return FALSE;
}
LogRewrite *
log_rewrite_set_matches_new(LogTemplate *new_value, GlobalConfig *cfg)
{
LogRewriteSetMatches *self = g_new0(LogRewriteSetMatches, 1);
log_rewrite_init_instance(&self->super, cfg);
self->super.super.free_fn = log_rewrite_set_matches_free;
self->super.super.clone = log_rewrite_set_matches_clone;
self->super.super.init = log_rewrite_set_matches_init_method;
self->super.process = log_rewrite_set_matches_process;
self->value_template = log_template_ref(new_value);
log_template_options_defaults(&self->template_options);
return &self->super;
}
|