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
|
/*
* Copyright (c) 2002-2012 Balabit
* Copyright (c) 1998-2012 Balázs Scheidler
*
* 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 "logpipe.h"
#include "cfg-tree.h"
gboolean (*pipe_single_step_hook)(LogPipe *pipe, LogMessage *msg, const LogPathOptions *path_options);
EVTTAG *
log_pipe_location_tag(LogPipe *pipe)
{
return log_expr_node_location_tag(pipe->expr_node);
}
void
log_pipe_init_instance(LogPipe *self, GlobalConfig *cfg)
{
g_atomic_counter_set(&self->ref_cnt, 1);
self->cfg = cfg;
self->pipe_next = NULL;
self->persist_name = NULL;
/* NOTE: queue == NULL means that this pipe simply forwards the
* message along the pipeline, e.g. like it has called
* log_msg_forward_msg. Since this is a common case, it is better
* inlined (than to use an indirect call) for performance. */
self->queue = NULL;
self->free_fn = log_pipe_free_method;
}
LogPipe *
log_pipe_new(GlobalConfig *cfg)
{
LogPipe *self = g_new0(LogPipe, 1);
log_pipe_init_instance(self, cfg);
return self;
}
void
log_pipe_free_method(LogPipe *self)
{
;
}
LogPipe *
log_pipe_ref(LogPipe *self)
{
g_assert(!self || g_atomic_counter_get(&self->ref_cnt) > 0);
if (self)
{
g_atomic_counter_inc(&self->ref_cnt);
}
return self;
}
void
log_pipe_unref(LogPipe *self)
{
g_assert(!self || g_atomic_counter_get(&self->ref_cnt));
if (self && (g_atomic_counter_dec_and_test(&self->ref_cnt)))
{
if (self->free_fn)
self->free_fn(self);
g_free(self);
}
}
void
log_pipe_forward_notify(LogPipe *self, gint notify_code, gpointer user_data)
{
log_pipe_notify(self->pipe_next, notify_code, user_data);
}
void
log_pipe_set_persist_name(LogPipe *self, const gchar *persist_name)
{
g_free((gpointer)self->persist_name);
self->persist_name = persist_name;
}
const gchar *
log_pipe_get_persist_name(const LogPipe *self)
{
return (self->generate_persist_name != NULL) ? self->generate_persist_name(self)
: self->persist_name;
}
#ifdef __linux__
void
__log_pipe_forward_msg(LogPipe *self, LogMessage *msg, const LogPathOptions *path_options)
__attribute__((alias("log_pipe_forward_msg")));
#endif
|