summaryrefslogtreecommitdiffstats
path: root/pigeonhole/src/lib-sieve/plugins/ihave/ext-ihave-common.c
blob: 1d3123844d88336158b62c4eed38d575e118e96f (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
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
 */

#include "lib.h"
#include "array.h"

#include "sieve-common.h"
#include "sieve-ast.h"

#include "ext-ihave-common.h"

/*
 * AST context management
 */

struct ext_ihave_ast_context *ext_ihave_get_ast_context
(const struct sieve_extension *this_ext, struct sieve_ast *ast)
{
	struct ext_ihave_ast_context *actx = (struct ext_ihave_ast_context *)
		sieve_ast_extension_get_context(ast, this_ext);
	pool_t pool;

	if ( actx != NULL )
		return actx;

	pool = sieve_ast_pool(ast);
	actx = p_new(pool, struct ext_ihave_ast_context, 1);
	p_array_init(&actx->missing_extensions, pool, 64);

	sieve_ast_extension_set_context(ast, this_ext, (void *) actx);

	return actx;
}

void ext_ihave_ast_add_missing_extension
(const struct sieve_extension *this_ext, struct sieve_ast *ast,
	const char *ext_name)
{
	struct ext_ihave_ast_context *actx =
		ext_ihave_get_ast_context(this_ext, ast);
	const char *const *exts;
	unsigned int i, count;

	exts = array_get(&actx->missing_extensions, &count);
	for ( i = 0; i < count; i++ ) {
		if ( strcmp(exts[i], ext_name) == 0 )
			return;
	}

	array_append(&actx->missing_extensions, &ext_name, 1);
}