]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/delete.c
8ce9efdb1660d51696be0b1dd2b7c5fc2e993dbc
[openldap] / servers / slapd / back-perl / delete.c
1 /* $OpenLDAP$ */
2 /*
3  *       Copyright 1999, John C. Quillan, All rights reserved.
4  *       Portions Copyright 2002, myinternet pty ltd. 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 /* #include <ac/types.h>
16 #include <ac/socket.h>
17 */
18
19 #include <EXTERN.h>
20 #include <perl.h>
21
22 #include "slap.h"
23 #include "perl_back.h"
24
25 int
26 perl_back_delete(
27         Backend *be,
28         Connection      *conn,
29         Operation       *op,
30         struct berval   *dn,
31         struct berval   *ndn
32 )
33 {
34         int len;
35         int count;
36         int return_code;
37
38         PerlBackend *perl_back = (PerlBackend *) be->be_private;
39
40         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
41
42         {
43                 dSP; ENTER; SAVETMPS;
44
45                 PUSHMARK(sp);
46                 XPUSHs( perl_back->pb_obj_ref );
47                 XPUSHs(sv_2mortal(newSVpv( dn->bv_val , 0 )));
48
49                 PUTBACK;
50
51 #ifdef PERL_IS_5_6
52                 count = call_method("delete", G_SCALAR);
53 #else
54                 count = perl_call_method("delete", G_SCALAR);
55 #endif
56
57                 SPAGAIN;
58
59                 if (count != 1) {
60                         croak("Big trouble in perl-back_delete\n");
61                 }
62                                                          
63                 return_code = POPi;
64
65                 PUTBACK; FREETMPS; LEAVE;
66         }
67
68         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
69
70         send_ldap_result( conn, op, return_code,
71                         NULL, NULL, NULL, NULL );
72
73         Debug( LDAP_DEBUG_ANY, "Perl DELETE\n", 0, 0, 0 );
74         return( 0 );
75 }