view src/replication/aggregator/aggregator.c @ 21390:2e2563132d5f

Updated copyright notices to include the year 2017.
author Stephan Bosch <stephan.bosch@dovecot.fi>
date Wed, 11 Jan 2017 02:51:13 +0100
parents 0f22db71df7a
children cb108f786fb4
line wrap: on
line source

/* Copyright (c) 2013-2017 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "restrict-access.h"
#include "master-service.h"
#include "master-service-settings.h"
#include "aggregator-settings.h"
#include "notify-connection.h"
#include "replicator-connection.h"

struct replicator_connection *replicator;

static void client_connected(struct master_service_connection *conn)
{
	master_service_client_connection_accept(conn);
	notify_connection_create(conn->fd, conn->fifo);
}

static void main_preinit(void)
{
	struct ip_addr *ips;
	unsigned int ips_count;
	const struct aggregator_settings *set;
	void **sets;
	int ret;

	sets = master_service_settings_get_others(master_service);
	set = sets[0];

	if (set->replicator_port != 0) {
		ret = net_gethostbyname(set->replicator_host, &ips, &ips_count);
		if (ret != 0) {
			i_fatal("replicator_host: gethostbyname(%s) failed: %s",
				set->replicator_host, net_gethosterror(ret));
		}
		replicator = replicator_connection_create_inet(ips, ips_count,
				set->replicator_port,
				notify_connection_sync_callback);
	} else {
		replicator = replicator_connection_create_unix(set->replicator_host,
				notify_connection_sync_callback);
	}
}

int main(int argc, char *argv[])
{
	const struct setting_parser_info *set_roots[] = {
		&aggregator_setting_parser_info,
		NULL
	};
	const char *error;

	master_service = master_service_init("aggregator", 0, &argc, &argv, "");
	if (master_getopt(master_service) > 0)
		return FATAL_DEFAULT;

	if (master_service_settings_read_simple(master_service, set_roots,
						&error) < 0)
		i_fatal("Error reading configuration: %s", error);
	master_service_init_log(master_service, "aggregator: ");

	main_preinit();

	restrict_access_by_env(NULL, FALSE);
	restrict_access_allow_coredumps(TRUE);
	master_service_init_finish(master_service);

	master_service_run(master_service, client_connected);

	notify_connections_destroy_all();
	replicator_connection_destroy(&replicator);
	master_service_deinit(&master_service);
        return 0;
}