view src/log/log-error-buffer.h @ 22715:20415dd0b85a

dsync: Add per-mailbox sync lock that is always used. Both importing and exporting gets the lock before they even sync the mailbox. The lock is kept until the import/export finishes. This guarantees that no matter how dsync is run, two dsyncs can't be working on the same mailbox at the same time. This lock is in addition to the optional per-user lock enabled by the -l parameter. If the -l parameter is used, the same lock timeout is used for the per-mailbox lock. Otherwise 30s timeout is used. This should help to avoid email duplication when replication is enabled for public namespaces, and maybe in some other rare situations as well.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 28 Dec 2017 14:10:23 +0200
parents 6cd1b564fcc2
children
line wrap: on
line source

#ifndef LOG_ERROR_BUFFER_H
#define LOG_ERROR_BUFFER_H

struct log_error_buffer;

struct log_error {
	enum log_type type;
	time_t timestamp;
	const char *prefix;
	const char *text;
};

struct log_error_buffer *log_error_buffer_init(void);
void log_error_buffer_add(struct log_error_buffer *buf,
			  const struct log_error *error);
void log_error_buffer_deinit(struct log_error_buffer **buf);

struct log_error_buffer_iter *
log_error_buffer_iter_init(struct log_error_buffer *buf);
struct log_error *
log_error_buffer_iter_next(struct log_error_buffer_iter *iter);
void log_error_buffer_iter_deinit(struct log_error_buffer_iter **iter);

#endif