aboutsummaryrefslogtreecommitdiffstats
path: root/res/ais/amf.c
blob: fec9af6e0008624af1dcb87a5dc5e62f961e90f1 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2007, Digium, Inc.
 *
 * Russell Bryant <russell@digium.com>
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*! 
 * \file
 * \author Russell Bryant <russell@digium.com>
 *
 * \brief Usage of the SAForum AIS (Application Interface Specification)
 *
 * \arg http://www.openais.org/
 *
 * This file contains the code specific to the use of the AMF (Application
 * Management Framework).
 */

#include "asterisk.h"

ASTERISK_FILE_VERSION(__FILE__, "$Revision$");

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>

#include "ais.h"

#include "asterisk/module.h"
#include "asterisk/utils.h"
#include "asterisk/cli.h"
#include "asterisk/logger.h"

SaAmfHandleT amf_handle;

static const SaAmfCallbacksT amf_callbacks = {
	.saAmfHealthcheckCallback = NULL,
	.saAmfComponentTerminateCallback = NULL,
	.saAmfCSISetCallback = NULL,
	.saAmfProtectionGroupTrackCallback = NULL,
#if 0
	/*! XXX \todo These appear to be define in the B.02.01 spec, but this won't
	 * compile with them in there.  Look into it some more ... */
	.saAmfProxiedComponentInstantiateCallback = NULL,
	.saAmfProxiedComponentCleanupCallback = NULL,
#endif
};

int ast_ais_amf_load_module(void)
{
	SaAisErrorT ais_res;

	ais_res = saAmfInitialize(&amf_handle, &amf_callbacks, &ais_version);
	if (ais_res != SA_AIS_OK) {
		ast_log(LOG_ERROR, "Could not initialize AMF: %s\n",
			ais_err2str(ais_res));
		return -1;
	}

	return 0;
}

int ast_ais_amf_unload_module(void)
{
	SaAisErrorT ais_res;

	ais_res = saAmfFinalize(amf_handle);
	if (ais_res != SA_AIS_OK) {
		ast_log(LOG_ERROR, "Problem stopping AMF: %s\n", 
			ais_err2str(ais_res));
		return -1;
	}

	return 0;
}