aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/binlog.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-01-16 15:36:40 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-01-16 15:36:40 +0000
commit61de440f6eea0d12c96ea7780c9ee560fd846955 (patch)
treea51493f3a92b83fda962a26ca4f2a90b93a199df /src/libserver/binlog.h
parent7cf83c6b4d31dfdc8e314f31c8a6c9fd9408f6ea (diff)
downloadrspamd-61de440f6eea0d12c96ea7780c9ee560fd846955.tar.gz
rspamd-61de440f6eea0d12c96ea7780c9ee560fd846955.zip
Remove binlog and statfile_sync: never ever used.
Diffstat (limited to 'src/libserver/binlog.h')
-rw-r--r--src/libserver/binlog.h102
1 files changed, 0 insertions, 102 deletions
diff --git a/src/libserver/binlog.h b/src/libserver/binlog.h
deleted file mode 100644
index c18a201f2..000000000
--- a/src/libserver/binlog.h
+++ /dev/null
@@ -1,102 +0,0 @@
-#ifndef RSPAMD_BINLOG_H
-#define RSPAMD_BINLOG_H
-
-#include "config.h"
-#include "main.h"
-#include "statfile.h"
-
-/* How much records are in a single index */
-#define BINLOG_IDX_LEN 200
-#define METAINDEX_LEN 1024
-
-/* Assume 8 bytes words */
-struct rspamd_binlog_header {
- gchar magic[3];
- gchar version[2];
- gchar padding[3];
- guint64 create_time;
-};
-
-struct rspamd_binlog_index {
- guint64 time;
- guint64 seek;
- guint32 len;
-};
-
-struct rspamd_index_block {
- struct rspamd_binlog_index indexes[BINLOG_IDX_LEN];
- guint32 last_index;
-};
-
-struct rspamd_binlog_metaindex {
- guint64 indexes[METAINDEX_LEN];
- guint64 last_index;
-};
-
-struct rspamd_binlog_element {
- guint32 h1;
- guint32 h2;
- float value;
-} __attribute__((__packed__));
-
-struct rspamd_binlog {
- gchar *filename;
- time_t rotate_time;
- gint rotate_jitter;
- guint64 cur_seq;
- guint64 cur_time;
- gint fd;
- rspamd_mempool_t *pool;
-
- struct rspamd_binlog_header header;
- struct rspamd_binlog_metaindex *metaindex;
- struct rspamd_index_block *cur_idx;
-};
-
-struct rspamd_classifier_config;
-
-/*
- * Open binlog at specified path with specified rotate params
- */
-struct rspamd_binlog * binlog_open (rspamd_mempool_t *pool,
- const gchar *path,
- time_t rotate_time,
- gint rotate_jitter);
-
-/*
- * Get and open binlog for specified statfile
- */
-struct rspamd_binlog * get_binlog_by_statfile (struct rspamd_statfile_config *st);
-
-/*
- * Close binlog
- */
-void binlog_close (struct rspamd_binlog *log);
-
-/*
- * Insert new nodes inside binlog
- */
-gboolean binlog_insert (struct rspamd_binlog *log, GTree *nodes);
-
-/*
- * Sync binlog from specified revision
- * @param log binlog structure
- * @param from_rev from revision
- * @param from_time from time
- * @param rep a portion of changes for revision is stored here
- * @return TRUE if there are more revisions to get and FALSE if synchronization is complete
- */
-gboolean binlog_sync (struct rspamd_binlog *log,
- guint64 from_rev,
- guint64 *from_time,
- GByteArray **rep);
-
-/*
- * Conditional write to a binlog for specified statfile
- */
-gboolean maybe_write_binlog (struct rspamd_classifier_config *ccf,
- struct rspamd_statfile_config *st,
- stat_file_t *file,
- GTree *nodes);
-
-#endif