| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- /* ABAPI Broker */
- /* Pete Rowley */
- #include "stdio.h"
- #include "slap.h"
- #include "prlock.h"
- #include "prerror.h"
- #include "prcvar.h"
- #include "prio.h"
- static Slapi_Mutex *buffer_lock = 0;
- /* circular api buffer */
- typedef struct _THEABAPI
- {
- char *guid;
- void **api;
- struct _THEABAPI *next;
- struct _THEABAPI *prev;
- } ABAPI;
- typedef struct _API_FEATURES
- {
- int refcount;
- slapi_apib_callback_on_zero callback_on_zero;
- Slapi_Mutex *lock;
- } APIB_FEATURES;
- static ABAPI *head = NULL;
- static ABAPI **ABAPIBroker_FindInterface(char *guid);
- int slapi_apib_register(char *guid, void **api )
- {
- int ret = -1;
- ABAPI *item;
- if(buffer_lock == 0)
- {
- if(0 == (buffer_lock = slapi_new_mutex())) /* we never free this mutex */
- /* badness */
- return -1;
- }
- /* simple - we don't check for duplicates */
-
- item = (ABAPI*)slapi_ch_malloc(sizeof(ABAPI));
- if(item)
- {
- item->guid = guid;
- item->api = api;
- slapi_lock_mutex(buffer_lock);
- if(head == NULL)
- {
- head = item;
- head->next = head;
- head->prev = head;
- }
- else
- {
- item->next = head;
- item->prev = head->prev;
- head->prev = item;
- item->prev->next = item;
- }
- slapi_unlock_mutex(buffer_lock);
- ret = 0;
- }
- return ret;
- }
- int slapi_apib_unregister(char *guid)
- {
- int ret = -1;
- ABAPI **api;
- if(buffer_lock == 0)
- return ret;
- if(buffer_lock == 0)
- {
- if(0 == (buffer_lock = slapi_new_mutex())) /* we never free this mutex */
- /* badness */
- return -1;
- }
- slapi_lock_mutex(buffer_lock);
- if((api = ABAPIBroker_FindInterface(guid)) != NULL)
- {
- (*api)->prev->next = (*api)->next;
- (*api)->next->prev = (*api)->prev;
- if(*api == head)
- {
- head = (*api)->next;
- }
- if(*api == head) /* must be the last item, turn off the lights */
- head = 0;
- slapi_ch_free((void**)api);
- *api = 0;
- ret = 0;
- }
- slapi_unlock_mutex(buffer_lock);
- return ret;
- }
- int slapi_apib_get_interface(char *guid, void ***api)
- {
- int ret = -1;
- ABAPI **theapi;
- if(buffer_lock == 0)
- return ret;
- if(buffer_lock == 0)
- {
- if(0 == (buffer_lock = slapi_new_mutex())) /* we never free this mutex */
- /* badness */
- return -1;
- }
- slapi_lock_mutex(buffer_lock);
- if((theapi = ABAPIBroker_FindInterface(guid)) != NULL)
- {
- *api = (*theapi)->api;
- if((*api)[0])
- {
- slapi_apib_addref(*api);
- }
- ret = 0;
- }
- slapi_unlock_mutex(buffer_lock);
- return ret;
- }
- int slapi_apib_make_reference_counted(void **api, slapi_apib_callback_on_zero callback_on_zero)
- {
- int ret = -1;
- if(api[0] == 0)
- {
- api[0] = slapi_ch_malloc(sizeof(APIB_FEATURES));
- if(api[0])
- {
- ((APIB_FEATURES*)(api[0]))->lock = slapi_new_mutex();
- if(((APIB_FEATURES*)(api[0]))->lock)
- {
- ((APIB_FEATURES*)(api[0]))->refcount = 0; /* the ref count */
- ((APIB_FEATURES*)(api[0]))->callback_on_zero = callback_on_zero;
- ret = 0;
- }
- else
- slapi_ch_free(&(api[0]));
- }
- }
- return ret;
- }
- int slapi_apib_addref(void **api)
- {
- int ret;
- slapi_lock_mutex(((APIB_FEATURES*)(api[0]))->lock);
-
- ret = ++(((APIB_FEATURES*)(api[0]))->refcount);
-
- slapi_unlock_mutex(((APIB_FEATURES*)(api[0]))->lock);
- return ret;
- }
- int slapi_apib_release(void **api)
- {
- APIB_FEATURES *features;
- int ret;
- slapi_lock_mutex(((APIB_FEATURES*)(api[0]))->lock);
-
- ret = --(((APIB_FEATURES*)(api[0]))->refcount);
-
- if(((APIB_FEATURES*)(api[0]))->refcount == 0 && ((APIB_FEATURES*)(api[0]))->callback_on_zero)
- {
- /* save our stuff for when it gets zapped */
- features = (APIB_FEATURES*)api[0];
- if(0==((APIB_FEATURES*)(api[0]))->callback_on_zero(api)) /* this should deregister the interface */
- {
- slapi_unlock_mutex(features->lock);
- slapi_destroy_mutex(features->lock);
- slapi_ch_free((void **)&features);
- }
- else
- slapi_unlock_mutex(features->lock);
- }
- else
- slapi_unlock_mutex(((APIB_FEATURES*)(api[0]))->lock);
- return ret;
- }
- static ABAPI **ABAPIBroker_FindInterface(char *guid)
- {
- static ABAPI *api = 0; /* simple gut feeling optimization for constant calls on same api */
- ABAPI *start_api = api;
- if(!api) {
- start_api = api = head;
- }
- if(api)
- {
- do
- {
- if(0 == strcmp(guid, api->guid))
- {
- return &api;
- }
- api = api->next;
- }
- while(api != start_api);
- }
- return 0;
- }
|