123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*
- (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__FUSION_INTERNAL_H__
- #define __FUSION__FUSION_INTERNAL_H__
- #include <sys/types.h>
- #include <sys/param.h>
- #include <stdarg.h>
- #include <string.h>
- #include <direct/list.h>
- #include <fusion/build.h>
- #include <fusion/fusion.h>
- #include <fusion/lock.h>
- #include <fusion/ref.h>
- #include <fusion/shm/shm_internal.h>
- #if FUSION_BUILD_MULTI
- # if FUSION_BUILD_KERNEL
- # include <sys/ioctl.h>
- # include <linux/fusion.h>
- # else
- # include <fusion/protocol.h>
- # endif
- #endif
- #define FUSION_MAX_WORLDS 8
- /***************************************
- * Fusion internal type declarations *
- ***************************************/
- struct __Fusion_FusionWorldShared {
- int magic;
-
- int refs; /* Increased by the master on fork(). */
- int world_index;
- int world_abi;
- struct timeval start_time;
- DirectLink *arenas;
- FusionSkirmish arenas_lock;
- FusionSkirmish reactor_globals;
- FusionSHMShared shm;
- FusionSHMPoolShared *main_pool;
-
- DirectLink *fusionees; /* Connected fusionees. */
- FusionSkirmish fusionees_lock;
-
- unsigned int call_ids; /* Generates call ids. */
- unsigned int lock_ids; /* Generates locks ids. */
- unsigned int ref_ids; /* Generates refs ids. */
- unsigned int reactor_ids; /* Generates reactors ids. */
- unsigned int pool_ids; /* Generates pools ids. */
- void *pool_base; /* SHM pool allocation base. */
- void *pool_max; /* SHM pool max address. */
- };
- struct __Fusion_FusionWorld {
- int magic;
- int refs;
- FusionWorldShared *shared;
- int fusion_fd;
- FusionID fusion_id;
- DirectThread *dispatch_loop;
- bool dispatch_stop;
- /*
- * List of reactors with at least one local reaction attached.
- */
- DirectLink *reactor_nodes;
- pthread_mutex_t reactor_nodes_lock;
- FusionSHM shm;
- FusionForkAction fork_action;
- FusionForkCallback fork_callback;
-
- void *fusionee;
- FusionLeaveCallback leave_callback;
- void *leave_ctx;
- };
- /*******************************************
- * Fusion internal function declarations *
- *******************************************/
- int _fusion_fd( const FusionWorldShared *shared );
- FusionID _fusion_id( const FusionWorldShared *shared );
- FusionWorld *_fusion_world( const FusionWorldShared *shared );
- /*
- * from reactor.c
- */
- void _fusion_reactor_free_all ( FusionWorld *world );
- void _fusion_reactor_process_message( FusionWorld *world,
- int reactor_id,
- int channel,
- const void *msg_data );
- #if FUSION_BUILD_MULTI
- # if FUSION_BUILD_KERNEL
- static __inline__ void
- fusion_entry_add_permissions( const FusionWorld *world,
- FusionType type,
- int entry_id,
- FusionID fusion_id,
- ... )
- {
- FusionEntryPermissions permissions;
- va_list args;
- int arg;
- permissions.type = type;
- permissions.id = entry_id;
- permissions.fusion_id = fusion_id;
- permissions.permissions = 0;
- va_start( args, fusion_id );
- while ((arg = va_arg( args, int )) != 0)
- FUSION_ENTRY_PERMISSIONS_ADD( permissions.permissions, arg );
- va_end( args );
- while (ioctl( world->fusion_fd, FUSION_ENTRY_ADD_PERMISSIONS, &permissions ) < 0) {
- if (errno != EINTR) {
- D_PERROR( "Fusion: FUSION_ENTRY_ADD_PERMISSIONS( type %d, id %d ) failed!\n", type, entry_id );
- break;
- }
- }
- }
- # endif
- #endif
- #if FUSION_BUILD_MULTI
- /*
- * from call.c
- */
- void _fusion_call_process( FusionWorld *world,
- int call_id,
- FusionCallMessage *call );
- void _fusion_call_process3( FusionWorld *world,
- int call_id,
- FusionCallMessage3 *msg,
- void *ptr );
- #if FUSION_BUILD_KERNEL
- /*
- * from shm.c
- */
- void _fusion_shmpool_process( FusionWorld *world,
- int pool_id,
- FusionSHMPoolMessage *msg );
- #else
- /*
- * form fusion.c
- */
- void _fusion_add_local( FusionWorld *world,
- FusionRef *ref,
- int add );
- void _fusion_check_locals( FusionWorld *world,
- FusionRef *ref );
- void _fusion_remove_all_locals( FusionWorld *world,
- const FusionRef *ref );
-
- DirectResult _fusion_send_message( int fd,
- const void *msg,
- size_t msg_size,
- struct sockaddr_un *addr );
- DirectResult _fusion_recv_message( int fd,
- void *msg,
- size_t msg_size,
- struct sockaddr_un *addr );
- /*
- * from ref.c
- */
- DirectResult _fusion_ref_change( FusionRef *ref, int add, bool global );
-
- #endif /* FUSION_BUILD_KERNEL */
- #endif /* FUSION_BUILD_MULTI */
- #endif
|