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
|
/*
* 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.
*
*/
#ifndef DISKQ_OPTIONS_H_
#define DISKQ_OPTIONS_H_
#include "syslog-ng.h"
#include "logmsg/logmsg-serialize.h"
#define MIN_CAPACITY_BYTES 1024*1024
typedef struct _DiskQueueOptions
{
gint64 capacity_bytes;
gint front_cache_size;
gboolean read_only;
gboolean reliable;
gboolean compaction;
gint flow_control_window_bytes;
gint flow_control_window_size;
gchar *dir;
gdouble truncate_size_ratio;
gboolean prealloc;
} DiskQueueOptions;
void disk_queue_options_front_cache_size_set(DiskQueueOptions *self, gint front_cache_size);
void disk_queue_options_capacity_bytes_set(DiskQueueOptions *self, gint64 capacity_bytes);
void disk_queue_options_reliable_set(DiskQueueOptions *self, gboolean reliable);
void disk_queue_options_compaction_set(DiskQueueOptions *self, gboolean compaction);
void disk_queue_options_flow_control_window_bytes_set(DiskQueueOptions *self, gint flow_control_window_bytes);
void disk_queue_options_flow_control_window_size_set(DiskQueueOptions *self, gint flow_control_window_size);
void disk_queue_options_check_plugin_settings(DiskQueueOptions *self);
void disk_queue_options_set_dir(DiskQueueOptions *self, const gchar *dir);
void disk_queue_options_set_truncate_size_ratio(DiskQueueOptions *self, gdouble truncate_size_ratio);
void disk_queue_options_set_prealloc(DiskQueueOptions *self, gboolean prealloc);
void disk_queue_options_set_default_options(DiskQueueOptions *self);
void disk_queue_options_destroy(DiskQueueOptions *self);
#endif /* DISKQ_OPTIONS_H_ */
|