4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
32 * \brief Notifier obj (interface).
35 * \author Bernie Innocenti <bernie@codewiz.org>
36 * \author Francesco Sacchi <batt@develer.com>
39 #ifndef DT_DNOTIFIER_H
40 #define DT_DNOTIFIER_H
42 #include <cfg/debug.h>
45 #include <struct/list.h>
51 typedef void (* update_func_ptr)(struct DNotifier *, dtag_t, dval_t);
52 typedef void (* update_filter_ptr)(struct DFilter *, dtag_t, dval_t);
55 * Base object for receive and forward messages.
56 * It contains an update function used to update itslef and a list to
57 * notify other DNotifer eventually connected.
59 typedef struct DNotifier
61 /// Receive new attributes from other notifiers.
62 update_func_ptr update;
64 /// List of target notifiers to set new attributes to.
70 * Used to translate src message to dst message.
72 typedef struct DFilterMap
80 * A filter is an interface between two notifier.
81 * It can translate messages between them through a map (if it is not null).
83 typedef struct DFilter
85 /// Allow creating a list of dfilter objects.
88 /// Target of the filter
91 /// Update function called by the source dnotifier
92 update_filter_ptr update;
94 ///Map for translating messages for target
95 const DFilterMap *map;
97 ///Used in debug to prevent inserting this filter in more than one list
101 /// Type for filter-mask checking
102 typedef unsigned int dfilter_mask_t;
105 void filter_init(DFilter *f, const DFilterMap *map, bool masked, DNotifier *source, DNotifier *target);
107 /// Filter update function without masking capabilities.
108 void filter_update(DFilter *f, dtag_t tag, dval_t val);
110 /// Filter update function with masking capabilities.
111 void filter_mask_update(DFilter *f, dtag_t tag, dval_t val);
114 void notifier_init(DNotifier *n);
118 * Macro to notify the target object.
120 INLINE void dnotify(DNotifier *target, dtag_t tag, dval_t val)
123 target->update(target, tag, val);
127 * Macro to notify all the targets of \a target object.
129 INLINE void dnotify_targets(DNotifier *target, dtag_t tag, dval_t val)
132 if (!LIST_EMPTY(&target->targets))
133 FOREACH_NODE(f, &target->targets)
134 f->update(f, tag, val);
139 * Macro that connect \a src notifier to \a tgt using \a map and passing \a opt for filtering option.
140 * It declares a static filter to achieve connection and messages translation.
141 * \note Due its static filter declaration, DCONNECT MUST NOT be used inside loops or in functions called multiple times.
142 * Failing to do so will lead to unpredictable connections between notifiers.
144 #define DCONNECT(src, tgt, map, opt) \
146 static DFilter _filter_; /* Declare a filter */ \
147 filter_init(&(_filter_), map, opt, src, tgt); /* Init it. */ \
151 #endif /* DT_DNOTIFIER_H */