]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/delete.c
e07d3abf18368a932dec48537ef713f49a341f52
[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         Backend *be,
29         Connection      *conn,
30         Operation       *op,
31         struct berval   *dn,
32         struct berval   *ndn
33 )
34 {
35         int len;
36         int count;
37         int return_code;
38
39         PerlBackend *perl_back = (PerlBackend *) be->be_private;
40
41         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
42
43         {
44                 dSP; ENTER; SAVETMPS;
45
46                 PUSHMARK(sp);
47                 XPUSHs( perl_back->pb_obj_ref );
48                 XPUSHs(sv_2mortal(newSVpv( dn->bv_val , 0 )));
49
50                 PUTBACK;
51
52 #ifdef PERL_IS_5_6
53                 count = call_method("delete", G_SCALAR);
54 #else
55                 count = perl_call_method("delete", G_SCALAR);
56 #endif
57
58                 SPAGAIN;
59
60                 if (count != 1) {
61                         croak("Big trouble in perl-back_delete\n");
62                 }
63                                                          
64                 return_code = POPi;
65
66                 PUTBACK; FREETMPS; LEAVE;
67         }
68
69         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
70
71         send_ldap_result( conn, op, return_code,
72                         NULL, NULL, NULL, NULL );
73
74         Debug( LDAP_DEBUG_ANY, "Perl DELETE\n", 0, 0, 0 );
75         return( 0 );
76 }