Home | History | Annotate | Line # | Download | only in back-perl
delete.c revision 1.1
      1 /* $OpenLDAP: pkg/ldap/servers/slapd/back-perl/delete.c,v 1.20.2.3 2008/02/11 23:26:47 kurt Exp $ */
      2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
      3  *
      4  * Copyright 1999-2008 The OpenLDAP Foundation.
      5  * Portions Copyright 1999 John C. Quillan.
      6  * Portions Copyright 2002 myinternet Limited.
      7  * All rights reserved.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted only as authorized by the OpenLDAP
     11  * Public License.
     12  *
     13  * A copy of this license is available in file LICENSE in the
     14  * top-level directory of the distribution or, alternatively, at
     15  * <http://www.OpenLDAP.org/license.html>.
     16  */
     17 
     18 #include "perl_back.h"
     19 
     20 int
     21 perl_back_delete(
     22 	Operation	*op,
     23 	SlapReply	*rs )
     24 {
     25 	PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
     26 	int count;
     27 
     28 #if defined(HAVE_WIN32_ASPERL) || defined(USE_ITHREADS)
     29 	PERL_SET_CONTEXT( PERL_INTERPRETER );
     30 #endif
     31 	ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
     32 
     33 	{
     34 		dSP; ENTER; SAVETMPS;
     35 
     36 		PUSHMARK(sp);
     37 		XPUSHs( perl_back->pb_obj_ref );
     38 		XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0 )));
     39 
     40 		PUTBACK;
     41 
     42 #ifdef PERL_IS_5_6
     43 		count = call_method("delete", G_SCALAR);
     44 #else
     45 		count = perl_call_method("delete", G_SCALAR);
     46 #endif
     47 
     48 		SPAGAIN;
     49 
     50 		if (count != 1) {
     51 			croak("Big trouble in perl-back_delete\n");
     52 		}
     53 
     54 		rs->sr_err = POPi;
     55 
     56 		PUTBACK; FREETMPS; LEAVE;
     57 	}
     58 
     59 	ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
     60 
     61 	send_ldap_result( op, rs );
     62 
     63 	Debug( LDAP_DEBUG_ANY, "Perl DELETE\n", 0, 0, 0 );
     64 	return( 0 );
     65 }
     66