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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright (c) 2002-2016 Balabit
* Copyright (c) 2016 Viktor Juhasz <viktor.juhasz@balabit.com>
*
* 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 "diskq-options.h"
#include "syslog-ng.h"
#include "messages.h"
#include "reloc.h"
void
disk_queue_options_front_cache_size_set(DiskQueueOptions *self, gint front_cache_size)
{
self->front_cache_size = front_cache_size;
}
void
disk_queue_options_capacity_bytes_set(DiskQueueOptions *self, gint64 capacity_bytes)
{
if (capacity_bytes < MIN_CAPACITY_BYTES)
{
msg_warning("WARNING: The configured disk buffer capacity is smaller than the minimum allowed",
evt_tag_long("configured_capacity", capacity_bytes),
evt_tag_long("minimum_allowed_capacity", MIN_CAPACITY_BYTES),
evt_tag_long("new_capacity", MIN_CAPACITY_BYTES));
capacity_bytes = MIN_CAPACITY_BYTES;
}
self->capacity_bytes = capacity_bytes;
}
void
disk_queue_options_reliable_set(DiskQueueOptions *self, gboolean reliable)
{
self->reliable = reliable;
}
void
disk_queue_options_compaction_set(DiskQueueOptions *self, gboolean compaction)
{
self->compaction = compaction;
}
void
disk_queue_options_flow_control_window_bytes_set(DiskQueueOptions *self, gint flow_control_window_bytes)
{
self->flow_control_window_bytes = flow_control_window_bytes;
}
void
disk_queue_options_flow_control_window_size_set(DiskQueueOptions *self, gint flow_control_window_size)
{
self->flow_control_window_size = flow_control_window_size;
}
void
disk_queue_options_set_truncate_size_ratio(DiskQueueOptions *self, gdouble truncate_size_ratio)
{
self->truncate_size_ratio = truncate_size_ratio;
}
void
disk_queue_options_set_prealloc(DiskQueueOptions *self, gboolean prealloc)
{
self->prealloc = prealloc;
}
void
disk_queue_options_check_plugin_settings(DiskQueueOptions *self)
{
if (self->reliable)
{
if (self->flow_control_window_size > 0)
{
msg_warning("WARNING: flow-control-window-size/mem-buf-length parameter was ignored as it is not compatible with reliable queue. Did you mean flow-control-window-bytes?");
}
}
else
{
if (self->flow_control_window_bytes > 0)
{
msg_warning("WARNING: flow-control-window-bytes/mem-buf-size parameter was ignored as it is not compatible with non-reliable queue. Did you mean flow-control-window-size?");
}
}
}
gchar *
_normalize_path(const gchar *path)
{
const int length = strlen(path);
if ('/' == path[length-1] || '\\' == path[length-1])
return g_path_get_dirname(path);
return g_strdup(path);
}
void
disk_queue_options_set_dir(DiskQueueOptions *self, const gchar *dir)
{
if (self->dir)
{
g_free(self->dir);
}
self->dir = _normalize_path(dir);
}
void
disk_queue_options_set_default_options(DiskQueueOptions *self)
{
self->capacity_bytes = -1;
self->flow_control_window_size = -1;
self->reliable = FALSE;
self->flow_control_window_bytes = -1;
self->front_cache_size = -1;
self->dir = g_strdup(get_installation_path_for(SYSLOG_NG_PATH_LOCALSTATEDIR));
self->truncate_size_ratio = -1;
self->prealloc = -1;
}
void
disk_queue_options_destroy(DiskQueueOptions *self)
{
if (self->dir)
{
g_free(self->dir);
self->dir = NULL;
}
}
|