]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-perl/init.c
Remove lint
[openldap] / servers / slapd / back-perl / init.c
index 43d6ea4c5be809978ff45f0fa967e73a7b063762..8cac0819e08f3e167b67b65dea1cbab8bd4e04b7 100644 (file)
@@ -1,5 +1,7 @@
+/* $OpenLDAP$ */
 /*
  *      Copyright 1999, John C. Quillan, All rights reserved.
+ *      Portions Copyright 2002, myinternet Limited. All rights reserved.
  *
  *      Redistribution and use in source and binary forms are permitted only
  *      as authorized by the OpenLDAP Public License.  A copy of this
  /* init.c - initialize shell backend */
        
 #include <stdio.h>
-/* #include <ac/types.h>
-       #include <ac/socket.h>
-*/
-
 
+#include "slap.h"
+#ifdef HAVE_WIN32_ASPERL
+#include "asperl_undefs.h"
+#endif
 
 #include <EXTERN.h>
 #include <perl.h>
 
-#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;
+PerlInterpreter *PERL_INTERPRETER = NULL;
 ldap_pvt_thread_mutex_t        perl_interpreter_mutex;
 
 #ifdef SLAPD_PERL_DYNAMIC
-#include <gmodule.h>
 
-G_MODULE_EXPORT void init_module(int argc, char *argv[]) {
-   BackendInfo bi;
+int back_perl_LTX_init_module(int argc, char *argv[])
+{
+       BackendInfo bi;
 
-   bi.bi_type = "perl";
-   bi.bi_init = perl_back_initialize;
+       memset( &bi, '\0', sizeof(bi) );
+       bi.bi_type = "perl";
+       bi.bi_init = perl_back_initialize;
 
-   backend_add(&bi);
+       backend_add(&bi);
+       return 0;
 }
 
 #endif /* SLAPD_PERL_DYNAMIC */
@@ -58,16 +63,16 @@ perl_back_initialize(
 
        Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 );
 
-       if( perl_interpreter != NULL ) {
+       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, NULL, 3, embedding, (char **)NULL);
-       perl_run(perl_interpreter);
+       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;
@@ -76,12 +81,12 @@ perl_back_initialize(
 
        bi->bi_db_init = perl_back_db_init;
        bi->bi_db_config = perl_back_db_config;
-       bi->bi_db_open = 0;
+       bi->bi_db_open = perl_back_db_open;
        bi->bi_db_close = 0;
        bi->bi_db_destroy = perl_back_db_destroy;
 
        bi->bi_op_bind = perl_back_bind;
-       bi->bi_op_unbind = perl_back_unbind;
+       bi->bi_op_unbind = 0;
        bi->bi_op_search = perl_back_search;
        bi->bi_op_compare = perl_back_compare;
        bi->bi_op_modify = perl_back_modify;
@@ -90,9 +95,11 @@ perl_back_initialize(
        bi->bi_op_delete = perl_back_delete;
        bi->bi_op_abandon = 0;
 
-#ifdef SLAPD_ACLGROUPS
+       bi->bi_extended = 0;
+
        bi->bi_acl_group = 0;
-#endif
+       bi->bi_acl_attribute = 0;
+       bi->bi_chk_referrals = 0;
 
        bi->bi_connection_init = 0;
        bi->bi_connection_destroy = 0;
@@ -111,14 +118,66 @@ perl_back_open(
 
 int
 perl_back_db_init(
-       Backend *be
+       BackendDB       *be
 )
 {
        be->be_private = (PerlBackend *) ch_malloc( sizeof(PerlBackend) );
-       memset( be->be_private, 0, sizeof(PerlBackend));
+       memset( be->be_private, '\0', sizeof(PerlBackend));
+
+       ((PerlBackend *)be->be_private)->pb_filter_search_results = 0;
 
        Debug( LDAP_DEBUG_TRACE, "perl backend db init\n", 0, 0, 0 );
 
        return 0;
 }
 
+int
+perl_back_db_open(
+       BackendDB       *be
+)
+{
+       int count;
+       int return_code;
+
+       PerlBackend *perl_back = (PerlBackend *) be->be_private;
+
+       ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
+
+       {
+               dSP; ENTER; SAVETMPS;
+
+               PUSHMARK(sp);
+               XPUSHs( perl_back->pb_obj_ref );
+
+               PUTBACK;
+
+#ifdef PERL_IS_5_6
+               count = call_method("init", G_SCALAR);
+#else
+               count = perl_call_method("init", G_SCALAR);
+#endif
+
+               SPAGAIN;
+
+               if (count != 1) {
+                       croak("Big trouble in perl_back_db_open\n");
+               }
+
+               return_code = POPi;
+
+               PUTBACK; FREETMPS; LEAVE;
+       }
+
+       ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
+
+       return return_code;
+}
+
+
+static void
+perl_back_xs_init()
+{
+       char *file = __FILE__;
+       dXSUB_SYS;
+       newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
+}