bus-match.h revision 19befb2d5fc087f96e40ddc432b2cc9385666209
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#pragma once
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "hashmap.h"
#include "sd-bus.h"
enum bus_match_node_type {
/* The following are all different kinds of compare nodes */
};
struct bus_match_node {
enum bus_match_node_type type;
union {
struct {
char *str;
} value;
struct {
struct match_callback *callback;
} leaf;
struct {
/* If this is set, then the child is NULL */
} compare;
};
};
struct bus_match_component {
enum bus_match_node_type type;
char *value_str;
};
int bus_match_add(struct bus_match_node *root, struct bus_match_component *components, unsigned n_components, struct match_callback *callback);
int bus_match_find(struct bus_match_node *root, struct bus_match_component *components, unsigned n_components, sd_bus_message_handler_t callback, void *userdata, struct match_callback **ret);
int bus_match_parse(const char *match, struct bus_match_component **_components, unsigned *_n_components);