123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /*
- (c) Copyright 2001-2009 The world wide DirectFB Open Source Community (directfb.org)
- (c) Copyright 2000-2004 Convergence (integrated media) GmbH
- All rights reserved.
- Written by Denis Oliver Kropp <dok@directfb.org>,
- Andreas Hundt <andi@fischlustig.de>,
- Sven Neumann <neo@directfb.org>,
- Ville Syrjälä <syrjala@sci.fi> and
- Claudio Ciccani <klan@users.sf.net>.
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
- This library 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 this library; if not, write to the
- Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
- */
- #ifndef __FUSION__REACTOR_H__
- #define __FUSION__REACTOR_H__
- #include <direct/list.h>
- #include <fusion/types.h>
- #include <fusion/call.h>
- #include <fusion/lock.h>
- typedef enum {
- RS_OK,
- RS_REMOVE,
- RS_DROP
- } ReactionResult;
- typedef ReactionResult (*ReactionFunc)( const void *msg_data,
- void *ctx );
- typedef struct {
- DirectLink link;
- ReactionFunc func;
- void *ctx;
- void *node_link;
- } Reaction;
- typedef struct {
- DirectLink link;
- int index;
- void *ctx;
- bool attached;
- } GlobalReaction;
- /*
- * Create a new reactor configured for the specified message data size.
- */
- FusionReactor *fusion_reactor_new ( int msg_size,
- const char *name,
- const FusionWorld *world );
- /*
- * Destroy the reactor.
- */
- DirectResult fusion_reactor_destroy ( FusionReactor *reactor );
- /*
- * Free the reactor.
- */
- DirectResult fusion_reactor_free ( FusionReactor *reactor );
- /*
- * Makes the reactor use the specified lock for managing global reactions.
- *
- * After creating the reactor a global default lock is set which is created
- * by Fusion once during initialization.
- *
- * To avoid dead locks caused by alternating lock orders of the global reaction
- * lock and another lock, the default lock is replaced by the other lock.
- */
- DirectResult fusion_reactor_set_lock ( FusionReactor *reactor,
- FusionSkirmish *skirmish );
- DirectResult fusion_reactor_set_lock_only( FusionReactor *reactor,
- FusionSkirmish *lock );
- /*
- * Attach a local reaction to the reactor (channel 0).
- */
- DirectResult fusion_reactor_attach ( FusionReactor *reactor,
- ReactionFunc func,
- void *ctx,
- Reaction *reaction );
- /*
- * Attach a local reaction to a specific reactor channel (0-1023).
- */
- DirectResult fusion_reactor_attach_channel( FusionReactor *reactor,
- int channel,
- ReactionFunc func,
- void *ctx,
- Reaction *reaction );
- /*
- * Detach an attached local reaction from the reactor.
- */
- DirectResult fusion_reactor_detach ( FusionReactor *reactor,
- Reaction *reaction );
- /*
- * Attach a global reaction to the reactor.
- *
- * It's always called directly, no matter which Fusionee calls fusion_reactor_dispatch().
- * Any data referenced by the reaction function has to be in shared memory, unless it uses a
- * mechanism to lookup a local counter part or representative, based on shared information.
- *
- * A global reaction is not defined directly as a function pointer, because that's always a
- * local address. Instead, it's specified by an index into a built in function table that
- * must be passed to fusion_reactor_dispatch() each time it is called.
- */
- DirectResult fusion_reactor_attach_global( FusionReactor *reactor,
- int index,
- void *ctx,
- GlobalReaction *reaction );
- /*
- * Detach an attached global reaction from the reactor.
- */
- DirectResult fusion_reactor_detach_global( FusionReactor *reactor,
- GlobalReaction *reaction );
- /*
- * Dispatch a message to any attached reaction (channel 0).
- *
- * Setting 'self' to false excludes the caller's local reactions.
- */
- DirectResult fusion_reactor_dispatch ( FusionReactor *reactor,
- const void *msg_data,
- bool self,
- const ReactionFunc *globals );
- /*
- * Dispatch a message to any attached reaction with a given size. Instead of
- * using the size defined by the reactor, the caller can specify the size of
- * the data.
- *
- * Setting 'self' to false excludes the caller's local reactions.
- */
- DirectResult fusion_reactor_sized_dispatch( FusionReactor *reactor,
- const void *msg_data,
- int msg_size,
- bool self,
- const ReactionFunc *globals );
- /*
- * Dispatch a message via a specific channel (0-1023).
- *
- * Setting 'self' to false excludes the caller's local reactions.
- */
- DirectResult fusion_reactor_dispatch_channel( FusionReactor *reactor,
- int channel,
- const void *msg_data,
- int msg_size,
- bool self,
- const ReactionFunc *globals );
- /*
- * Have the call executed when a dispatched message has been processed by all recipients.
- */
- DirectResult fusion_reactor_set_dispatch_callback( FusionReactor *reactor,
- FusionCall *call,
- void *call_ptr );
- /*
- * Change the name of the reactor (debug).
- */
- DirectResult fusion_reactor_set_name ( FusionReactor *reactor,
- const char *name );
- /*
- * Specify whether local message handlers (reactions) should be called directly.
- */
- DirectResult fusion_reactor_direct ( FusionReactor *reactor,
- bool direct );
- typedef enum {
- FUSION_REACTOR_PERMIT_NONE = 0x00000000,
- FUSION_REACTOR_PERMIT_ATTACH_DETACH = 0x00000001,
- FUSION_REACTOR_PERMIT_DISPATCH = 0x00000002,
- FUSION_REACTOR_PERMIT_ALL = 0x00000003,
- } FusionReactorPermissions;
- /*
- * Give permissions to another fusionee to use the reactor.
- */
- DirectResult fusion_reactor_add_permissions( FusionReactor *reactor,
- FusionID fusion_id,
- FusionReactorPermissions permissions );
- #endif
|