summaryrefslogtreecommitdiffstats
path: root/lib/filters/filter-composite.c
blob: b388c1690eceb7a6d9d49d60ca41b5af2a3fd55f (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
/*
 * Copyright (C) 2001 Sistina Software (UK) Limited.
 *
 * This file is released under the LGPL.
 */

#include "filter-composite.h"
#include "dbg_malloc.h"
#include "log.h"

#include <stdarg.h>

static int _and_p(struct dev_filter *f, struct device *dev)
{
	struct dev_filter **filters = (struct dev_filter **) f->private;

	while (*filters) {
		if (!(*filters)->passes_filter(*filters, dev))
			return 0;
		filters++;
	}

	return 1;
}

static void _destroy(struct dev_filter *f)
{
	struct dev_filter **filters = (struct dev_filter **) f->private;

	while (*filters) {
		(*filters)->destroy(*filters);
		filters++;
	}

	dbg_free(f->private);
	dbg_free(f);
}

struct dev_filter *composite_filter_create(int n, ...)
{
	struct dev_filter **filters = dbg_malloc(sizeof(*filters) * (n + 1));
	struct dev_filter *cf;
	va_list ap;
	int i;

	if (!filters) {
		stack;
		return NULL;
	}

	if (!(cf = dbg_malloc(sizeof(*cf)))) {
		stack;
		dbg_free(filters);
		return NULL;
	}

	va_start(ap, n);
	for (i = 0; i < n; i++) {
		struct dev_filter *f = va_arg(ap, struct dev_filter *);
		filters[i] = f;
	}
	filters[i] = NULL;
	va_end(ap);

	cf->passes_filter = _and_p;
	cf->destroy = _destroy;
	cf->private = filters;

	return cf;
}