]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/add.c
740b2969558c98e6ab48e4815077c7d348eb28a3
[openldap] / servers / slapd / back-perl / add.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_add(
28         Operation       *op,
29         SlapReply       *rs )
30 {
31         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
32         int len;
33         int count;
34
35         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
36         ldap_pvt_thread_mutex_lock( &entry2str_mutex );
37
38         {
39                 dSP; ENTER; SAVETMPS;
40
41                 PUSHMARK(sp);
42                 XPUSHs( perl_back->pb_obj_ref );
43                 XPUSHs(sv_2mortal(newSVpv( entry2str( op->ora_e, &len ), 0 )));
44
45                 PUTBACK;
46
47 #ifdef PERL_IS_5_6
48                 count = call_method("add", G_SCALAR);
49 #else
50                 count = perl_call_method("add", G_SCALAR);
51 #endif
52
53                 SPAGAIN;
54
55                 if (count != 1) {
56                         croak("Big trouble in back_add\n");
57                 }
58                                                          
59                 rs->sr_err = POPi;
60
61                 PUTBACK; FREETMPS; LEAVE;
62         }
63
64         ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
65         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
66
67         send_ldap_result( op, rs );
68
69         Debug( LDAP_DEBUG_ANY, "Perl ADD\n", 0, 0, 0 );
70         return( 0 );
71 }