aboutsummaryrefslogtreecommitdiffstats
path: root/src/manager/main.c
blob: fc1f5fc2d50ff819d088fb782037ff73999b2a5f (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * Copyright (C) 2007 Martin Willi
 * Hochschule fuer Technik Rapperswil
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * 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.
 *
 * $Id$
 */

#include <dispatcher.h>
#include <stdio.h>

#include "manager.h"
#include "storage.h"
#include "controller/auth_controller.h"
#include "controller/ikesa_controller.h"
#include "controller/gateway_controller.h"
#include "controller/control_controller.h"
#include "controller/config_controller.h"

#define DBFILE IPSECDIR "/manager.db"
#define SESSION_TIMEOUT 900
#define THREADS 10

int main (int arc, char *argv[])
{
	dispatcher_t *dispatcher;
	storage_t *storage;
	char *socket = NULL;
	bool debug = FALSE;
	
#ifdef FCGI_SOCKET
	socket = FCGI_SOCKET;
	debug = TRUE;
#endif /* FCGI_SOCKET */

	library_init(IPSECDIR "/manager.conf");
	
	storage = storage_create("sqlite://"DBFILE);
	if (storage == NULL)
	{
		fprintf(stderr, "opening database '%s' failed.\n", DBFILE);
		return 1;
	}
	
	dispatcher = dispatcher_create(socket, debug, SESSION_TIMEOUT,
						(context_constructor_t)manager_create, storage);
	dispatcher->add_controller(dispatcher, ikesa_controller_create, NULL);
	dispatcher->add_controller(dispatcher, gateway_controller_create, NULL);
	dispatcher->add_controller(dispatcher, auth_controller_create, NULL);
	dispatcher->add_controller(dispatcher, control_controller_create, NULL);
	dispatcher->add_controller(dispatcher, config_controller_create, NULL);
	
	dispatcher->run(dispatcher, THREADS);
	
	dispatcher->waitsignal(dispatcher);
	
	dispatcher->destroy(dispatcher);
	storage->destroy(storage);
	
	library_deinit();

    return 0;
}