view src/stats/client.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 c51fbe64eae1
children
line wrap: on
line source

#ifndef CLIENT_H
#define CLIENT_H

struct client {
	struct client *prev, *next;

	int fd;
	struct io *io;
	struct istream *input;
	struct ostream *output;
	struct timeout *to_pending;

	pool_t cmd_pool;
	struct client_export_cmd *cmd_export;
	int (*cmd_more)(struct client *client);

	/* command iterators. while non-NULL, they've increased the
	   struct's refcount so it won't be deleted during iteration */
	unsigned int iter_count;
	struct mail_command *mail_cmd_iter;
	struct mail_session *mail_session_iter;
	struct mail_user *mail_user_iter;
	struct mail_domain *mail_domain_iter;
	struct mail_ip *mail_ip_iter;
};

struct client *client_create(int fd);
void client_destroy(struct client **client);

bool client_is_busy(struct client *client);
void client_enable_io(struct client *client);

void clients_destroy_all(void);

#endif