X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-perl%2Finit.c;h=fe79d9a08c9521ee4464d80345b110124f2ae751;hb=b3c8a976ec84572bef54624de74ba6677c053e53;hp=634d4932f87f6672060e250b694bbf16458415bc;hpb=3c598e89fb34a892d369a138daa8c3314294493c;p=openldap diff --git a/servers/slapd/back-perl/init.c b/servers/slapd/back-perl/init.c index 634d4932f8..fe79d9a08c 100644 --- a/servers/slapd/back-perl/init.c +++ b/servers/slapd/back-perl/init.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1999-2004 The OpenLDAP Foundation. + * Copyright 1999-2005 The OpenLDAP Foundation. * Portions Copyright 1999 John C. Quillan. * Portions Copyright 2002 myinternet Limited. * All rights reserved. @@ -15,45 +15,14 @@ * . */ -#include -#include -#undef _ /* #defined by both Perl and ac/localize.h */ - -#ifdef HAVE_WIN32_ASPERL -#include "asperl_undefs.h" -#endif - -#include "portable.h" - -#include - -#include "slap.h" - #include "perl_back.h" - static void perl_back_xs_init LDAP_P((PERL_BACK_XS_INIT_PARAMS)); EXT void boot_DynaLoader LDAP_P((PERL_BACK_BOOT_DYNALOADER_PARAMS)); PerlInterpreter *PERL_INTERPRETER = NULL; ldap_pvt_thread_mutex_t perl_interpreter_mutex; -#ifdef SLAPD_PERL_DYNAMIC - -int init_module(int argc, char *argv[]) -{ - BackendInfo bi; - - memset( &bi, '\0', sizeof(bi) ); - bi.bi_type = "perl"; - bi.bi_init = perl_back_initialize; - - backend_add(&bi); - return 0; -} - -#endif /* SLAPD_PERL_DYNAMIC */ - /********************************************************** * @@ -66,25 +35,10 @@ perl_back_initialize( BackendInfo *bi ) { - char *embedding[] = { "", "-e", "0" }; - - Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 ); - - if( PERL_INTERPRETER != NULL ) { - Debug( LDAP_DEBUG_ANY, "perl backend open: already opened\n", - 0, 0, 0 ); - return 1; - } - - PERL_INTERPRETER = perl_alloc(); - perl_construct(PERL_INTERPRETER); - perl_parse(PERL_INTERPRETER, perl_back_xs_init, 3, embedding, (char **)NULL); - perl_run(PERL_INTERPRETER); - bi->bi_open = perl_back_open; bi->bi_config = 0; bi->bi_close = perl_back_close; - bi->bi_destroy = perl_back_destroy; + bi->bi_destroy = 0; bi->bi_db_init = perl_back_db_init; bi->bi_db_config = perl_back_db_config; @@ -117,7 +71,22 @@ perl_back_open( BackendInfo *bi ) { + char *embedding[] = { "", "-e", "0" }; + + Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 ); + + if( PERL_INTERPRETER != NULL ) { + Debug( LDAP_DEBUG_ANY, "perl backend open: already opened\n", + 0, 0, 0 ); + return 1; + } + ldap_pvt_thread_mutex_init( &perl_interpreter_mutex ); + + PERL_INTERPRETER = perl_alloc(); + perl_construct(PERL_INTERPRETER); + perl_parse(PERL_INTERPRETER, perl_back_xs_init, 3, embedding, (char **)NULL); + perl_run(PERL_INTERPRETER); return 0; } @@ -186,3 +155,12 @@ perl_back_xs_init(PERL_BACK_XS_INIT_PARAMS) dXSUB_SYS; newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); } + +#if SLAPD_PERL == SLAPD_MOD_DYNAMIC + +/* conditionally define the init_module() function */ +SLAP_BACKEND_INIT_MODULE( perl ) + +#endif /* SLAPD_PERL == SLAPD_MOD_DYNAMIC */ + +