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